diff --git a/.github/workflows/script_module_list.yml b/.github/workflows/script_module_list.yml index c9f04fe54e..23f9734e7d 100644 --- a/.github/workflows/script_module_list.yml +++ b/.github/workflows/script_module_list.yml @@ -34,12 +34,6 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 - - name: Make EESSI available - uses: eessi/github-action-eessi@v3 - - name: Set up Python - uses: eessi/github-action-eessi@v3 - with: - python-version: '3.7' - name: Install dependencies run: | python -m venv venv diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 78217a9abc..5ee728b00e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: check_filenames: true # MarkDown files in docs/available_software/detail are skipped because they are auto-generated skip: '*.pdf,.git,*.json,./docs/available_software/detail/*.md' - ignore_words_list: Fram,fram,ND,nd + ignore_words_list: Fram,fram,ND,nd,Linz # - name: Markdown Linting Action # uses: avto-dev/markdown-lint@v1.2.0 diff --git a/.github/workflows/test_overview_available_software.yml b/.github/workflows/test_overview_available_software.yml index 19fec5b079..8b9372a10b 100644 --- a/.github/workflows/test_overview_available_software.yml +++ b/.github/workflows/test_overview_available_software.yml @@ -23,6 +23,24 @@ jobs: # install required Python packages in virtual environment python -m venv venv . venv/bin/activate - pip install -r mkdocs-ldjson-plugin/requirements.txt + pip install -r scripts/available_software/requirements.txt - python .github/workflows/scripts/test_overview_available_software.py + # download https://eessi.io/api_data/data/eessi_api_metadata_software.json + # to where it's expected by docs/available_software/macros.py and scripts/available_software/available_software.py + data_dir="docs/available_software/data" + mkdir -p ${data_dir} + cd ${data_dir} + curl -OL https://eessi.io/api_data/data/eessi_api_metadata_software.json + cd - + + python scripts/available_software/available_software.py + ./scripts/update_generated_time.sh mkdocs.yml + + # determine whether pull request would need to be opened: + # if detailed software pages in docs/available_software/detail have been updated, then a PR should be opened + if [[ $(git status --porcelain ./docs/available_software/detail) ]]; then + echo "Software pages have been changed, PR should be opened" + git diff ./docs/available_software/detail + else + echo "Software pages have not been changed, no need to open PR" + fi diff --git a/.github/workflows/update_available_software.yml b/.github/workflows/update_available_software.yml index 3560ccdc1f..e4f97008c5 100644 --- a/.github/workflows/update_available_software.yml +++ b/.github/workflows/update_available_software.yml @@ -17,11 +17,6 @@ jobs: python-version: '3.10' architecture: x64 - - name: Mount EESSI - uses: eessi/github-action-eessi@e1f8f20638ea417a18d23ab29443ee34794ff900 # v3.1.0 - with: - eessi_stack_version: '2023.06' - - name: update overview of available software id: update_available_software run: | @@ -30,30 +25,31 @@ jobs: . venv/bin/activate pip install -r scripts/available_software/requirements.txt - # copy current JSON data, so we can compare after updating it - cp docs/available_software/data/json_data.json docs/available_software/data/json_data.json.orig - cp docs/available_software/data/json_data_detail.json docs/available_software/data/json_data_detail.json.orig + # download https://eessi.io/api_data/data/eessi_api_metadata_software.json + # to where it's expected by docs/available_software/macros.py and scripts/available_software/available_software.py + data_dir="docs/available_software/data" + mkdir -p ${data_dir} + cd ${data_dir} + curl -OL https://eessi.io/api_data/data/eessi_api_metadata_software.json + cd - - export TIME_GENERATED_TEMPLATE="{{ generated_time }}" python scripts/available_software/available_software.py ./scripts/update_generated_time.sh mkdocs.yml - + git status # determine whether pull request should be opened: - # if JSON files in docs/available_software/data have been updated, then a PR should be opened - json_data_changed=$(python scripts/available_software/check_json_updates.py docs/available_software/data/json_data.json.orig docs/available_software/data/json_data.json) - json_data_detail_changed=$(python scripts/available_software/check_json_updates.py docs/available_software/data/json_data_detail.json.orig docs/available_software/data/json_data_detail.json) - if [[ ${json_data_changed} == "no changes" ]] && [[ ${json_data_detail_changed} == "no changes" ]]; then - echo "JSON files in docs/available_software/data have not been changed, no need to open PR" - echo "json_data_changed=no" >> $GITHUB_OUTPUT - else - echo "JSON files in docs/available_software/data have been changed, PR should be opened" + # if detailed software pages in docs/available_software/detail have been updated, then a PR should be opened + if [[ $(git status --porcelain ./docs/available_software/detail) ]]; then + echo "Software pages have been changed, PR should be opened" echo "json_data_changed=yes" >> $GITHUB_OUTPUT + else + echo "Software pages have not been changed, no need to open PR" + echo "json_data_changed=no" >> $GITHUB_OUTPUT fi - # remove original JSON files, or they'll end up in the PR being opened - rm -f docs/available_software/data/json_data.json.orig docs/available_software/data/json_data_detail.json.orig + # remove the JSON file in the data directory, or it'll end up in the PR being opened + rm -r ${data_dir}/*.json - name: create pull request uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 diff --git a/docs/adding_software/opening_pr.md b/docs/adding_software/opening_pr.md index 5f3e86a895..db558a3692 100644 --- a/docs/adding_software/opening_pr.md +++ b/docs/adding_software/opening_pr.md @@ -18,7 +18,8 @@ To add software to EESSI, you should go through the semi-automatic software inst ### Preparation Before you can make a pull request to the [software-layer](https://github.com/EESSI/software-layer), -you should [fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) the repository in your GitHub account. +you should [fork](https://github.com/EESSI/software-layer/fork) the repository in your GitHub account. +Please see [here](https://docs.github.com/en/get-started/quickstart/fork-a-repo) for details. Once forked, you can proceed. For the remainder of these instructions, we assume that your GitHub account is `@koala` :koala:. diff --git a/docs/available_software/css/software.css b/docs/available_software/css/software.css new file mode 100644 index 0000000000..bdbca046e8 --- /dev/null +++ b/docs/available_software/css/software.css @@ -0,0 +1,133 @@ +/* + * CSS stylesheet for software overview, see docs/available_software/ + */ + +.software-name { + font-size: 0.9rem; + font-weight: 700; + color: var(--md-primary-fg-color); +} + +.software-versions { + font-size: 0.6rem; + font-style: italic; + margin-left: 0.2rem; +} + +.software-link a { + font-size: 0.6rem; + color: var(--md-typeset-a-color); +} + +.software-more-info a { + float: right; + font-size: 0.6rem; + font-style: italic; +} + +.software-description { + font-size: 0.7rem; +} + +.software-cpus { + font-size: 0.65rem; + font-style: italic; +} + +.software-gpus { + font-size: 0.65rem; + font-style: italic; +} + +.software-cpu-amd { + display: inline-block; + padding: 0.15em 0.5em; + border-radius: 0.8em; + font-size: 0.8em; + font-style: normal; + background-color: rgb(0,0,0); /* https://www.brandcolorcode.com/advanced-micro-devices-amd */ + color: var(--md-primary-bg-color); + margin-right: 0.3em; +} + +.software-cpu-arm { + display: inline-block; + padding: 0.15em 0.5em; + border-radius: 0.8em; + font-size: 0.8em; + font-style: normal; + background-color: rgb(0,145,189); /* https://www.brandcolorcode.com/arm-company */ + color: var(--md-primary-bg-color); + margin-right: 0.3em; +} + +.software-cpu-intel { + display: inline-block; + padding: 0.15em 0.5em; + border-radius: 0.8em; + font-size: 0.8em; + font-style: normal; + background-color: rgb(0,199,253); /* https://www.brandcolorcode.com/intel */ + color: rgb(0,0,0); + margin-right: 0.3em; +} + +.software-cpu-riscv { + display: inline-block; + padding: 0.15em 0.5em; + border-radius: 0.8em; + font-size: 0.8em; + font-style: normal; + background-color: rgb(253,181,21); /* https://riscv.org/about/brand-guidelines */ + color: rgb(0,50,98); + margin-right: 0.3em; +} + +.software-gpu-amd { + display: inline-block; + padding: 0.15em 0.5em; + border-radius: 0.8em; + font-size: 0.8em; + font-style: normal; + background-color: rgb(0,0,0); /* https://www.brandcolorcode.com/advanced-micro-devices-amd */ + color: var(--md-primary-bg-color); + margin-right: 0.3em; +} + +.software-gpu-nvidia { + display: inline-block; + padding: 0.15em 0.5em; + border-radius: 0.8em; + font-size: 0.8em; + font-style: normal; + background-color: rgb(118,185,0); /* https://www.brandcolorcode.com/nvidia */ + color: rgb(0,0,0); + margin-right: 0.3em; +} + +.software-eessi-versions { + font-size: 0.65rem; + font-style: italic; +} + +.software-eessi-version-202306 { + display: inline-block; + padding: 0.15em 0.5em; + border-radius: 0.8em; + font-size: 0.8em; + font-style: normal; + background-color: darkslateblue; /* https://www.w3schools.com/cssref/css_colors.php */ + color: var(--md-primary-bg-color); + margin-right: 0.3em; +} + +.software-eessi-version-202506 { + display: inline-block; + padding: 0.15em 0.5em; + border-radius: 0.8em; + font-size: 0.8em; + font-style: normal; + background-color: darkslategrey; /* https://www.w3schools.com/cssref/css_colors.php */ + color: var(--md-primary-bg-color); + margin-right: 0.3em; +} diff --git a/docs/available_software/css/style_table.css b/docs/available_software/css/style_table.css deleted file mode 100644 index 68443b2528..0000000000 --- a/docs/available_software/css/style_table.css +++ /dev/null @@ -1,29 +0,0 @@ -/* source https://cdnjs.cloudflare.com/ajax/libs/fomantic-ui/2.9.2/semantic.min.css */ - -/* - * # Fomantic UI - 2.9.2 - * https://github.com/fomantic/Fomantic-UI - * https://fomantic-ui.com/ - * - * Copyright 2023 Contributors - * Released under the MIT license - * https://opensource.org/licenses/MIT - * - */ -.ui.table{ - font-size: 1em; - width: 100%; - background: #fff; - margin: 1em 0; - border: 1px solid rgba(34, 36, 38, .15); - box-shadow: none; - border-radius: .28571429rem; - text-align: left; - vertical-align: middle; - color: rgba(0, 0, 0, .87); - border-collapse: separate; - border-spacing: 0; - } -.ui.celled.table>tbody>tr>td,.ui.celled.table>tbody>tr>th,.ui.celled.table>tfoot>tr>td,.ui.celled.table>tfoot>tr>th,.ui.celled.table>thead>tr>th,.ui.celled.table>tr>td,.ui.celled.table>tr>th{ - border-left:1px solid rgba(34,36,38,.1); - } \ No newline at end of file diff --git a/docs/available_software/data/.gitkeep b/docs/available_software/data/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/docs/available_software/data/json_data.json b/docs/available_software/data/json_data.json deleted file mode 100644 index 3c9a6d5f1a..0000000000 --- a/docs/available_software/data/json_data.json +++ /dev/null @@ -1 +0,0 @@ -{"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "modules": {"ALL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ANTLR": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "AOFlagger": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ASE": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ATK": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Abseil": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "AmberTools": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Archive-Zip": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Armadillo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Arrow": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ArviZ": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "BCFtools": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "BLAST+": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "BLIS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "BWA": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "BamTools": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Bazel": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "BeautifulSoup": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Bio-DB-HTS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Bio-SearchIO-hmmer": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "BioPerl": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Biopython": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Bison": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Blosc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Blosc2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Boost": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Boost.MPI": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Boost.Python": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Boost.Python-NumPy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Bowtie2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Brotli": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Brunsli": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CD-HIT": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CDO": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CFITSIO": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CGAL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CMake": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CP2K": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CUnit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CapnProto": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Cartopy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Cassiopeia": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Catch2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Cbc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Cereal": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Cgl": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Clp": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CoinUtils": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CoordgenLibs": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Critic2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CubeLib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "CubeWriter": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Cython": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "DB": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "DB_File": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "DIAMOND": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "DP3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "DendroPy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Deprecated": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Doxygen": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "EESSI-extend": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ELPA": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ESMF": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ESMPy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ESPResSo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ETE": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "EasyBuild": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Eigen": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "EveryBeam": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Extrae": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FALL3D": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FFTW": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FFTW.MPI": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FFmpeg": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FLAC": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FLTK": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FastME": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FastQC": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Fiona": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Flask": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FlexiBLAS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Flye": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FragGeneScan": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FreeImage": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FreeXL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "FriBidi": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GATK": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GCC": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GCCcore": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GDAL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GDB": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GDRCopy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GEOS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GL2PS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GLPK": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GLib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GMP": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GObject-Introspection": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GRASS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GROMACS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GSL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GST-plugins-bad": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GST-plugins-base": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GStreamer": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GTK3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GTK4": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GTS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Gblocks": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Gdk-Pixbuf": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GenomeTools": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Ghostscript": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Ginkgo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GitPython": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GnuTLS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Graphene": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "GraphicsMagick": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Graphviz": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Greenlet": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Guile": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "HDBSCAN": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "HDF": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "HDF5": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "HMMER": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "HPL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "HTSlib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "HarfBuzz": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "HeFFTe": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "HepMC3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Highway": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Hypre": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ICU": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "IDG": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "IPython": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "IQ-TREE": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ISA-L": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ISL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ITSTool": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ImageMagick": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Imath": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Jansson": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "JasPer": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Java": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "JsonCpp": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Judy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "JupyterLab": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "JupyterNotebook": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "KaHIP": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "KronaTools": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LAME": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LAMMPS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LERC": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LHAPDF": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LINC": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LLVM": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LMDB": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LPC3D": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LRBinner": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LSD2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LSMTool": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LZO": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LibSoup": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LibTIFF": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Libint": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LightGBM": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LittleCMS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LoSoTo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LofarStMan": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "LoopTools": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Lua": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MAFFT": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MAQAO": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MBX": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MCL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MDAnalysis": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MDI": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MEGAHIT": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "METIS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MLflow": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MMseqs2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MODFLOW": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MPC": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MPFR": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MUMPS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MUSCLE": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Mako": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MariaDB": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Markdown": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Mash": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Mesa": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Meson": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MetaEuk": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MetalWalls": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MrBayes": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "MultiQC": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Mustache": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "NASM": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "NCO": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "NEST": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "NLTK": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "NLopt": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "NSPR": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "NSS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Nextflow": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Ninja": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OPARI2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OSU-Micro-Benchmarks": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OTF2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Octave": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OpenBLAS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OpenBabel": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OpenCV": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OpenEXR": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OpenFOAM": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OpenJPEG": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OpenMPI": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OpenPGM": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OpenSSL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "OrthoFinder": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Osi": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PAPI": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PCRE": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PCRE2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PDAL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PDT": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PETSc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PGPLOT": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PLUMED": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PLY": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PMIx": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PROJ": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Pandoc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Pango": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ParMETIS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ParaView": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Paraver": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Perl": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Perl-bundle-CPAN": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Pillow": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Pillow-SIMD": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Pint": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PnetCDF": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PostgreSQL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PuLP": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyCairo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyEVTK": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyGObject": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyOpenGL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyQt-builder": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyQt5": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyTables": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyTorch": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyVO": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyYAML": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "PyZMQ": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Pygments": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Pysam": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Python": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Python-bundle-PyPI": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "QScintilla": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Qhull": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Qt5": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "QuantumESPRESSO": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "R": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "R-bundle-Bioconductor": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "R-bundle-CRAN": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "RAxML": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "RDFlib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "RDKit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "RE2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "RMextract": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ROOT": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "RStudio-Server": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "RapidJSON": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Raptor": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Rasqal": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ReFrame": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Redis": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Redland": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Rivet": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Ruby": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Rust": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SAGECal": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SAMtools": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SCOTCH": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SDL2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SEPP": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SIONlib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SIP": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SLEPc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SOCI": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SQLAlchemy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SQLite": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "STAR": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SUNDIALS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SWIG": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Salmon": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ScaFaCoS": [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ScaLAPACK": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SciPy-bundle": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SciTools-Iris": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Score-P": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Seaborn": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Shapely": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Siesta": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Simple-DFTD3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SlurmViewer": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Solids4foam": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Subread": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SuiteSparse": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "SuperLU_DIST": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Szip": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "TOML-Fortran": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Tcl": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "TensorFlow": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Tk": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Tkinter": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Tombo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Transrate": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Trimmomatic": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "UCC": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "UCX": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "UDUNITS": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "UnZip": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "VCFtools": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "VSEARCH": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "VTK": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Valgrind": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "VeloxChem": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Vim": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Voro++": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "WCSLIB": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "WRF": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "WSClean": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Wayland": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Waylandpp": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "WebKitGTK+": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "WhatsHap": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "X11": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "XML-LibXML": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Xerces-C++": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Xvfb": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "YODA": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Yasm": [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Z3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ZeroMQ": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Zip": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "Zoltan": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "acpype": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "aiida-core": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "aiida-shell": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "aiohttp": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "amdahl": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "anndata": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ant": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "archspec": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "arpack-ng": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "arrow-R": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "astropy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "astropy-testing": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "at-spi2-atk": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "at-spi2-core": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "attrdict3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "basemap": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "bcgTree": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "bcrypt": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "beagle-lib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "biom-format": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "bokeh": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "boto3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "build": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "buildenv": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "c-ares": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "cURL": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "cairo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "casacore": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ccache": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "cffi": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "cimfomfa": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "colorize": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "cooler": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "coverage": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "cpio": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "cppy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "crb-blast": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "cryptography": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "cutadapt": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "cwltool": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "dask": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "dftd4": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "dill": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "dlb": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "dm-tree": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "double-conversion": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "dysco": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ecBuild": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ecCodes": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "elfutils": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "elfx86exts": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "enchant-2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "expat": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "expecttest": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "f90wrap": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "fastjet": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "fastjet-contrib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "fastp": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ffnvcodec": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "flatbuffers": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "flatbuffers-python": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "flit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "flook": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "fontconfig": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "foss": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "freeglut": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "freetype": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "gawk": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "gc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "gengetopt": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "geopandas": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "gfbf": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "giflib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "git": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "glew": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "glib-networking": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "gmpy2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "gmsh": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "gnuplot": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "gompi": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "googletest": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "graphite2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "groff": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "grpcio": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "gtk-doc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "gzip": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "h5netcdf": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "h5py": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "hatch-jupyter-builder": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "hatchling": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "hic-straw": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "hiredis": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "hunspell": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "hwloc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "hypothesis": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ipympl": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "jbigkit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "jedi": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "jemalloc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "jq": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "json-c": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "json-fortran": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "jupyter-server": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "jupyterlmod": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "kim-api": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libGLU": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libGridXC": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libPSML": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libaec": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libaio": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libarchive": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libavif": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libcerf": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libcint": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libdap": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libde265": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libdeflate": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libdrm": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libdwarf": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libepoxy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libev": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libevent": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libfabric": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libfdf": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libffi": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libgcrypt": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libgd": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libgeotiff": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libgit2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libglvnd": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libgpg-error": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libheif": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libiconv": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libidn2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libjpeg-turbo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libogg": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libopus": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libpciaccess": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libpng": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libpsl": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "librosa": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "librttopo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libsndfile": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libsodium": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libspatialindex": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libspatialite": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libtasn1": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libtirpc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libunistring": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libunwind": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libvorbis": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libvori": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libwebp": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libwpe": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libxc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libxml2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libxml2-python": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libxslt": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libxsmm": [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], "libyaml": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "lit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "lpsolve": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "lxml": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "lz4": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "maeparser": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "make": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "mallard-ducktype": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "matplotlib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "maturin": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "mctc-lib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "meson-python": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "minizip": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ml_dtypes": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "mpi4py": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "mpl-ascii": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "mstore": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "multicharge": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "multiprocess": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ncbi-vdb": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ncdu": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "netCDF": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "netCDF-C++4": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "netCDF-Fortran": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "netcdf4-python": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "nettle": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "networkx": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "nghttp2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "nghttp3": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ngtcp2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "nlohmann_json": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "nodejs": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "nsync": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "numactl": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "numba": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "occt": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "openCARP": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "orjson": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "p11-kit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "parallel": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "paramiko": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "patchelf": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pigz": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pixman": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pkg-config": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pkgconf": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pkgconfig": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "plotly.py": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "plumpy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "poetry": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pre-commit": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "protobuf": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "protobuf-python": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "psutil": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "psycopg": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "psycopg2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pugixml": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "py-cpuinfo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pyMBE": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pybind11": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pydantic": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pydot": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pyfaidx": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pymatgen": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pyproj": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pystencils": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pytest": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pytest-flakefinder": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pytest-rerunfailures": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "pytest-shard": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "python-casacore": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "python-isal": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "python-xxhash": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "qrupdate": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "re2c": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "redis-py": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "rpy2": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "ruamel.yaml": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "scCODA": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "scanpy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "scikit-bio": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "scikit-build": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "scikit-build-core": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "scikit-learn": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "setuptools": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "setuptools-rust": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "siscone": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "snakemake": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "snappy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "spglib-python": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "statsmodels": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "sympy": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "tbb": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "tblite": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "tcsh": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "tensorboard": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "tensorflow-probability": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "test-drive": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "time": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "tmux": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "toil-cwl": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "tornado": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "tqdm": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "typing-extensions": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "umap-learn": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "uncertainties": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "unifdef": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "unixODBC": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "utf8proc": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "virtualenv": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "waLBerla": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "websockify": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "wget": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "wpebackend-fdo": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "wradlib": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "wrapt": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "wxPython": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "wxWidgets": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "x264": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "x265": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "xESMF": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "xarray": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "xmlf90": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "xorg-macros": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "xprop": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "xxHash": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "xxd": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "yacrd": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "yaml-cpp": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "yell": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "yelp-tools": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "yelp-xsl": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], "zstd": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]}, "time_generated": "Wed, 11 Feb 2026 at 13:39:36 UTC"} \ No newline at end of file diff --git a/docs/available_software/data/json_data_detail.json b/docs/available_software/data/json_data_detail.json deleted file mode 100644 index a57180386a..0000000000 --- a/docs/available_software/data/json_data_detail.json +++ /dev/null @@ -1 +0,0 @@ -{"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "software": {"Abseil": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Abseil/20230125.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Abseil/20230125.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Abseil/20240116.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Abseil is an open-source collection of C++ library code designed to augment theC++ standard library. The Abseil library code is collected from Google's ownC++ code base, has been extensively tested and used in production, and is thesame code we depend on in our daily coding lives.", "homepage": "https://abseil.io/"}, "acpype": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"acpype/2023.10.27-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "acpype-2023.10.27"}}, "description": "A tool based in Python to use Antechamber to generate topologies for chemical compounds andto interface with others python applications like CCPN and ARIA.", "homepage": "https://github.com/alanwilter/acpype"}, "aiida-core": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"aiida-core/2.7.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "aiida-core-2.7.2, aniso8601-10.0.1, archive-path-0.4.2, asyncssh-2.19.0, circus-0.19.0, click-spinner-0.1.10, disk_objectstore-1.3.0, docstring_parser-0.16, Flask-RESTful-0.3.10, graphviz-0.20.3, pgsu-0.3.0, PyCifRW-4.4.6, PyMySQL-0.9.3, pyparsing-3.1.0, python-memcached-1.62, pytray-0.3.4, seekpath-2.1.0, tqdm-4.67.1, upf-to-json-0.9.5"}}, "description": "Bundle of Python packages required to run AiiDA.An open-source Python infrastructure to help researchers with automating, managing, persisting,sharing and reproducing the complex workflows associated with modern computational science and all associated data.", "homepage": "https://www.aiida.net/"}, "aiida-shell": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"aiida-shell/0.8.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "aiida-shell-0.8.2"}}, "description": "AiiDA plugin that makes running shell commands easy.Run any shell executable without writing a dedicated plugin or parser.", "homepage": "https://aiida-shell.readthedocs.io/en/latest/"}, "aiohttp": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"aiohttp/3.8.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "aiohttp-3.8.5, aiosignal-1.3.1, async-timeout-4.0.3, frozenlist-1.4.0, multidict-6.0.4, yarl-1.9.2"}}, "description": "Asynchronous HTTP client/server framework for asyncio and Python.", "homepage": "https://github.com/aio-libs/aiohttp"}, "ALL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ALL/0.9.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A Load Balancing Library (ALL) aims to provide an easy way to include dynamicdomain-based load balancing into particle based simulation codes. The libraryis developed in the Simulation Laboratory Molecular Systems of the J\u00fclichSupercomputing Centre at Forschungszentrum J\u00fclich.", "homepage": "https://gitlab.jsc.fz-juelich.de/SLMS/loadbalancing"}, "AmberTools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"AmberTools/23.6-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "AmberTools consists of several independently developed packages that work well by themselves, and with Amber itself. The suite can also be used to carry out complete molecular dynamics simulations, with either explicit water or generalized Born solvent models.", "homepage": "https://ambermd.org/"}, "amdahl": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"amdahl/0.3.1-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This Python module contains a pseudo-application that can be used as a blackbox to reproduce Amdahl's Law. It does not do real calculations, nor any realcommunication, so can easily be overloaded.", "homepage": "https://github.com/hpc-carpentry/amdahl"}, "anndata": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"anndata/0.10.5.post1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "anndata-0.10.5.post1, array_api_compat-1.4.1, natsort-8.4.0, packaging-23.2"}}, "description": "anndata is a Python package for handling annotated data matrices in memory and on disk, positioned between pandas and xarray", "homepage": "https://github.com/scverse/anndata"}, "ant": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ant/1.10.14-Java-11": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications.", "homepage": "https://ant.apache.org/"}, "ANTLR": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ANTLR/2.7.7-GCCcore-12.3.0-Java-11": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a language tool that provides a framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions.", "homepage": "https://www.antlr2.org/"}, "AOFlagger": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"AOFlagger/3.4.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The AOFlagger is a tool that can find and remove radio-frequency interference (RFI)in radio astronomical observations. It can make use of Lua scripts to make flagging strategies flexible,and the tools are applicable to a wide set of telescopes.", "homepage": "https://aoflagger.readthedocs.io/"}, "Archive-Zip": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Archive-Zip/1.68-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Provide an interface to ZIP archive files.", "homepage": "https://metacpan.org/pod/Archive::Zip"}, "archspec": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"archspec/0.2.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "archspec/0.2.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "archspec/0.2.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A library for detecting, labeling, and reasoning about microarchitectures", "homepage": "https://github.com/archspec/archspec"}, "Armadillo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Armadillo/11.4.3-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Armadillo/12.6.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Armadillo/12.8.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as well as a subset of trigonometric and statistics functions.", "homepage": "https://arma.sourceforge.net/"}, "arpack-ng": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"arpack-ng/3.8.0-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "arpack-ng/3.9.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "arpack-ng/3.9.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems.", "homepage": "https://github.com/opencollab/arpack-ng"}, "arrow-R": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"arrow-R/11.0.0.3-foss-2022b-R-4.2.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "arrow-R/14.0.1-foss-2023a-R-4.3.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "R interface to the Apache Arrow C++ library", "homepage": "https://cran.r-project.org/web/packages/arrow"}, "Arrow": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Arrow/11.0.0-gfbf-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Arrow/14.0.1-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pyarrow-14.0.1"}, "Arrow/16.1.0-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pyarrow-16.1.0"}}, "description": "Apache Arrow (incl. PyArrow Python bindings), a cross-language development platform for in-memory data.", "homepage": "https://arrow.apache.org"}, "ArviZ": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ArviZ/0.16.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "ArviZ-0.16.1, xarray-einstats-0.6.0"}}, "description": "Exploratory analysis of Bayesian models with Python", "homepage": "https://github.com/arviz-devs/arviz"}, "ASE": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ASE/3.22.1-gfbf-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "ase-3.22.1, ase-ext-20.9.0, pytest-mock-3.8.2"}, "ASE/3.22.1-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "ase-3.22.1, ase-ext-20.9.0, pytest-mock-3.11.1"}}, "description": "ASE is a python package providing an open source Atomic Simulation Environment in the Python scripting language.From version 3.20.1 we also include the ase-ext package, it contains optional reimplementationsin C of functions in ASE. ASE uses it automatically when installed.", "homepage": "https://wiki.fysik.dtu.dk/ase"}, "astropy-testing": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"astropy-testing/7.0.0-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pytest-arraydiff-0.6.1, pytest-astropy-0.11.0, pytest-astropy-header-0.2.2, pytest-cov-5.0.0, pytest-doctestplus-1.3.0, pytest-filter-subpackage-0.2.0, pytest-mock-3.14.0, pytest-remotedata-0.4.1"}}, "description": "This bundle contains all dependencies needed to test astropy using pytest.", "homepage": "https://www.astropy.org/"}, "astropy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"astropy/7.0.0-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "astropy-7.0.0, astropy-iers-data-0.2025.1.6.0.33.42, colorlog-6.9.0, extension-helpers-1.2.0, pyerfa-2.0.1.5"}}, "description": "The Astropy Project is a community effort to develop a common core package for Astronomy in Python and foster an ecosystem of interoperable astronomy packages.The Astropy community is committed to supporting diversity and inclusion.", "homepage": "https://www.astropy.org/"}, "at-spi2-atk": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"at-spi2-atk/2.38.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "at-spi2-atk/2.38.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "at-spi2-atk/2.38.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "AT-SPI 2 toolkit bridge", "homepage": "https://wiki.gnome.org/Accessibility"}, "at-spi2-core": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"at-spi2-core/2.46.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "at-spi2-core/2.49.91-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "at-spi2-core/2.50.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Assistive Technology Service Provider Interface.", "homepage": "https://wiki.gnome.org/Accessibility"}, "ATK": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ATK/2.38.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ATK/2.38.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ATK/2.38.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ATK provides the set of accessibility interfaces that are implemented by other toolkits and applications. Using the ATK interfaces, accessibility tools have full access to view and control running applications.", "homepage": "https://developer.gnome.org/atk/"}, "attrdict3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"attrdict3/2.0.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "attrdict3-2.0.2"}}, "description": "AttrDict is a Python library that provides mapping objects that allow their elements to be accessed both as keys and as attributes.", "homepage": "https://github.com/pirofti/AttrDict3"}, "BamTools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"BamTools/2.5.2-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files.", "homepage": "https://github.com/pezmaster31/bamtools"}, "basemap": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"basemap/1.3.9-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "basemap-1.3.9, basemap_data-1.3.9, pyshp-2.3.1"}}, "description": "The matplotlib basemap toolkit is a library for plotting 2D data on maps in Python", "homepage": "https://matplotlib.org/basemap/"}, "Bazel": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Bazel/6.1.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Bazel/6.3.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Bazel is a build tool that builds code quickly and reliably.It is used to build the majority of Google's software.", "homepage": "https://bazel.io/"}, "BCFtools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"BCFtools/1.17-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "BCFtools/1.18-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Samtools is a suite of programs for interacting with high-throughput sequencing data. BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising SNP and short indel sequence variants", "homepage": "https://www.htslib.org/"}, "bcgTree": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"bcgTree/1.2.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Automatized phylogenetic tree building from bacterial core genomes.", "homepage": "https://github.com/molbiodiv/bcgTree"}, "bcrypt": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"bcrypt/4.0.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Acceptable password hashing for your software and your servers (but you shouldreally use argon2id or scrypt)", "homepage": "https://github.com/pyca/bcrypt/"}, "beagle-lib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"beagle-lib/4.0.1-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "beagle-lib is a high-performance library that can perform the core calculations at the heart of most Bayesian and Maximum Likelihood phylogenetics packages.", "homepage": "https://github.com/beagle-dev/beagle-lib"}, "BeautifulSoup": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"BeautifulSoup/4.12.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "BeautifulSoup-4.12.2, soupsieve-2.4.1"}}, "description": "Beautiful Soup is a Python library designed for quick turnaround projects like screen-scraping.", "homepage": "https://www.crummy.com/software/BeautifulSoup"}, "Bio-DB-HTS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Bio-DB-HTS/3.01-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Read files using HTSlib including BAM/CRAM, Tabix and BCF database files", "homepage": "https://metacpan.org/release/Bio-DB-HTS"}, "Bio-SearchIO-hmmer": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Bio-SearchIO-hmmer/1.7.3-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Code to parse output from hmmsearch, hmmscan, phmmer and nhmmer, compatiblewith both version 2 and version 3 of the HMMER package from http://hmmer.org.", "homepage": "https://metacpan.org/pod/Bio::SearchIO::hmmer3"}, "biom-format": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"biom-format/2.1.15-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The BIOM file format (canonically pronounced biome) is designed to be a general-use format for representing biological sample by observation contingency tables. BIOM is a recognized standard for the Earth Microbiome Project and is a Genomics Standards Consortium supported project.", "homepage": "https://biom-format.org"}, "BioPerl": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"BioPerl/1.7.8-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Bio::Procedural-1.7.4, BioPerl-1.7.8, XML::Writer-0.900"}, "BioPerl/1.7.8-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Bio::Procedural-1.7.4, BioPerl-1.7.8, XML::Writer-0.900"}}, "description": "Bioperl is the product of a community effort to produce Perl code which is useful in biology. Examples include Sequence objects, Alignment objects and database searching objects.", "homepage": "https://bioperl.org/"}, "Biopython": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Biopython/1.81-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Biopython/1.83-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Biopython is a set of freely available tools for biological computation written in Python by an international team of developers. It is a distributed collaborative effort to develop Python libraries and applications which address the needs of current and future work in bioinformatics.", "homepage": "https://www.biopython.org"}, "Bison": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Bison/3.8.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Bison/3.8.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Bison/3.8.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables.", "homepage": "https://www.gnu.org/software/bison"}, "BLAST+": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"BLAST+/2.14.0-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "BLAST+/2.14.1-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Basic Local Alignment Search Tool, or BLAST, is an algorithm for comparing primary biological sequence information, such as the amino-acid sequences of different proteins or the nucleotides of DNA sequences.", "homepage": "https://blast.ncbi.nlm.nih.gov/"}, "BLIS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"BLIS/0.9.0-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "BLIS/0.9.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "BLIS/0.9.0-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "BLIS is a portable software framework for instantiating high-performanceBLAS-like dense linear algebra libraries.", "homepage": "https://github.com/flame/blis/"}, "Blosc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Blosc/1.21.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Blosc, an extremely fast, multi-threaded, meta-compressor library", "homepage": "https://www.blosc.org/"}, "Blosc2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Blosc2/2.13.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Blosc, an extremely fast, multi-threaded, meta-compressor library", "homepage": "https://www.blosc.org/"}, "bokeh": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"bokeh/3.2.1-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "bokeh-3.2.1, contourpy-1.0.7, tornado-6.3.2, xyzservices-2023.7.0"}, "bokeh/3.2.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "bokeh-3.2.2, contourpy-1.0.7, xyzservices-2023.7.0"}}, "description": "Statistical and novel interactive HTML plots for Python", "homepage": "https://github.com/bokeh/bokeh"}, "Boost.MPI": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Boost.MPI/1.81.0-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Boost.MPI/1.82.0-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Boost.MPI/1.83.0-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Boost provides free peer-reviewed portable C++ source libraries.", "homepage": "https://www.boost.org/"}, "Boost.Python-NumPy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Boost.Python-NumPy/1.83.0-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Boost.Python is a C++ library which enables seamless interoperability between C++ and the Python programming language.", "homepage": "https://boostorg.github.io/python"}, "Boost.Python": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Boost.Python/1.82.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Boost.Python/1.83.0-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Boost.Python is a C++ library which enables seamless interoperability between C++ and the Python programming language.", "homepage": "https://boostorg.github.io/python"}, "Boost": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Boost/1.81.0-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Boost/1.82.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Boost/1.83.0-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Boost provides free peer-reviewed portable C++ source libraries.", "homepage": "https://www.boost.org/"}, "boto3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"boto3/1.28.70-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "boto3-1.28.70, botocore-1.31.70, jmespath-1.0.1, s3transfer-0.7.0"}}, "description": "Boto3 is the Amazon Web Services (AWS) Software Development Kit(SDK) for Python, which allows Python developers to write software that makesuse of services like Amazon S3 and Amazon EC2.", "homepage": "https://github.com/boto/boto3"}, "Bowtie2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Bowtie2/2.5.1-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes.", "homepage": "https://bowtie-bio.sourceforge.net/bowtie2/index.shtml"}, "Brotli": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Brotli/1.0.9-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Brotli/1.0.9-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Brotli/1.1.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression.The specification of the Brotli Compressed Data Format is defined in RFC 7932.", "homepage": "https://github.com/google/brotli"}, "Brunsli": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Brunsli/0.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Brunsli/0.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Brunsli/0.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Brunsli is a lossless JPEG repacking library.", "homepage": "https://github.com/google/brunsli/"}, "build": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"build/1.0.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "build-1.0.3, pyproject_hooks-1.0.0"}}, "description": "A simple, correct Python build frontend.", "homepage": "https://github.com/pypa/build"}, "buildenv": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"buildenv/default-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "buildenv/default-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "buildenv/default-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This module sets a group of environment variables for compilers, linkers, maths libraries, etc., that you can use to easily transition between toolchains when building your software. To query the variables being set please use: module show ", "homepage": "None"}, "BWA": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"BWA/0.7.17-20220923-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "BWA/0.7.18-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "BWA/0.7.18-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Burrows-Wheeler Aligner (BWA) is an efficient program that aligns relatively short nucleotide sequences against a long reference sequence such as the human genome.", "homepage": "http://bio-bwa.sourceforge.net/"}, "c-ares": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"c-ares/1.19.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "c-ares is a C library for asynchronous DNS requests (including name resolves)", "homepage": "https://c-ares.org/"}, "cairo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"cairo/1.17.4-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "cairo/1.17.8-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "cairo/1.18.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB", "homepage": "https://cairographics.org"}, "CapnProto": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CapnProto/0.10.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "CapnProto/1.0.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Cap\u2019n Proto is an insanely fast data interchange format and capability-based RPC system.", "homepage": "https://capnproto.org"}, "Cartopy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Cartopy/0.22.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Cartopy-0.22.0, OWSLib-0.29.3, pyepsg-0.4.0, pykdtree-1.3.10, pyshp-2.3.1"}}, "description": "Cartopy is a Python package designed to make drawing maps for data analysis and visualisation easy.", "homepage": "https://scitools.org.uk/cartopy/docs/latest/"}, "casacore": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"casacore/3.5.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A suite of C++ libraries for radio astronomy data processing.The ephemerides data needs to be in DATA_DIR and the location must be specified at runtime.Thus user's can update them.", "homepage": "https://github.com/casacore/casacore"}, "Cassiopeia": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Cassiopeia/2.0.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "bleach-6.1.0, Cassiopeia-2.0.0, comm-0.2.2, defusedxml-0.7.1, deprecation-2.1.0, fastjsonschema-2.19.1, hits-0.4.0, ipywidgets-8.1.2, itolapi-4.1.4, jupyter_client-8.6.1, jupyter_core-5.7.2, jupyter_packaging-0.12.3, jupyterlab_pygments-0.3.0, jupyterlab_widgets-3.0.10, Levenshtein-0.22.0, mistune-3.0.2, nbclient-0.10.0, nbconvert-7.16.3, nbformat-5.10.3, ngs-tools-1.8.5, pandocfilters-1.5.1, python-Levenshtein-0.22.0, shortuuid-1.0.13, tinycss2-1.2.1, traitlets-5.14.2, widgetsnbextension-4.0.10"}}, "description": "A Package for Cas9-Enabled Single Cell Lineage Tracing Tree Reconstruction.", "homepage": "https://github.com/YosefLab/Cassiopeia"}, "Catch2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Catch2/2.13.9-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Catch2/2.13.9-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Catch2/2.13.9-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A modern, C++-native, header-only, test framework for unit-tests, TDD and BDD - using C++11, C++14, C++17 and later", "homepage": "https://github.com/catchorg/Catch2"}, "Cbc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Cbc/2.10.11-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Cbc/2.10.11-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Cbc (Coin-or branch and cut) is an open-source mixed integer linear programmingsolver written in C++. It can be used as a callable library or using astand-alone executable.", "homepage": "https://github.com/coin-or/Cbc"}, "ccache": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ccache/4.9-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Ccache (or \u201cccache\u201d) is a compiler cache. It speeds up recompilation bycaching previous compilations and detecting when the same compilation is being done again", "homepage": "https://ccache.dev/"}, "CD-HIT": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CD-HIT/4.8.1-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "CD-HIT is a very widely used program for clustering and comparing protein or nucleotide sequences.", "homepage": "http://weizhongli-lab.org/cd-hit/"}, "CDO": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CDO/2.2.2-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "CDO/2.2.2-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "CDO is a collection of command line Operators to manipulate and analyse Climate and NWP model Data.", "homepage": "https://code.zmaw.de/projects/cdo"}, "Cereal": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Cereal/1.3.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "cereal is a header-only C++11 serialization library. cereal takes arbitrary data types and reversiblyturns them into different representations, such as compact binary encodings, XML, or JSON. cereal was designed to befast, light-weight, and easy to extend - it has no external dependencies and can be easily bundled with other code orused standalone.", "homepage": "https://uscilab.github.io/cereal/"}, "cffi": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"cffi/1.15.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "cffi-1.15.1, pycparser-2.21"}, "cffi/1.15.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "cffi-1.15.1, pycparser-2.21"}}, "description": "C Foreign Function Interface for Python. Interact with almost any C code fromPython, based on C-like declarations that you can often copy-paste from headerfiles or documentation.", "homepage": "https://cffi.readthedocs.io/en/latest/"}, "CFITSIO": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CFITSIO/4.2.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "CFITSIO/4.3.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "CFITSIO/4.3.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "CFITSIO is a library of C and Fortran subroutines for reading and writing data files inFITS (Flexible Image Transport System) data format.", "homepage": "https://heasarc.gsfc.nasa.gov/fitsio/"}, "CGAL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CGAL/5.5.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "CGAL/5.6-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The goal of the CGAL Open Source Project is to provide easy access to efficient and reliable geometric algorithms in the form of a C++ library.", "homepage": "https://www.cgal.org/"}, "Cgl": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Cgl/0.60.8-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Cgl/0.60.8-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The COIN-OR Cut Generation Library (Cgl) is a collection of cut generators thatcan be used with other COIN-OR packages that make use of cuts, such as, amongothers, the linear solver Clp or the mixed integer linear programming solversCbc or BCP. Cgl uses the abstract class OsiSolverInterface (see Osi) to use orcommunicate with a solver. It does not directly call a solver.", "homepage": "https://github.com/coin-or/Cgl"}, "cimfomfa": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"cimfomfa/22.273-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This library supports both MCL, a cluster algorithm for graphs, and zoem, amacro/DSL language. It supplies abstractions for memory management, I/O,associative arrays, strings, heaps, and a few other things. The string libraryhas had heavy testing as part of zoem. Both understandably and regrettably Ichose long ago to make it C-string-compatible, hence nul bytes may not be partof a string. At some point I hope to rectify this, perhaps unrealistically.", "homepage": "https://github.com/micans/cimfomfa"}, "Clp": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Clp/1.17.9-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Clp/1.17.9-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Clp (Coin-or linear programming) is an open-source linear programming solver.It is primarily meant to be used as a callable library, but a basic,stand-alone executable version is also available.", "homepage": "https://github.com/coin-or/Clp"}, "CMake": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CMake/3.18.4": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "CMake/3.24.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "CMake/3.26.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "CMake/3.27.6-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "CMake, the cross-platform, open-source build system. CMake is a family of tools designed to build, test and package software.", "homepage": "https://www.cmake.org"}, "CoinUtils": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CoinUtils/2.11.10-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "CoinUtils/2.11.10-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "CoinUtils (Coin-OR Utilities) is an open-source collection of classes andfunctions that are generally useful to more than one COIN-OR project.", "homepage": "https://github.com/coin-or/CoinUtils"}, "colorize": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"colorize/0.7.7-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Ruby gem for colorizing text using ANSI escape sequences.Extends String class or add a ColorizedString with methods to set the text color, background color and text effects.", "homepage": "https://github.com/fazibear/colorize"}, "cooler": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"cooler/0.10.2-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "asciitree-0.3.3, cooler-0.10.2, cytoolz-1.0.0, toolz-1.0.0"}}, "description": "Cooler is a support library for a storage format, also called cooler, used to store genomic interaction data of any size, such as Hi-C contact matrices.", "homepage": "https://open2c.github.io/cooler"}, "CoordgenLibs": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CoordgenLibs/3.0.2-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Schrodinger-developed 2D Coordinate Generation", "homepage": "https://github.com/schrodinger/coordgenlibs"}, "coverage": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"coverage/7.4.4-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "coverage-7.4.4"}}, "description": "Coverage.py is a tool for measuring code coverage of Python programs. It monitors your program, noting which parts of the code have been executed, then analyzes the source to identify code that could have been executed but was not.", "homepage": "https://coverage.readthedocs.io"}, "CP2K": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CP2K/2023.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials.", "homepage": "https://www.cp2k.org/"}, "cpio": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"cpio/2.15-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "cpio/2.15-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The cpio package contains tools for archiving.", "homepage": "https://savannah.gnu.org/projects/cpio/"}, "cppy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"cppy/1.2.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "cppy/1.2.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "cppy/1.2.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A small C++ header library which makes it easier to writePython extension modules. The primary feature is a PyObject smart pointerwhich automatically handles reference counting and provides conveniencemethods for performing common object operations.", "homepage": "https://github.com/nucleic/cppy"}, "crb-blast": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"crb-blast/0.6.9-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "bindeps-1.2.1, bio-1.6.0.pre.20181210, crb-blast-0.6.9, facade-1.2.1, fixwhich-1.0.2, pathname2-1.8.4, threach-0.2.0, trollop-2.9.10"}}, "description": "Conditional Reciprocal Best BLAST - high confidence ortholog assignment.", "homepage": "https://github.com/cboursnell/crb-blast"}, "Critic2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Critic2/1.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Critic2 is a program for the analysis of quantum mechanicalcalculation results in molecules and periodic solids.", "homepage": "https://aoterodelaroza.github.io/critic2/"}, "cryptography": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"cryptography/41.0.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "cryptography/41.0.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "cryptography is a package designed to expose cryptographic primitives and recipes to Python developers.", "homepage": "https://github.com/pyca/cryptography"}, "CubeLib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CubeLib/4.8.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. This module provides the Cube general purpose C++ library component and command-line tools.", "homepage": "https://www.scalasca.org/software/cube-4.x/download.html"}, "CubeWriter": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CubeWriter/4.8.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. This module provides the Cube high-performance C writer library component.", "homepage": "https://www.scalasca.org/software/cube-4.x/download.html"}, "CUnit": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"CUnit/2.1-3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Automated testing framework for C.", "homepage": "https://sourceforge.net/projects/cunit/"}, "cURL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"cURL/7.86.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "cURL/8.0.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "cURL/8.3.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "libcurl is a free and easy-to-use client-side URL transfer library, supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling and more.", "homepage": "https://curl.haxx.se"}, "cutadapt": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"cutadapt/5.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "cutadapt-5.0, dnaio-1.2.3, xopen-1.7.0"}}, "description": "Cutadapt finds and removes adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads.", "homepage": "https://opensource.scilifelab.se/projects/cutadapt/"}, "cwltool": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"cwltool/3.1.20250110105449-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "argcomplete-3.6.2, coloredlogs-15.0.1, cwl-upgrader-1.2.12, cwl-utils-0.38, cwltool-3.1.20250110105449, humanfriendly-10.0, mistune-3.0.2, mypy-extensions-1.1.0, prov-1.5.1, rich-argparse-1.7.1, schema-salad-8.9.20250408123006, spython-0.3.14"}}, "description": "This is the reference implementation of the Common Workflow Language openstandards. It is intended to be feature complete and provide comprehensivevalidation of CWL files as well as provide other tools related to working withCWL.", "homepage": "https://cwltool.readthedocs.io/"}, "Cython": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Cython/3.0.8-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Cython/3.0.10-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Cython is an optimising static compiler for both the Python programminglanguage and the extended Cython programming language (based on Pyrex).", "homepage": "https://cython.org/"}, "dask": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"dask/2023.7.1-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "dask-2023.7.1, dask-jobqueue-0.8.2, dask-mpi-2022.4.0, distributed-2023.7.1, docrep-0.3.2, HeapDict-1.0.1, locket-1.0.0, partd-1.4.0, tblib-2.0.0, toolz-0.12.0, versioneer-0.29, zict-3.0.0"}, "dask/2023.9.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "dask-2023.9.2, dask-jobqueue-0.8.2, dask-mpi-2022.4.0, distributed-2023.9.2, docrep-0.3.2, HeapDict-1.0.1, locket-1.0.0, partd-1.4.0, tblib-2.0.0, toolz-0.12.0, zict-3.0.0"}}, "description": "Dask natively scales Python. Dask provides advanced parallelism for analytics, enabling performance at scale for the tools you love.", "homepage": "https://dask.org/"}, "DB": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"DB/18.1.40-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "DB/18.1.40-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Berkeley DB enables the development of custom data management solutions, without the overhead traditionally associated with such custom projects.", "homepage": "https://www.oracle.com/technetwork/products/berkeleydb"}, "DB_File": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"DB_File/1.859-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Perl5 access to Berkeley DB version 1.x.", "homepage": "https://perldoc.perl.org/DB_File.html"}, "DendroPy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"DendroPy/4.5.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "DendroPy/4.6.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A Python library for phylogenetics and phylogenetic computing: reading, writing, simulation, processing and manipulation of phylogenetic trees (phylogenies) and characters.", "homepage": "https://dendropy.org/"}, "Deprecated": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Deprecated/1.2.14-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "If you need to mark a function or a method as deprecated, you can use the @deprecated decorator.", "homepage": "https://github.com/tantale/deprecated"}, "dftd4": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"dftd4/3.7.0-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The dftd4 project provides an implementation of the generally applicable, charge dependentLondon-dispersion correction, termed DFT-D4.", "homepage": "https://dftd4.readthedocs.io"}, "DIAMOND": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"DIAMOND/2.1.8-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Accelerated BLAST compatible local sequence aligner", "homepage": "https://github.com/bbuchfink/diamond"}, "dill": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"dill/0.3.7-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "dill/0.3.8-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "dill extends python's pickle module for serializing and de-serializing python objects to the majority of the built-in python types. Serialization is the process of converting an object to a byte stream, and the inverse of which is converting a byte stream back to on python object hierarchy.", "homepage": "https://pypi.org/project/dill/"}, "dlb": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"dlb/3.4-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "DLB is a dynamic library designed to speed up HPC hybrid applications (i.e.,two levels of parallelism) by improving the load balance of the outer level ofparallelism (e.g., MPI) by dynamically redistributing the computationalresources at the inner level of parallelism (e.g., OpenMP). at run time.", "homepage": "https://pm.bsc.es/dlb/"}, "dm-tree": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"dm-tree/0.1.8-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "dm-tree provides tree, a library for working with nested data structures. In a way,tree generalizes the builtin map function which only supports flat sequences, andallows to apply a function to each \"leaf\" preserving the overall structure.", "homepage": "https://github.com/deepmind/tree"}, "double-conversion": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"double-conversion/3.2.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "double-conversion/3.3.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "double-conversion/3.3.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles.", "homepage": "https://github.com/google/double-conversion"}, "Doxygen": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Doxygen/1.9.5-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Doxygen/1.9.7-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Doxygen/1.9.8-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D.", "homepage": "https://www.doxygen.org"}, "DP3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"DP3/6.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "DP3/6.2-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "DP3: streaming processing pipeline for radio interferometric data.", "homepage": "https://dp3.readthedocs.io/"}, "dysco": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"dysco/1.3-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Dysco compression technique is explained in the article \"Compression ofinterferometric radio-astronomical data\", A. R. Offringa (2016;http://arxiv.org/abs/1609.02019). If you use this software, please cite thepaper.", "homepage": "https://github.com/aroffringa/dysco"}, "EasyBuild": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"EasyBuild/4.8.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EasyBuild/4.9.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EasyBuild/4.9.1": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EasyBuild/4.9.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EasyBuild/4.9.3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EasyBuild/4.9.4": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EasyBuild/5.0.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EasyBuild/5.1.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EasyBuild/5.1.1": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EasyBuild/5.1.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EasyBuild/5.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way.", "homepage": "https://easybuilders.github.io/easybuild"}, "ecBuild": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ecBuild/3.8.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A CMake-based build system, consisting of a collection of CMake macros andfunctions that ease the managing of software build systems", "homepage": "https://ecbuild.readthedocs.io/"}, "ecCodes": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ecCodes/2.31.0-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ecCodes/2.31.0-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ecCodes is a package developed by ECMWF which provides an application programming interface and a set of tools for decoding and encoding messages in the following formats: WMO FM-92 GRIB edition 1 and edition 2, WMO FM-94 BUFR edition 3 and edition 4, WMO GTS abbreviated header (only decoding).", "homepage": "https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home"}, "EESSI-extend": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"EESSI-extend/2023.06-easybuild": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The goal of the European Environment for Scientific Software Installations (EESSI, pronounced as \"easy\") is to build a common stack of scientific software installations for HPC systems and beyond, including laptops, personal workstations and cloud infrastructure. This module allows you to extend EESSI using the same configuration for EasyBuild as EESSI itself uses. A number of environment variables control the behaviour of the module: - EESSI_USER_INSTALL can be set to a location to install modules for use by the user only. The location must already exist on the filesystem. - EESSI_PROJECT_INSTALL can be set to a location to install modules for use by a project. The location must already exist on the filesystem and you should ensure that the location has the correct Linux group and the SGID permission is set on that directory (`chmod g+s $EESSI_PROJECT_INSTALL`) so that all members of the group have permission to read and write installations. - EESSI_SITE_INSTALL is either defined or not and cannot be used with another environment variable. A site installation is done in a defined location and any installations there are (by default) world readable. - EESSI_CVMFS_INSTALL is either defined or not and cannot be used with another environment variable. A CVMFS installation targets a defined location which will be ingested into CVMFS and is only useful for CVMFS administrators. - If none of the environment variables above are defined, an EESSI_USER_INSTALL is assumed with a value of $HOME/EESSI If both EESSI_USER_INSTALL and EESSI_PROJECT_INSTALL are defined, both sets of installations are exposed, but new installations are created as user installations. Strict installation path checking is enforced by EESSI for EESSI and site installations involving accelerators. In these cases, if you wish to create an accelerator installation you must set the environment variable EESSI_ACCELERATOR_INSTALL (and load/reload this module).", "homepage": "https://eessi.io/docs/"}, "Eigen": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Eigen/3.4.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Eigen/3.4.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Eigen/3.4.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms.", "homepage": "https://eigen.tuxfamily.org"}, "elfutils": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"elfutils/0.189-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "elfutils/0.189-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "elfutils/0.190-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The elfutils project provides libraries and tools for ELF files and DWARF data.", "homepage": "https://elfutils.org/"}, "elfx86exts": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"elfx86exts/0.6.2-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Decode binaries and print out which instruction set extensions they use.", "homepage": "https://github.com/pkgw/elfx86exts"}, "ELPA": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ELPA/2022.05.001-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ELPA/2023.05.001-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Eigenvalue SoLvers for Petaflop-Applications.", "homepage": "https://elpa.mpcdf.mpg.de/"}, "enchant-2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"enchant-2/2.6.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Enchant aims to provide a simple but comprehensive abstraction for dealingwith different spell checking libraries in a consistent way. A client, suchas a text editor or word processor, need not know anything about a specificspell-checker, and since all back-ends are plugins, new spell-checkers canbe added without needing any change to the program using Enchant.", "homepage": "http://rrthomas.github.io/enchant/"}, "ESMF": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ESMF/8.6.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ESMF/8.6.1-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Earth System Modeling Framework (ESMF) is a suite of software tools for developing high-performance, multi-component Earth science modeling applications.", "homepage": "https://www.earthsystemcog.org/projects/esmf/"}, "ESMPy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ESMPy/8.6.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "esmpy-8.6.0"}}, "description": "Earth System Modeling Framework (ESMF) Python Interface", "homepage": "https://earthsystemmodeling.org/esmpy"}, "ESPResSo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ESPResSo/4.2.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ESPResSo/4.2.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ESPResSo/4.2.2-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A software package for performing and analyzing scientific Molecular Dynamics simulations.", "homepage": "https://espressomd.org/wordpress"}, "ETE": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ETE/3.1.3-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A Python framework for the analysis and visualization of trees", "homepage": "http://etetoolkit.org"}, "EveryBeam": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"EveryBeam/0.5.2-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "EveryBeam/0.6.1-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Library that provides the antenna response pattern for several instruments,such as LOFAR (and LOBES), SKA (OSKAR), MWA, JVLA, etc.", "homepage": "https://everybeam.readthedocs.io/"}, "expat": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"expat/2.4.9-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "expat/2.5.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "expat/2.5.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Expat is an XML parser library written in C. It is a stream-oriented parserin which an application registers handlers for things the parser might findin the XML document (like start tags).", "homepage": "https://libexpat.github.io"}, "expecttest": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"expecttest/0.1.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This library implements expect tests (also known as \"golden\" tests). Expect tests are a method of writing tests where instead of hard-coding the expected output of a test, you run the test to get the output, and the test framework automatically populates the expected output. If the output of the test changes, you can rerun the test with the environment variable EXPECTTEST_ACCEPT=1 to automatically update the expected output.", "homepage": "https://github.com/ezyang/expecttest"}, "Extrae": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Extrae/4.2.0-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Extrae is the package devoted to generate Paraver trace-files for a post-mortem analysis.Extrae is a tool that uses different interposition mechanisms to inject probes into the target applicationso as to gather information regarding the application performance.", "homepage": "https://tools.bsc.es/extrae"}, "f90wrap": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"f90wrap/0.2.13-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "f90wrap is a tool to automatically generate Python extension modules whichinterface to Fortran code that makes use of derived types. It builds on thecapabilities of the popular f2py utility by generating a simpler Fortran 90interface to the original Fortran code which is then suitable for wrapping withf2py, together with a higher-level Pythonic wrapper that makes the existance ofan additional layer transparent to the final user.", "homepage": "https://github.com/jameskermode/f90wrap"}, "FALL3D": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FALL3D/9.0.1-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FALL3D is an open-source volcanic ash dispersal model.", "homepage": "https://gitlab.com/fall3d-suite/fall3d"}, "fastjet-contrib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"fastjet-contrib/1.053-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "3rd party extensions of FastJet", "homepage": "https://fastjet.hepforge.org/contrib/"}, "fastjet": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"fastjet/3.4.2-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A software package for jet finding in pp and e+e- collisions", "homepage": "https://fastjet.fr/"}, "FastME": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FastME/2.1.6.3-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FastME: a comprehensive, accurate and fast distance-based phylogeny inference program.", "homepage": "http://www.atgc-montpellier.fr/fastme/"}, "fastp": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"fastp/0.23.4-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "fastp/0.23.4-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance.", "homepage": "https://github.com/OpenGene/fastp"}, "FastQC": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FastQC/0.12.1-Java-11": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FastQC is a quality control application for high throughputsequence data. It reads in sequence data in a variety of formats and can eitherprovide an interactive application to review the results of several differentQC checks, or create an HTML based report which can be integrated into apipeline.", "homepage": "https://www.bioinformatics.babraham.ac.uk/projects/fastqc/"}, "FFmpeg": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FFmpeg/5.1.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FFmpeg/6.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FFmpeg/6.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A complete, cross-platform solution to record, convert and stream audio and video.", "homepage": "https://www.ffmpeg.org/"}, "ffnvcodec": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ffnvcodec/11.1.5.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ffnvcodec/12.0.16.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ffnvcodec/12.1.14.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FFmpeg nvidia headers. Adds support for nvenc and nvdec. Requires Nvidia GPU and drivers to be present(picked up dynamically).", "homepage": "https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git"}, "FFTW.MPI": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FFTW.MPI/3.3.10-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FFTW.MPI/3.3.10-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FFTW.MPI/3.3.10-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)in one or more dimensions, of arbitrary input size, and of both real and complex data.", "homepage": "https://www.fftw.org"}, "FFTW": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FFTW/3.3.10-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FFTW/3.3.10-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FFTW/3.3.10-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)in one or more dimensions, of arbitrary input size, and of both real and complex data.", "homepage": "https://www.fftw.org"}, "Fiona": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Fiona/1.9.5-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "click-plugins-1.1.1, cligj-0.7.2, fiona-1.9.5, munch-4.0.0"}}, "description": "Fiona is designed to be simple and dependable. It focuses on reading and writing datain standard Python IO style and relies upon familiar Python types and protocols such as files, dictionaries,mappings, and iterators instead of classes specific to OGR. Fiona can read and write real-world data usingmulti-layered GIS formats and zipped virtual file systems and integrates readily with other Python GISpackages such as pyproj, Rtree, and Shapely.", "homepage": "https://github.com/Toblerity/Fiona"}, "FLAC": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FLAC/1.4.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FLAC/1.4.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FLAC/1.4.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FLAC stands for Free Lossless Audio Codec, an audio format similar to MP3, but lossless, meaningthat audio is compressed in FLAC without any loss in quality.", "homepage": "https://xiph.org/flac/"}, "Flask": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Flask/2.2.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "asgiref-3.6.0, cachelib-0.10.2, Flask-2.2.3, Flask-Cors-3.0.10, Flask-Session-0.4.0, itsdangerous-2.1.2, Werkzeug-2.2.3"}, "Flask/2.3.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "asgiref-3.7.2, blinker-1.6.2, cachelib-0.10.2, flask-2.3.3, Flask-Cors-4.0.0, Flask-Session-0.5.0, itsdangerous-2.1.2, werkzeug-2.3.7"}, "Flask/3.0.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "asgiref-3.7.2, blinker-1.7.0, cachelib-0.10.2, flask-3.0.0, Flask-Cors-4.0.0, Flask-Session-0.5.0, itsdangerous-2.1.2, werkzeug-3.0.1"}}, "description": "Flask is a lightweight WSGI web application framework. It is designed to makegetting started quick and easy, with the ability to scale up to complexapplications.This module includes the Flask extensions: Flask-Cors", "homepage": "https://www.palletsprojects.com/p/flask/"}, "flatbuffers-python": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"flatbuffers-python/23.5.26-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Python Flatbuffers runtime library.", "homepage": "https://github.com/google/flatbuffers/"}, "flatbuffers": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"flatbuffers/23.5.26-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FlatBuffers: Memory Efficient Serialization Library", "homepage": "https://github.com/google/flatbuffers/"}, "FlexiBLAS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FlexiBLAS/3.2.1-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FlexiBLAS/3.3.1-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FlexiBLAS/3.3.1-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FlexiBLAS is a wrapper library that enables the exchange of the BLAS and LAPACK implementationused by a program without recompiling or relinking it.", "homepage": "https://gitlab.mpi-magdeburg.mpg.de/software/flexiblas-release"}, "flit": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"flit/3.9.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "certifi-2023.5.7, charset-normalizer-3.1.0, docutils-0.20.1, flit-3.9.0, flit_scm-1.7.0, idna-3.4, packaging-23.1, requests-2.31.0, setuptools_scm-7.1.0, tomli_w-1.0.0, typing_extensions-4.6.3, urllib3-1.26.16"}, "flit/3.9.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "certifi-2023.7.22, charset-normalizer-3.3.1, docutils-0.20.1, flit-3.9.0, flit_scm-1.7.0, idna-3.4, packaging-23.2, requests-2.31.0, setuptools-scm-8.0.4, tomli_w-1.0.0, typing_extensions-4.8.0, urllib3-2.0.7"}}, "description": "A simple packaging tool for simple packages.", "homepage": "https://github.com/pypa/flit"}, "flook": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"flook/0.8.4-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The fortran-Lua-hook library.", "homepage": "https://github.com/ElectronicStructureLibrary/flook"}, "FLTK": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FLTK/1.3.8-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation.", "homepage": "https://www.fltk.org"}, "Flye": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Flye/2.9.3-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Flye/2.9.4-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Flye is a de novo assembler for long and noisy reads, such as those produced by PacBio and Oxford Nanopore Technologies.", "homepage": "https://github.com/fenderglass/Flye"}, "fontconfig": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"fontconfig/2.14.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "fontconfig/2.14.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "fontconfig/2.14.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Fontconfig is a library designed to provide system-wide font configuration, customization and application access.", "homepage": "https://www.freedesktop.org/wiki/Software/fontconfig/"}, "foss": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"foss/2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "foss/2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "foss/2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK.", "homepage": "https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain"}, "FragGeneScan": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FragGeneScan/1.31-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FragGeneScan is an application for finding (fragmented) genes in short reads.", "homepage": "https://omics.informatics.indiana.edu/FragGeneScan/"}, "freeglut": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"freeglut/3.4.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "freeglut/3.4.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library.", "homepage": "http://freeglut.sourceforge.net/"}, "FreeImage": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FreeImage/3.18.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FreeImage is an Open Source library project for developers who would like to support popular graphicsimage formats like PNG, BMP, JPEG, TIFF and others as needed by today's multimedia applications. FreeImage is easy touse, fast, multithreading safe.", "homepage": "http://freeimage.sourceforge.net"}, "freetype": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"freetype/2.12.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "freetype/2.13.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "freetype/2.13.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display servers, font conversion tools, text image generation tools, and many other products as well.", "homepage": "https://www.freetype.org"}, "FreeXL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FreeXL/2.0.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "FreeXL is an open source library to extract valid data from within anExcel (.xls) spreadsheet.", "homepage": "https://www.gaia-gis.it/fossil/freexl/index"}, "FriBidi": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"FriBidi/1.0.12-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FriBidi/1.0.12-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "FriBidi/1.0.13-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Free Implementation of the Unicode Bidirectional Algorithm.", "homepage": "https://github.com/fribidi/fribidi"}, "GATK": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GATK/4.5.0.0-GCCcore-12.3.0-Java-17": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Genome Analysis Toolkit or GATK is a software package developed at the Broad Institute to analyse next-generation resequencing data. The toolkit offers a wide variety of tools, with a primary focus on variant discovery and genotyping as well as strong emphasis on data quality assurance. Its robust architecture, powerful processing engine and high-performance computing features make it capable of taking on projects of any size.", "homepage": "https://www.broadinstitute.org/gatk/"}, "gawk": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"gawk/5.3.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The awk utility interprets a special-purpose programming language that makes it possible to handlesimple data-reformatting jobs with just a few lines of code.", "homepage": "https://www.gnu.org/software/gawk"}, "Gblocks": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Gblocks/0.91b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Selection of conserved blocks from multiple alignments for their use in phylogenetic analysis", "homepage": "https://www.biologiaevolutiva.org/jcastresana/Gblocks.html"}, "gc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"gc/8.2.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Boehm-Demers-Weiser conservative garbage collector can be used as agarbage collecting replacement for C malloc or C++ new.", "homepage": "https://hboehm.info/gc/"}, "GCC": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GCC/12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GCC/12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GCC/13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...).", "homepage": "https://gcc.gnu.org/"}, "GCCcore": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GCCcore/12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GCCcore/12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GCCcore/13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...).", "homepage": "https://gcc.gnu.org/"}, "GDAL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GDAL/3.6.2-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GDAL/3.7.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GDAL/3.9.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for data translation and processing.", "homepage": "https://www.gdal.org"}, "GDB": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GDB/13.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The GNU Project Debugger", "homepage": "https://www.gnu.org/software/gdb/gdb.html"}, "Gdk-Pixbuf": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Gdk-Pixbuf/2.42.10-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Gdk-Pixbuf/2.42.10-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Gdk-Pixbuf/2.42.10-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Gdk Pixbuf is a toolkit for image loading and pixel buffer manipulation. It is used by GTK+ 2 and GTK+ 3 to load and manipulate images. In the past it was distributed as part of GTK+ 2 but it was split off into a separate package in preparation for the change to GTK+ 3.", "homepage": "https://docs.gtk.org/gdk-pixbuf/"}, "GDRCopy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GDRCopy/2.3.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GDRCopy/2.4-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A low-latency GPU memory copy library based on NVIDIA GPUDirect RDMA technology.", "homepage": "https://github.com/NVIDIA/gdrcopy"}, "gengetopt": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"gengetopt/2.23-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Gengetopt is a tool to write command line option parsing code for C programs.", "homepage": "https://www.gnu.org/software/gengetopt/gengetopt.html"}, "GenomeTools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GenomeTools/1.6.2-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A comprehensive software library for efficient processing of structured genome annotations.", "homepage": "http://genometools.org"}, "geopandas": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"geopandas/0.14.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "geopandas-0.14.2, mapclassify-2.6.1"}}, "description": "GeoPandas is a project to add support for geographic data to pandas objects.It currently implements GeoSeries and GeoDataFrame types which are subclasses of pandas.Seriesand pandas.DataFrame respectively. GeoPandas objects can act on shapely geometry objects andperform geometric operations.", "homepage": "https://geopandas.org"}, "GEOS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GEOS/3.11.1-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GEOS/3.12.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GEOS/3.12.1-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS)", "homepage": "https://trac.osgeo.org/geos"}, "gfbf": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"gfbf/2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "gfbf/2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "gfbf/2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GNU Compiler Collection (GCC) based compiler toolchain, including FlexiBLAS (BLAS and LAPACK support) and (serial) FFTW.", "homepage": "(none)"}, "Ghostscript": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Ghostscript/10.0.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Ghostscript/10.01.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Ghostscript/10.02.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Ghostscript is a versatile processor for PostScript data with the ability to render PostScript to different targets. It used to be part of the cups printing stack, but is no longer used for that.", "homepage": "https://ghostscript.com"}, "giflib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"giflib/5.2.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "giflib/5.2.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "giflib/5.2.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "giflib is a library for reading and writing gif images.It is API and ABI compatible with libungif which was in wide use whilethe LZW compression algorithm was patented.", "homepage": "http://giflib.sourceforge.net/"}, "Ginkgo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Ginkgo/1.9.0-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Ginkgo is a high-performance numerical linear algebra library witha focus on the solution of sparse linear systems. It also has support for popular GPUs(NVIDIA, AMD and Intel) with their native programming models, aiming to maximize the attainableperformance. It also has distributed support with MPI and can be used to run solvers and preconditionerson large scale supercomputers. With a focus on sustainable software development, it has comprehensive unittests, usage examples and continuous integration setups to ensure robustness. It also has been integratedinto many popular applications such as MFEM, OpenCARP, deal.ii, OpenFOAM etc.", "homepage": "https://github.com/ginkgo-project/ginkgo"}, "git": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"git/2.38.1-GCCcore-12.2.0-nodocs": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "git/2.41.0-GCCcore-12.3.0-nodocs": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "git/2.42.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Git is a free and open source distributed version control system designedto handle everything from small to very large projects with speed and efficiency.", "homepage": "https://git-scm.com"}, "GitPython": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GitPython/3.1.40-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "gitdb-4.0.11, GitPython-3.1.40, smmap-5.0.1"}, "GitPython/3.1.42-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "gitdb-4.0.11, GitPython-3.1.42, smmap-5.0.1"}}, "description": "GitPython is a python library used to interact with Git repositories", "homepage": "https://gitpython.readthedocs.org"}, "GL2PS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GL2PS/1.4.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GL2PS/1.4.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GL2PS: an OpenGL to PostScript printing library", "homepage": "https://www.geuz.org/gl2ps/"}, "glew": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"glew/2.2.0-GCCcore-12.3.0-osmesa": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The OpenGL Extension Wrangler Library (GLEW) is a cross-platform open-sourceC/C++ extension loading library. GLEW provides efficient run-time mechanismsfor determining which OpenGL extensions are supported on the target platform.", "homepage": "https://github.com/nigels-com/glew"}, "glib-networking": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"glib-networking/2.72.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Network extensions for GLib", "homepage": "https://gitlab.gnome.org/GNOME/glib-networking"}, "GLib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GLib/2.75.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GLib/2.77.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GLib/2.78.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GLib is one of the base libraries of the GTK+ project", "homepage": "https://www.gtk.org/"}, "GLPK": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GLPK/5.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GLPK/5.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GLPK/5.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems. It is a set of routines written in ANSI C and organized in the form of a callable library.", "homepage": "https://www.gnu.org/software/glpk/"}, "GMP": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GMP/6.2.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GMP/6.2.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GMP/6.3.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers.", "homepage": "https://gmplib.org/"}, "gmpy2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"gmpy2/2.1.5-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "gmpy2/2.1.5-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x", "homepage": "https://github.com/aleaxit/gmpy"}, "gmsh": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"gmsh/4.12.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Gmsh is a 3D finite element grid generator with a build-in CAD engine and post-processor.", "homepage": "https://gmsh.info/"}, "gnuplot": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"gnuplot/5.4.6-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "gnuplot/5.4.8-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Portable interactive, function plotting utility", "homepage": "http://gnuplot.sourceforge.net"}, "GnuTLS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GnuTLS/3.7.8-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures. It is aimed to be portable and efficient with focus on security and interoperability.", "homepage": "https://www.gnutls.org"}, "GObject-Introspection": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GObject-Introspection/1.74.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GObject-Introspection/1.76.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GObject-Introspection/1.78.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GObject introspection is a middleware layer between C libraries (using GObject) and language bindings. The C library can be scanned at compile time and generate a metadata file, in addition to the actual native C library. Then at runtime, language bindings can read this metadata and automatically provide bindings to call into the C library.", "homepage": "https://gi.readthedocs.io/en/latest/"}, "gompi": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"gompi/2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "gompi/2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "gompi/2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support.", "homepage": "(none)"}, "googletest": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"googletest/1.12.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "googletest/1.13.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "googletest/1.14.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Google's framework for writing C++ tests on a variety of platforms", "homepage": "https://github.com/google/googletest"}, "Graphene": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Graphene/1.10.8-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Graphene/1.10.8-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Graphene/1.10.8-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Graphene is a thin layer of types for graphic libraries", "homepage": "https://ebassi.github.io/graphene/"}, "GraphicsMagick": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GraphicsMagick/1.3.45-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GraphicsMagick is the swiss army knife of image processing.", "homepage": "http://www.graphicsmagick.org/"}, "graphite2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"graphite2/1.3.14-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "graphite2/1.3.14-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "graphite2/1.3.14-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Graphite is a \"smart font\" system developed specifically to handle the complexities of lesser-known languages of the world.", "homepage": "https://scripts.sil.org/cms/scripts/page.php?site_id=projects&item_id=graphite_home"}, "Graphviz": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Graphviz/8.1.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains.", "homepage": "https://www.graphviz.org/"}, "GRASS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GRASS/8.4.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Geographic Resources Analysis Support System - used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization", "homepage": "https://grass.osgeo.org"}, "Greenlet": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Greenlet/3.0.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The greenlet package is a spin-off of Stackless, a version of CPython thatsupports micro-threads called \"tasklets\". Tasklets run pseudo-concurrently (typically in a singleor a few OS-level threads) and are synchronized with data exchanges on \"channels\".A \"greenlet\", on the other hand, is a still more primitive notion of micro-thread with no implicitscheduling; coroutines, in other words. This is useful when you want to control exactly when your code runs.", "homepage": "https://github.com/python-greenlet/greenlet"}, "groff": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"groff/1.22.4-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "groff/1.22.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Groff (GNU troff) is a typesetting system that reads plain text mixed with formatting commands and produces formatted output.", "homepage": "https://www.gnu.org/software/groff"}, "GROMACS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GROMACS/2024.1-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "gmxapi-0.5.0"}, "GROMACS/2024.3-foss-2023b-PLUMED-2.9.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "gmxapi-0.4.2"}, "GROMACS/2024.3-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "gmxapi-0.4.2"}, "GROMACS/2024.4-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "gmxapi-0.4.2"}}, "description": "GROMACS is a versatile package to perform molecular dynamics, i.e. simulate theNewtonian equations of motion for systems with hundreds to millions ofparticles.This is a CPU only build, containing both MPI and threadMPI binariesfor both single and double precision.It also contains the gmxapi extension for the single precision MPI build.", "homepage": "https://www.gromacs.org"}, "grpcio": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"grpcio/1.57.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "grpcio-1.57.0"}}, "description": "gRPC is a modern, open source, high-performance remote procedure call (RPC)framework that can run anywhere. gRPC enables client and server applications tocommunicate transparently, and simplifies the building of connected systems.", "homepage": "https://grpc.io/"}, "GSL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GSL/2.7-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GSL/2.7-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GSL/2.7-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. The library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting.", "homepage": "https://www.gnu.org/software/gsl/"}, "GST-plugins-bad": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GST-plugins-bad/1.22.5-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing.", "homepage": "https://gstreamer.freedesktop.org/"}, "GST-plugins-base": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GST-plugins-base/1.22.1-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GST-plugins-base/1.22.5-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GST-plugins-base/1.24.8-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing.", "homepage": "https://gstreamer.freedesktop.org/"}, "GStreamer": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GStreamer/1.22.1-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GStreamer/1.22.5-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GStreamer/1.24.8-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing.", "homepage": "https://gstreamer.freedesktop.org/"}, "gtk-doc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"gtk-doc/1.34.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Documentation tool for public library API", "homepage": "https://gitlab.gnome.org/GNOME/gtk-doc"}, "GTK3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GTK3/3.24.35-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GTK3/3.24.37-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "GTK3/3.24.39-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GTK+ is the primary library used to construct user interfaces in GNOME. It provides all the user interface controls, or widgets, used in a common graphical application. Its object-oriented API allows you to construct user interfaces without dealing with the low-level details of drawing and device interaction.", "homepage": "https://developer.gnome.org/gtk3/stable/"}, "GTK4": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GTK4/4.13.1-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GTK+ is the primary library used to construct user interfaces in GNOME. It provides all the user interface controls, or widgets, used in a common graphical application. Its object-oriented API allows you to construct user interfaces without dealing with the low-level details of drawing and device interaction.", "homepage": "https://docs.gtk.org/gtk4/"}, "GTS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"GTS/0.7.6-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GTS stands for the GNU Triangulated Surface Library.It is an Open Source Free Software Library intended to provide a set of usefulfunctions to deal with 3D surfaces meshed with interconnected triangles.", "homepage": "http://gts.sourceforge.net/"}, "Guile": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Guile/3.0.9-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Guile is a programming language, designed to help programmers create flexible applications that can be extended by users or other programmers with plug-ins, modules, or scripts.", "homepage": "https://www.gnu.org/software/guile/"}, "gzip": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"gzip/1.12-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "gzip/1.12-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "gzip/1.13-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "gzip (GNU zip) is a popular data compression program as a replacement for compress", "homepage": "https://www.gnu.org/software/gzip/"}, "h5netcdf": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"h5netcdf/1.2.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "h5netcdf-1.2.0"}}, "description": "A Python interface for the netCDF4 file-format that reads and writes local orremote HDF5 files directly via h5py or h5pyd, without relying on the UnidatanetCDF library.", "homepage": "https://h5netcdf.org/"}, "h5py": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"h5py/3.8.0-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "h5py/3.9.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "h5py/3.11.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "HDF5 for Python (h5py) is a general-purpose Python interface to the Hierarchical Data Format library, version 5. HDF5 is a versatile, mature scientific software library designed for the fast, flexible storage of enormous amounts of data.", "homepage": "https://www.h5py.org/"}, "HarfBuzz": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"HarfBuzz/5.3.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "HarfBuzz/5.3.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "HarfBuzz/8.2.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "HarfBuzz is an OpenType text shaping engine.", "homepage": "https://www.freedesktop.org/wiki/Software/HarfBuzz"}, "hatch-jupyter-builder": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"hatch-jupyter-builder/0.9.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "hatch_jupyter_builder-0.9.1, hatch_nodejs_version-0.3.2"}}, "description": "Hatch Jupyter Builder is a plugin for the hatchling Python build backend. It isprimarily targeted for package authors who are providing JavaScript as part oftheir Python packages.Typical use cases are Jupyter Lab Extensions and Jupyter Widgets.", "homepage": "https://hatch-jupyter-builder.readthedocs.io"}, "hatchling": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"hatchling/1.18.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "editables-0.3, hatch-requirements-txt-0.4.1, hatch_fancy_pypi_readme-23.1.0, hatch_vcs-0.3.0, hatchling-1.18.0, pathspec-0.11.1, pluggy-1.2.0, trove_classifiers-2023.5.24"}, "hatchling/1.18.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "editables-0.5, hatch-requirements-txt-0.4.1, hatch_fancy_pypi_readme-23.1.0, hatch_vcs-0.3.0, hatchling-1.18.0, pathspec-0.11.2, pluggy-1.3.0, trove_classifiers-2023.10.18"}}, "description": "Extensible, standards compliant build backend used by Hatch,a modern, extensible Python project manager.", "homepage": "https://hatch.pypa.io"}, "HDBSCAN": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"HDBSCAN/0.8.38.post1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The hdbscan library is a suite of tools to use unsupervised learning to find clusters, or dense regions, of a dataset. The primary algorithm is HDBSCAN* as proposed by Campello, Moulavi, and Sander. The library provides a high performance implementation of this algorithm, along with tools for analysing the resulting clustering.", "homepage": "http://hdbscan.readthedocs.io/en/latest/"}, "HDF": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"HDF/4.2.15-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "HDF/4.2.16-2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "HDF/4.2.16-2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "HDF (also known as HDF4) is a library and multi-object file format for storing and managing data between machines.", "homepage": "https://www.hdfgroup.org/products/hdf4/"}, "HDF5": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"HDF5/1.14.0-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "HDF5/1.14.0-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "HDF5/1.14.3-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "HDF5 is a data model, library, and file format for storing and managing data. It supports an unlimited variety of datatypes, and is designed for flexible and efficient I/O and for high volume and complex data.", "homepage": "https://portal.hdfgroup.org/display/support"}, "HeFFTe": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"HeFFTe/2.4.1-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Highly Efficient FFT for Exascale (HeFFTe) library", "homepage": "https://icl.utk.edu/fft"}, "HepMC3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"HepMC3/3.2.6-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "HepMC is a standard for storing Monte Carlo event data.", "homepage": "http://hepmc.web.cern.ch/hepmc/"}, "hic-straw": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"hic-straw/1.3.1-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Straw is a library which allows rapid streaming of contact data from .hic files.", "homepage": "https://github.com/aidenlab/straw"}, "Highway": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Highway/1.0.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Highway/1.0.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Highway is a C++ library for SIMD (Single Instruction, Multiple Data), i.e. applying the sameoperation to 'lanes'.", "homepage": "https://github.com/google/highway"}, "hiredis": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"hiredis/1.2.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Hiredis is a minimalistic C client library for the Redis database.It is minimalistic because it just adds minimal support for the protocol,but at the same time it uses a high level printf-alike API in order tomake it much higher level than otherwise suggested by its minimal code baseand the lack of explicit bindings for every Redis command.", "homepage": "https://github.com/redis/hiredis"}, "HMMER": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"HMMER/3.4-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "HMMER is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other sequence alignment and database search tools based on older scoring methodology, HMMER aims to be significantly more accurate and more able to detect remote homologs because of the strength of its underlying mathematical models. In the past, this strength came at significant computational expense, but in the new HMMER3 project, HMMER is now essentially as fast as BLAST.", "homepage": "http://hmmer.org/"}, "HPL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"HPL/2.3-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the High Performance Computing Linpack Benchmark.", "homepage": "https://www.netlib.org/benchmark/hpl/"}, "HTSlib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"HTSlib/1.17-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "HTSlib/1.18-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "HTSlib/1.19.1-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A C library for reading/writing high-throughput sequencing data. This package includes the utilities bgzip and tabix", "homepage": "https://www.htslib.org/"}, "hunspell": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"hunspell/1.7.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Hunspell is a spell checker and morphological analyzerlibrary and program designed for languages with rich morphology andcomplex word compounding or character encoding.", "homepage": "https://hunspell.github.io/"}, "hwloc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"hwloc/2.8.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "hwloc/2.9.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "hwloc/2.9.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Portable Hardware Locality (hwloc) software package provides a portable abstraction (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various system attributes such as cache and memory information as well as the locality of I/O devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering information about modern computing hardware so as to exploit it accordingly and efficiently.", "homepage": "https://www.open-mpi.org/projects/hwloc/"}, "hypothesis": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"hypothesis/6.68.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "hypothesis/6.82.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "hypothesis/6.90.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Hypothesis is an advanced testing library for Python. It lets you write tests which are parametrized by a source of examples, and then generates simple and comprehensible examples that make your tests fail. This lets you find more bugs in your code with less work.", "homepage": "https://github.com/HypothesisWorks/hypothesis"}, "Hypre": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Hypre/2.29.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Hypre/2.31.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Hypre is a library for solving large, sparse linear systems of equations on massively parallel computers. The problems of interest arise in the simulation codes being developed at LLNL and elsewhere to study physical phenomena in the defense, environmental, energy, and biological sciences.", "homepage": "https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods"}, "ICU": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ICU/72.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ICU/73.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ICU/74.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ICU is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization support for software applications.", "homepage": "https://icu.unicode.org"}, "IDG": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"IDG/1.2.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Image Domain Gridding (IDG) is a fast method for convolutional resampling (gridding/degridding)of radio astronomical data (visibilities). Direction dependent effects (DDEs) or A-tems can be appliedin the gridding process.The algorithm is described in \"Image Domain Gridding: a fast method for convolutional resampling of visibilities\",Van der Tol (2018).The implementation is described in \"Radio-astronomical imaging on graphics processors\", Veenboer (2020).Please cite these papers in publications using IDG.", "homepage": "https://idg.readthedocs.io/"}, "ImageMagick": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ImageMagick/7.1.0-53-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ImageMagick/7.1.1-15-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ImageMagick/7.1.1-34-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ImageMagick is a software suite to create, edit, compose, or convert bitmap images", "homepage": "https://www.imagemagick.org/"}, "Imath": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Imath/3.1.6-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Imath/3.1.7-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Imath/3.1.9-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics", "homepage": "https://imath.readthedocs.io/en/latest/"}, "ipympl": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ipympl/0.9.3-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "ipympl-0.9.3"}}, "description": "Leveraging the Jupyter interactive widgets framework, ipympl enables theinteractive features of matplotlib in the Jupyter notebook and in JupyterLab.Besides, the figure canvas element is a proper Jupyter interactive widget whichcan be positioned in interactive widget layouts.", "homepage": "https://matplotlib.org/ipympl"}, "IPython": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"IPython/8.14.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "asttokens-2.2.1, backcall-0.2.0, executing-1.2.0, ipython-8.14.0, jedi-0.19.0, matplotlib-inline-0.1.6, parso-0.8.3, pickleshare-0.7.5, prompt_toolkit-3.0.39, pure_eval-0.2.2, stack_data-0.6.2, traitlets-5.9.0"}, "IPython/8.17.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "asttokens-2.4.1, backcall-0.2.0, executing-2.0.1, ipython-8.17.2, matplotlib-inline-0.1.6, pickleshare-0.7.5, prompt_toolkit-3.0.41, pure_eval-0.2.2, stack_data-0.6.3, traitlets-5.13.0"}}, "description": "IPython provides a rich architecture for interactive computing with: Powerful interactive shells (terminal and Qt-based). A browser-based notebook with support for code, text, mathematical expressions, inline plots and other rich media. Support for interactive data visualization and use of GUI toolkits. Flexible, embeddable interpreters to load into your own projects. Easy to use, high performance tools for parallel computing.", "homepage": "https://ipython.org/index.html"}, "IQ-TREE": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"IQ-TREE/2.3.5-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Efficient phylogenomic software by maximum likelihood", "homepage": "http://www.iqtree.org/"}, "ISA-L": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ISA-L/2.30.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ISA-L/2.30.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ISA-L/2.31.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Intelligent Storage Acceleration Library", "homepage": "https://github.com/intel/isa-l"}, "ISL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ISL/0.26-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "isl is a library for manipulating sets and relations of integer points bounded by linear constraints.", "homepage": "https://libisl.sourceforge.io"}, "ITSTool": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ITSTool/2.0.7-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ITS Tool allows you to translate your XML documents with PO files", "homepage": "http://itstool.org/"}, "Jansson": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Jansson/2.14-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Jansson is a C library for encoding, decoding and manipulating JSON data. Its main features and design principles are: * Simple and intuitive API and data model * Comprehensive documentation * No dependencies on other libraries * Full Unicode support (UTF-8) * Extensive test suite", "homepage": "https://www.digip.org/jansson/"}, "JasPer": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"JasPer/4.0.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "JasPer/4.0.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "JasPer/4.0.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The JasPer Project is an open-source initiative to provide a free software-based reference implementation of the codec specified in the JPEG-2000 Part-1 standard.", "homepage": "https://www.ece.uvic.ca/~frodo/jasper/"}, "Java": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Java/11.0.20": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Java/11(@Java/11.0.27)": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Java/11.0.27": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Java/17.0.6": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Java/17(@Java/17.0.15)": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Java/17.0.15": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Java/21.0.5": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Java/21(@Java/21.0.7)": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Java/21.0.7": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}}, "jbigkit": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"jbigkit/2.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "jbigkit/2.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "jbigkit/2.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "JBIG-KIT is a software implementation of the JBIG1 data compression standard (ITU-T T.82), which was designed for bi-level image data, such as scanned documents.", "homepage": "https://www.cl.cam.ac.uk/~mgk25/jbigkit/"}, "jedi": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"jedi/0.19.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "jedi-0.19.0, parso-0.8.3"}, "jedi/0.19.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "jedi-0.19.1, parso-0.8.3"}}, "description": "Jedi - an awesome autocompletion, static analysis and refactoring library for Python.", "homepage": "https://github.com/davidhalter/jedi"}, "jemalloc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"jemalloc/5.3.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "jemalloc/5.3.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support.", "homepage": "http://jemalloc.net"}, "jq": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"jq/1.6-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "jq is a lightweight and flexible command-line JSON processor.", "homepage": "https://stedolan.github.io/jq/"}, "json-c": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"json-c/0.16-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "json-c/0.16-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "json-c/0.17-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSONobjects.", "homepage": "https://github.com/json-c/json-c"}, "json-fortran": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"json-fortran/9.0.2-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "json-fortran/9.0.2-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "JSON-Fortran: A Modern Fortran JSON API", "homepage": "https://github.com/jacobwilliams/json-fortran"}, "JsonCpp": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"JsonCpp/1.9.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "JsonCpp is a C++ library that allows manipulating JSON values, including serialization and deserialization to and from strings. It can also preserve existing comment in unserialization/serialization steps, making it a convenient format to store user input files.", "homepage": "https://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.html"}, "Judy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Judy/1.0.5-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Judy/1.0.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A C library that implements a dynamic array.", "homepage": "http://judy.sourceforge.net/"}, "jupyter-server": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"jupyter-server/2.7.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "anyio-3.7.1, argon2-cffi-bindings-21.2.0, argon2_cffi-23.1.0, arrow-1.2.3, bleach-6.0.0, comm-0.1.4, debugpy-1.6.7.post1, defusedxml-0.7.1, deprecation-2.1.0, fastjsonschema-2.18.0, hatch_jupyter_builder-0.8.3, hatch_nodejs_version-0.3.1, ipykernel-6.25.1, ipython_genutils-0.2.0, ipywidgets-8.1.0, jsonschema-4.18.0, jsonschema_specifications-2023.7.1, jupyter_client-8.3.0, jupyter_core-5.3.1, jupyter_events-0.7.0, jupyter_packaging-0.12.3, jupyter_server-2.7.2, jupyter_server_terminals-0.4.4, jupyterlab_pygments-0.2.2, jupyterlab_widgets-3.0.8, mistune-3.0.1, nbclient-0.8.0, nbconvert-7.7.4, nbformat-5.9.2, nest_asyncio-1.5.7, notebook_shim-0.2.3, overrides-7.4.0, pandocfilters-1.5.0, prometheus_client-0.17.1, python-json-logger-2.0.7, referencing-0.30.2, rfc3339_validator-0.1.4, rfc3986_validator-0.1.1, rpds_py-0.9.2, Send2Trash-1.8.2, sniffio-1.3.0, terminado-0.17.1, tinycss2-1.2.1, websocket-client-1.6.1, widgetsnbextension-4.0.8"}}, "description": "The Jupyter Server provides the backend (i.e. the core services, APIs, and RESTendpoints) for Jupyter web applications like Jupyter notebook, JupyterLab, andVoila.", "homepage": "https://jupyter.org/"}, "JupyterLab": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"JupyterLab/4.0.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "async-lru-2.0.4, json5-0.9.14, jupyter-lsp-2.2.0, jupyterlab-4.0.5, jupyterlab_server-2.24.0"}}, "description": "JupyterLab is the next-generation user interface for Project Jupyter offering all the familiar building blocks of the classic Jupyter Notebook (notebook, terminal, text editor, file browser, rich outputs, etc.) in a flexible and powerful user interface. JupyterLab will eventually replace the classic Jupyter Notebook.", "homepage": "https://jupyter.org/"}, "jupyterlmod": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"jupyterlmod/4.0.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "jupyterlmod-4.0.3"}}, "description": "Jupyter interactive notebook server extension that allows users to interact withenvironment modules before launching kernels. The extension uses Lmod's Pythoninterface to accomplish module-related tasks like loading, unloading, savingcollections, etc.", "homepage": "https://github.com/cmd-ntrf/jupyter-lmod"}, "JupyterNotebook": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"JupyterNotebook/7.0.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Jupyter Notebook is the original web application for creating and sharing computational documents. It offers a simple, streamlined, document-centric experience.", "homepage": "https://jupyter.org/"}, "KaHIP": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"KaHIP/3.14-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "KaHIP/3.16-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The graph partitioning framework KaHIP -- Karlsruhe High Quality Partitioning.", "homepage": "https://kahip.github.io/"}, "kim-api": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"kim-api/2.3.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "kim-api/2.3.0-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Open Knowledgebase of Interatomic Models.KIM is an API and OpenKIM is a collection of interatomic models (potentials) foratomistic simulations. This is a library that can be used by simulation programsto get access to the models in the OpenKIM database.This EasyBuild only installs the API, the models can be installed with thepackage openkim-models, or the user can install them manually by running kim-api-collections-management install user MODELNAMEor kim-api-collections-management install user OpenKIMto install them all.", "homepage": "https://openkim.org/"}, "KronaTools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"KronaTools/2.8.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "KronaTools/2.8.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Krona Tools is a set of scripts to create Krona charts from several Bioinformatics tools as well as from text and XML files.", "homepage": "https://github.com/marbl/Krona/wiki/KronaTools"}, "LAME": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LAME/3.100-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LAME/3.100-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LAME/3.100-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL.", "homepage": "http://lame.sourceforge.net/"}, "LAMMPS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LAMMPS/2Aug2023_update2-foss-2023a-kokkos": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LAMMPS/29Aug2024-foss-2023b-kokkos": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "LAMMPS is a classical molecular dynamics code, and an acronymfor Large-scale Atomic/Molecular Massively Parallel Simulator. LAMMPS haspotentials for solid-state materials (metals, semiconductors) and soft matter(biomolecules, polymers) and coarse-grained or mesoscopic systems. It can beused to model atoms or, more generically, as a parallel particle simulator atthe atomic, meso, or continuum scale. LAMMPS runs on single processors or inparallel using message-passing techniques and a spatial-decomposition of thesimulation domain. The code is designed to be easy to modify or extend with newfunctionality.", "homepage": "https://www.lammps.org"}, "LERC": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LERC/4.0.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LERC/4.0.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LERC/4.0.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "LERC is an open-source image or raster format which supports rapid encoding and decodingfor any pixel type (not just RGB or Byte). Users set the maximum compression error per pixel while encoding,so the precision of the original input image is preserved (within user defined error bounds).", "homepage": "https://github.com/Esri/lerc"}, "LHAPDF": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LHAPDF/6.5.4-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Les Houches Parton Density FunctionLHAPDF is the standard tool for evaluating parton distribution functions (PDFs) in high-energy physics.", "homepage": "http://lhapdf.hepforge.org/"}, "libaec": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libaec/1.0.6-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libaec/1.0.6-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libaec provides fast lossless compression of 1 up to 32 bit wide signed or unsigned integers(samples). The library achieves best results for low entropy data as often encountered in space imaginginstrument data or numerical model output from weather or climate simulations. While floating point representationsare not directly supported, they can also be efficiently coded by grouping exponents and mantissa.", "homepage": "https://gitlab.dkrz.de/k202009/libaec"}, "libaio": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libaio/0.3.113-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libaio/0.3.113-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Asynchronous input/output library that uses the kernels native interface.", "homepage": "https://pagure.io/libaio"}, "libarchive": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libarchive/3.6.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libarchive/3.6.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libarchive/3.7.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Multi-format archive and compression library", "homepage": "https://www.libarchive.org/"}, "libavif": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libavif/1.0.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This library aims to be a friendly, portable C implementation of the AV1 Image File Format,as described here: https://aomediacodec.github.io/av1-avif/", "homepage": "https://github.com/AOMediaCodec/libavif"}, "libcerf": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libcerf/2.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libcerf/2.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "libcerf is a self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions.", "homepage": "https://jugit.fz-juelich.de/mlz/libcerf"}, "libcint": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libcint/5.4.0-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "libcint is an open source library for analytical Gaussian integrals.", "homepage": "https://github.com/sunqm/libcint"}, "libdap": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libdap/3.20.11-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A C++ SDK which contains an implementation of DAP 2.0 and DAP4.0. This includes both Client- and Server-side support classes.", "homepage": "https://www.opendap.org/software/libdap"}, "libde265": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libde265/1.0.15-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libde265/1.0.15-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "libde265 is an open source implementation of the h.265 video codec", "homepage": "https://github.com/strukturag/libde265"}, "libdeflate": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libdeflate/1.15-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libdeflate/1.18-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libdeflate/1.19-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Heavily optimized library for DEFLATE/zlib/gzip compression and decompression.", "homepage": "https://github.com/ebiggers/libdeflate"}, "libdrm": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libdrm/2.4.114-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libdrm/2.4.115-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libdrm/2.4.117-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Direct Rendering Manager runtime library.", "homepage": "https://dri.freedesktop.org"}, "libdwarf": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libdwarf/0.9.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The DWARF Debugging Information Format is of interest to programmers working on compilersand debuggers (and anyone interested in reading or writing DWARF information))", "homepage": "https://www.prevanders.net/dwarf.html"}, "libepoxy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libepoxy/1.5.10-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libepoxy/1.5.10-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libepoxy/1.5.10-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Epoxy is a library for handling OpenGL function pointer management for you", "homepage": "https://github.com/anholt/libepoxy"}, "libev": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libev/4.33-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A full-featured and high-performance (see benchmark)event loop that is loosely modelled after libevent, but without itslimitations and bugs. It is used in GNU Virtual Private Ethernet,rxvt-unicode, auditd, the Deliantra MORPG Server and Client, and manyother programs.", "homepage": "http://software.schmorp.de/pkg/libev.html"}, "libevent": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libevent/2.1.12-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libevent/2.1.12-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libevent/2.1.12-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. Furthermore, libevent also support callbacks due to signals or regular timeouts.", "homepage": "https://libevent.org/"}, "libfabric": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libfabric/1.16.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libfabric/1.18.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libfabric/1.19.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libfabric is a core component of OFI. It is the library that defines and exportsthe user-space API of OFI, and is typically the only software that applicationsdeal with directly. It works in conjunction with provider libraries, which areoften integrated directly into libfabric.", "homepage": "https://ofiwg.github.io/libfabric/"}, "libfdf": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libfdf/0.5.1-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "LibFDF is the official implementation of the FDF specifications for use in client codes.", "homepage": "https://gitlab.com/siesta-project/libraries/libfdf"}, "libffi": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libffi/3.4.4-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libffi/3.4.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libffi/3.4.4-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time.", "homepage": "https://sourceware.org/libffi/"}, "libgcrypt": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libgcrypt/1.10.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libgcrypt is a general purpose cryptographic library originally based on code from GnuPG", "homepage": "https://gnupg.org/related_software/libgcrypt/index.html"}, "libgd": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libgd/2.3.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libgd/2.3.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GD is an open source code library for the dynamic creation of images by programmers.", "homepage": "https://libgd.github.io"}, "libgeotiff": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libgeotiff/1.7.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libgeotiff/1.7.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libgeotiff/1.7.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Library for reading and writing coordinate system information from/to GeoTIFF files", "homepage": "https://directory.fsf.org/wiki/Libgeotiff"}, "libgit2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libgit2/1.5.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libgit2/1.7.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libgit2/1.7.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "libgit2 is a portable, pure C implementation of the Git core methods provided as a re-entrantlinkable library with a solid API, allowing you to write native speed custom Git applications in any languagewhich supports C bindings.", "homepage": "https://libgit2.org/"}, "libGLU": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libGLU/9.0.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libGLU/9.0.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libGLU/9.0.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The OpenGL Utility Library (GLU) is a computer graphics library for OpenGL.", "homepage": "https://mesa.freedesktop.org/archive/glu/"}, "libglvnd": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libglvnd/1.6.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libglvnd/1.6.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libglvnd/1.7.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "libglvnd is a vendor-neutral dispatch layer for arbitrating OpenGL API calls between multiple vendors.", "homepage": "https://gitlab.freedesktop.org/glvnd/libglvnd"}, "libgpg-error": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libgpg-error/1.48-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libgpg-error is a small library that defines common error values for all GnuPG components.", "homepage": "https://gnupg.org/related_software/libgpg-error/index.html"}, "libGridXC": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libGridXC/2.0.2-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A library to compute the exchange and correlation energy and potential in spherical (i.e. atoms) or periodic systems.", "homepage": "https://gitlab.com/siesta-project/libraries/libgridxc"}, "libheif": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libheif/1.17.6-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libheif/1.19.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "libheif is an HEIF and AVIF file format decoder and encoder", "homepage": "https://github.com/strukturag/libheif"}, "libiconv": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libiconv/1.17-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libiconv/1.17-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libiconv/1.17-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libiconv converts from one character encoding to another through Unicode conversion", "homepage": "https://www.gnu.org/software/libiconv"}, "libidn2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libidn2/2.3.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libidn2/2.3.7-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libidn2 implements the revised algorithm for internationalized domain names called IDNA2008/TR46.", "homepage": "http://www.gnu.org/software/libidn2"}, "Libint": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Libint/2.7.2-GCC-12.3.0-lmax-6-cp2k": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libint library is used to evaluate the traditional (electron repulsion) and certain novel two-body matrix elements (integrals) over Cartesian Gaussian functions used in modern atomic and molecular theory.", "homepage": "https://github.com/evaleev/libint"}, "libjpeg-turbo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libjpeg-turbo/2.1.4-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libjpeg-turbo/2.1.5.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libjpeg-turbo/3.0.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to accelerate baseline JPEG compression and decompression. libjpeg is a library that implements JPEG image encoding, decoding and transcoding.", "homepage": "https://sourceforge.net/projects/libjpeg-turbo/"}, "libogg": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libogg/1.3.5-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libogg/1.3.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libogg/1.3.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Ogg is a multimedia container format, and the native file and stream format for the Xiph.orgmultimedia codecs.", "homepage": "https://xiph.org/ogg/"}, "libopus": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libopus/1.3.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libopus/1.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libopus/1.5.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Opus is a totally open, royalty-free, highly versatile audio codec. Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype\u2019s SILK codec and Xiph.Org\u2019s CELT codec.", "homepage": "https://www.opus-codec.org/"}, "libpciaccess": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libpciaccess/0.17-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libpciaccess/0.17-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libpciaccess/0.17-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Generic PCI access library.", "homepage": "https://cgit.freedesktop.org/xorg/lib/libpciaccess/"}, "libpng": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libpng/1.6.38-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libpng/1.6.39-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libpng/1.6.40-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "libpng is the official PNG reference library", "homepage": "http://www.libpng.org/pub/png/libpng.html"}, "libpsl": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libpsl/0.21.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "C library for the Public Suffix List", "homepage": "https://rockdaboot.github.io/libpsl"}, "libPSML": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libPSML/2.1.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A library to handle pseudopotentials in PSML format", "homepage": "https://gitlab.com/siesta-project/libraries/libpsml"}, "librosa": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"librosa/0.10.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "audioread-3.0.1, lazy_loader-0.3, librosa-0.10.1, resampy-0.4.3, soundfile-0.12.1, soxr-0.3.7"}}, "description": "Audio and music processing in Python", "homepage": "https://librosa.org/"}, "librttopo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"librttopo/1.1.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The RT Topology Library exposes an API to create andmanage standard (ISO 13249 aka SQL/MM) topologies using user-provideddata stores.", "homepage": "https://git.osgeo.org/gitea/rttopo/librttopo"}, "libsndfile": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libsndfile/1.2.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libsndfile/1.2.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libsndfile/1.2.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface.", "homepage": "http://www.mega-nerd.com/libsndfile"}, "libsodium": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libsodium/1.0.18-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libsodium/1.0.19-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Sodium is a modern, easy-to-use software library for encryption, decryption, signatures, password hashing and more.", "homepage": "https://doc.libsodium.org/"}, "LibSoup": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LibSoup/3.6.1-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "libsoup is an HTTP client/server library for GNOME. Ituses GObjects and the glib main loop, to integrate well with GNOMEapplications, and also has a synchronous API, for use in threadedapplications.", "homepage": "https://wiki.gnome.org/Projects/libsoup"}, "libspatialindex": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libspatialindex/1.9.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "C++ implementation of R*-tree, an MVR-tree and a TPR-tree with C API", "homepage": "https://libspatialindex.org"}, "libspatialite": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libspatialite/5.1.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities.", "homepage": "https://www.gaia-gis.it/fossil/libspatialite/home"}, "libtasn1": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libtasn1/4.19.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some other packages. It was written by Fabio Fiorina, and has been shipped as part of GnuTLS for some time but is now a proper GNU package.", "homepage": "https://www.gnu.org/software/libtasn1/"}, "LibTIFF": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LibTIFF/4.4.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LibTIFF/4.5.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LibTIFF/4.6.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "tiff: Library and tools for reading and writing TIFF data files", "homepage": "https://libtiff.gitlab.io/libtiff/"}, "libtirpc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libtirpc/1.3.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libtirpc/1.3.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libtirpc/1.3.4-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libtirpc is a port of Suns Transport-Independent RPC library to Linux.", "homepage": "https://sourceforge.net/projects/libtirpc/"}, "libunistring": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libunistring/1.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard.", "homepage": "https://www.gnu.org/software/libunistring/"}, "libunwind": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libunwind/1.6.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libunwind/1.6.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libunwind/1.6.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The primary goal of libunwind is to define a portable and efficient C programming interface (API) to determine the call-chain of a program. The API additionally provides the means to manipulate the preserved (callee-saved) state of each call-frame and to resume execution at any point in the call-chain (non-local goto). The API supports both local (same-process) and remote (across-process) operation. As such, the API is useful in a number of applications", "homepage": "https://www.nongnu.org/libunwind/"}, "libvorbis": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libvorbis/1.3.7-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libvorbis/1.3.7-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libvorbis/1.3.7-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, general-purpose compressedaudio format", "homepage": "https://xiph.org/vorbis/"}, "libvori": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libvori/220621-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "C++ library implementing the Voronoi integration as well as the compressed bqbfile format. The present version of libvori is a very early developmentversion, which is hard-coded to work with the CP2k program package.", "homepage": "https://brehm-research.de/libvori.php"}, "libwebp": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libwebp/1.3.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libwebp/1.3.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "WebP is a modern image format that provides superiorlossless and lossy compression for images on the web. Using WebP,webmasters and web developers can create smaller, richer images thatmake the web faster.", "homepage": "https://developers.google.com/speed/webp/"}, "libwpe": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libwpe/1.16.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "WPE is the reference WebKit port for embedded andlow-consumption computer devices. It has been designed from theground-up with performance, small footprint, accelerated contentrendering, and simplicity of deployment in mind, bringing theexcellence of the WebKit engine to countless platforms and target devices.", "homepage": "https://webkit.org/wpe"}, "libxc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libxc/6.1.0-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libxc/6.2.2-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libxc is a library of exchange-correlation functionals for density-functional theory. The aim is to provide a portable, well tested and reliable set of exchange and correlation functionals.", "homepage": "https://www.tddft.org/programs/libxc"}, "libxml2-python": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libxml2-python/2.11.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform). This is the Python binding.", "homepage": "http://xmlsoft.org/"}, "libxml2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libxml2/2.10.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libxml2/2.11.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libxml2/2.11.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform).", "homepage": "http://xmlsoft.org/"}, "libxslt": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libxslt/1.1.37-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libxslt/1.1.38-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libxslt/1.1.38-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Libxslt is the XSLT C library developed for the GNOME project (but usable outside of the Gnome platform).", "homepage": "http://xmlsoft.org/"}, "libyaml": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libyaml/0.2.5-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libyaml/0.2.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "libyaml/0.2.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "LibYAML is a YAML parser and emitter written in C.", "homepage": "https://pyyaml.org/wiki/LibYAML"}, "LightGBM": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LightGBM/4.5.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "lightgbm-4.5.0"}}, "description": "A fast, distributed, high performance gradient boosting (GBT, GBDT, GBRT, GBMor MART) framework based on decision tree algorithms, used for ranking,classification and many other machine learning tasks.", "homepage": "https://lightgbm.readthedocs.io"}, "LINC": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LINC/5.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "backports.shutil_get_terminal_size-1.0.0, bdsf-1.13.0.post2, LINC-5.0, pyregion-2.3.0"}}, "description": "LINC is a pipeline to correct for various instrumental and ionospheric effects in both LOFAR HBA and LOFAR LBAobservations.", "homepage": "https://linc.readthedocs.io/en/latest/"}, "lit": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"lit/18.1.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "lit-18.1.2"}, "lit/18.1.7-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "lit-18.1.7, pexpect-4.9.0, ptyprocess-0.7.0"}}, "description": "lit is a portable tool for executing LLVM and Clang style test suites, summarizing their results, andproviding indication of failures.", "homepage": "https://llvm.org/docs/CommandGuide/lit.html"}, "LittleCMS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LittleCMS/2.14-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LittleCMS/2.15-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LittleCMS/2.15-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Little CMS intends to be an OPEN SOURCE small-footprint color management engine, with special focus on accuracy and performance.", "homepage": "https://www.littlecms.com/"}, "LLVM": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LLVM/14.0.6-GCCcore-12.3.0-llvmlite": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LLVM/15.0.5-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LLVM/16.0.6-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LLVM/16.0.6-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The LLVM Core libraries provide a modern source- and target-independent optimizer, along with code generation support for many popular CPUs (as well as some less common ones!) These libraries are built around a well specified code representation known as the LLVM intermediate representation (\"LLVM IR\"). The LLVM Core libraries are well documented, and it is particularly easy to invent your own language (or port an existing compiler) to use LLVM as an optimizer and code generator.", "homepage": "https://llvm.org/"}, "LMDB": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LMDB/0.9.29-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LMDB/0.9.31-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "LMDB is a fast, memory-efficient database. With memory-mapped files, it has the read performance of a pure in-memory database while retaining the persistence of standard disk-based databases.", "homepage": "https://symas.com/lmdb"}, "LofarStMan": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LofarStMan/1.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This package provides a casacore storage manager to read raw correlator output of the LOFAR telescope.", "homepage": "https://github.com/lofar-astron/LofarStMan"}, "LoopTools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LoopTools/2.15-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "LoopTools is a package for evaluation of scalar and tensor one-loop integrals.It is based on the FF package by G.J. van Oldenborgh.", "homepage": "https://feynarts.de/looptools/"}, "LoSoTo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LoSoTo/2.5.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "configparser-7.2.0, LoSoTo-2.5.0"}}, "description": "LoSoTo: LOFAR solutions tool", "homepage": "https://revoltek.github.io/losoto/"}, "LPC3D": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LPC3D/0.1.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "lpc3d-0.1.2"}}, "description": "A code to do mesoscopic simulations of ions diffusing in carbon particles and of full supercapacitors.", "homepage": "https://github.com/multixscale/LPC3D"}, "lpsolve": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"lpsolve/5.5.2.11-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Mixed Integer Linear Programming (MILP) solver", "homepage": "https://sourceforge.net/projects/lpsolve/"}, "LRBinner": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LRBinner/0.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "LRBinner-0.1, tabulate-0.9.0"}}, "description": "LRBinner is a long-read binning tool published in WABI 2021 proceedings and AMB.", "homepage": "https://github.com/anuradhawick/LRBinner"}, "LSD2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LSD2/2.4.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Least-squares methods to estimate rates and dates from phylogenies", "homepage": "https://github.com/tothuhien/lsd2"}, "LSMTool": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LSMTool/1.7.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "lsmtool-1.7.0"}}, "description": "LSMTool is a Python package which allows for the manipulation of LOFAR sky models in the makesourcedb format.", "homepage": "https://lsmtool.readthedocs.io/en/latest/"}, "Lua": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Lua/5.4.4-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Lua/5.4.6-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Lua/5.4.6-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.", "homepage": "https://www.lua.org/"}, "lxml": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"lxml/4.9.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "lxml/4.9.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The lxml XML toolkit is a Pythonic binding for the C libraries libxml2 and libxslt.", "homepage": "https://lxml.de/"}, "lz4": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"lz4/1.9.4-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "lz4/1.9.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "lz4/1.9.4-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "LZ4 is lossless compression algorithm, providing compression speed at 400 MB/s per core. It features an extremely fast decoder, with speed in multiple GB/s per core.", "homepage": "https://lz4.github.io/lz4/"}, "LZO": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"LZO/2.10-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "LZO/2.10-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Portable lossless data compression library", "homepage": "https://www.oberhumer.com/opensource/lzo/"}, "maeparser": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"maeparser/1.3.1-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "maeparser is a parser for Schrodinger Maestro files.", "homepage": "https://github.com/schrodinger/maeparser"}, "MAFFT": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MAFFT/7.505-GCC-12.2.0-with-extensions": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "MAFFT/7.520-GCC-12.3.0-with-extensions": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "MAFFT is a multiple sequence alignment program for unix-like operating systems.It offers a range of multiple alignment methods, L-INS-i (accurate; for alignmentof <\u223c200 sequences), FFT-NS-2 (fast; for alignment of <\u223c30,000 sequences), etc.", "homepage": "https://mafft.cbrc.jp/alignment/software/source.html"}, "make": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"make/4.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "make/4.4.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "make/4.4.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GNU version of make utility", "homepage": "https://www.gnu.org/software/make/make.html"}, "Mako": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Mako/1.2.4-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Mako/1.2.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Mako-1.2.4, MarkupSafe-2.1.3"}, "Mako/1.2.4-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Mako-1.2.4, MarkupSafe-2.1.3"}}, "description": "A super-fast templating language that borrows the best ideas from the existing templating languages", "homepage": "https://www.makotemplates.org"}, "mallard-ducktype": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"mallard-ducktype/1.0.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Parser for the lightweight Ducktype syntax for Mallard", "homepage": "https://github.com/projectmallard/mallard-ducktype"}, "MAQAO": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MAQAO/2.21.1": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "MAQAO (Modular Assembly Quality Analyzer and Optimizer) is a performanceanalysis and optimization framework operating at binary level with a focus on coreperformance. Its main goal of is to guide application developers along the optimizationprocess through synthetic reports and hints.MAQAO mixes both dynamic and static analyses based on its ability to reconstruct highlevel structures such as functions and loops from an application binary. Since MAQAOoperates at binary level, it is agnostic with regard to the language used in the sourcecode and does not require recompiling the application to perform analyses.", "homepage": "https://maqao.org"}, "MariaDB": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MariaDB/11.6.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "MariaDB is an enhanced, drop-in replacement for MySQL.Included engines: myISAM, Aria, InnoDB, RocksDB, TokuDB, OQGraph, Mroonga.", "homepage": "https://mariadb.org/"}, "Markdown": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Markdown/3.6-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This is a Python implementation of John Gruber's Markdown.It is almost completely compliant with the reference implementation, though there are a few known issues.Additional features are supported by the Available Extensions.", "homepage": "https://python-markdown.github.io/"}, "Mash": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Mash/2.3-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Fast genome and metagenome distance estimation using MinHash", "homepage": "http://mash.readthedocs.org"}, "matplotlib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"matplotlib/3.7.0-gfbf-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "contourpy-1.0.7, Cycler-0.11.0, fonttools-4.38.0, kiwisolver-1.4.4, matplotlib-3.7.0"}, "matplotlib/3.7.2-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "contourpy-1.1.0, Cycler-0.11.0, fonttools-4.42.0, kiwisolver-1.4.4, matplotlib-3.7.2"}, "matplotlib/3.8.2-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "contourpy-1.2.0, Cycler-0.12.1, fonttools-4.47.0, kiwisolver-1.4.5, matplotlib-3.8.2"}}, "description": "matplotlib is a python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python and ipython shell, web application servers, and six graphical user interface toolkits.", "homepage": "https://matplotlib.org"}, "maturin": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"maturin/1.1.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "maturin/1.4.0-GCCcore-12.3.0-Rust-1.75.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "maturin/1.5.0-GCCcore-13.2.0-Rust-1.76.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This project is meant as a zero configurationreplacement for setuptools-rust and milksnake. It supports buildingwheels for python 3.5+ on windows, linux, mac and freebsd, can uploadthem to pypi and has basic pypy and graalpy support.", "homepage": "https://github.com/pyo3/maturin"}, "MBX": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MBX/1.1.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "MBX is an energy and force calculator for data-driven many-body simulations", "homepage": "https://github.com/paesanilab/MBX"}, "MCL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MCL/22.282-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The MCL algorithm is short for the Markov Cluster Algorithm, a fastand scalable unsupervised cluster algorithm for graphs (also known as networks) basedon simulation of (stochastic) flow in graphs.", "homepage": "https://micans.org/mcl/"}, "mctc-lib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"mctc-lib/0.3.1-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "mctc-lib/0.3.1-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Common tool chain for working with molecular structure data in variousapplications. This library provides a unified way to perform operations onmolecular structure data, like reading and writing to common geometry fileformats.", "homepage": "https://grimme-lab.github.io/mctc-lib"}, "MDAnalysis": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MDAnalysis/2.4.2-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "fasteners-0.18, funcsigs-1.0.2, GridDataFormats-1.0.1, gsd-2.8.0, MDAnalysis-2.4.2, mmtf-python-1.1.3, mrcfile-1.4.3, msgpack-1.0.5"}}, "description": "MDAnalysis is an object-oriented Python library to analyze trajectories from molecular dynamics (MD)simulations in many popular formats.", "homepage": "https://www.mdanalysis.org/"}, "MDI": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MDI/1.4.26-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "MDI/1.4.29-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The MolSSI Driver Interface (MDI) project provides a standardized API for fast, on-the-fly communication between computational chemistry codes. This greatly simplifies the process of implementing methods that require the cooperation of multiple software packages and enables developers to write a single implementation that works across many different codes. The API is sufficiently general to support a wide variety of techniques, including QM/MM, ab initio MD, machine learning, advanced sampling, and path integral MD, while also being straightforwardly extensible. Communication between codes is handled by the MDI Library, which enables tight coupling between codes using either the MPI or TCP/IP methods.", "homepage": "https://github.com/MolSSI-MDI/MDI_Library"}, "MEGAHIT": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MEGAHIT/1.2.9-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "An ultra-fast single-node solution for large and complexmetagenomics assembly via succinct de Bruijn graph", "homepage": "https://github.com/voutcn/megahit"}, "Mesa": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Mesa/22.2.4-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Mesa/23.1.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Mesa/23.1.9-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics.", "homepage": "https://www.mesa3d.org/"}, "meson-python": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"meson-python/0.11.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "meson-python-0.11.0, pyproject-metadata-0.6.1"}, "meson-python/0.13.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "meson-python-0.13.2, pyproject-metadata-0.7.1"}, "meson-python/0.15.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "meson-python-0.15.0, pyproject-metadata-0.7.1"}, "meson-python/0.15.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "meson-python-0.15.0, pyproject-metadata-0.7.1"}}, "description": "Python build backend (PEP 517) for Meson projects", "homepage": "https://github.com/mesonbuild/meson-python"}, "Meson": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Meson/0.64.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Meson/1.1.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Meson/1.2.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Meson/1.3.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Meson is a cross-platform build system designed to be both as fast and as user friendly as possible.", "homepage": "https://mesonbuild.com"}, "MetaEuk": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MetaEuk/6-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "MetaEuk is a modular toolkit designed for large-scale gene discovery and annotation in eukaryotic metagenomic contigs.", "homepage": "https://metaeuk.soedinglab.org"}, "MetalWalls": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MetalWalls/21.06.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "MetalWalls (MW) is a molecular dynamics code dedicated to the modelling of electrochemical systems.Its main originality is the inclusion of a series of methods allowing to apply a constant potential within theelectrode materials.", "homepage": "https://gitlab.com/ampere2/metalwalls"}, "METIS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"METIS/5.1.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "METIS/5.1.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "METIS/5.1.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "METIS is a set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices. The algorithms implemented in METIS are based on the multilevel recursive-bisection, multilevel k-way, and multi-constraint partitioning schemes.", "homepage": "https://karypis.github.io/glaros/projects/gp.html"}, "minizip": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"minizip/1.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Mini zip and unzip based on zlib", "homepage": "https://www.winimage.com/zLibDll/minizip.html"}, "ml_dtypes": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ml_dtypes/0.3.2-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "etils-1.6.0, ml_dtypes-0.3.2, opt_einsum-3.3.0"}}, "description": "ml_dtypes is a stand-alone implementation of several NumPy dtype extensions usedin machine learning libraries, including:bfloat16: an alternative to the standard float16 formatfloat8_*: several experimental 8-bit floating point representations including:float8_e4m3b11fnuzfloat8_e4m3fnfloat8_e4m3fnuzfloat8_e5m2float8_e5m2fnuz", "homepage": "https://github.com/jax-ml/ml_dtypes"}, "MLflow": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MLflow/2.10.2-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "docker-7.0.0, entrypoints-0.4, gunicorn-21.2.0, Markdown-3.5.2, mlflow-2.10.2, querystring_parser-1.2.4, sqlparse-0.4.4"}, "MLflow/2.18.0-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "alembic-1.14.0, cachetools-5.5.0, databricks_sdk-0.36.0, docker-7.1.0, google-auth-2.35.0, graphene-3.4.1, graphql-relay-3.2.0, graphql_core-3.2.5, gunicorn-23.0.0, mlflow-2.18.0, mlflow_skinny-2.18.0, opentelemetry_api-1.27.0, opentelemetry_sdk-1.27.0, opentelemetry_semantic_conventions-0.48b0, pyasn1-modules-0.4.1, rsa-4.9, sqlparse-0.5.1"}}, "description": "MLflow is a platform to streamline machine learning development, including tracking experiments,packaging code into reproducible runs, and sharing and deploying models.", "homepage": "https://mlflow.org"}, "MMseqs2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MMseqs2/14-7e284-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "MMseqs2: ultra fast and sensitive search and clustering suite", "homepage": "https://mmseqs.com"}, "MODFLOW": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MODFLOW/6.4.4-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "MODFLOW is the USGS's modular hydrologic model. MODFLOW is considered an international standard for simulating and predicting groundwater conditions and groundwater/surface-water interactions.", "homepage": "https://www.usgs.gov/mission-areas/water-resources/science/modflow-and-related-programs"}, "MPC": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MPC/1.3.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "MPC/1.3.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "MPC/1.3.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Gnu Mpc is a C library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result. It extends the principles of the IEEE-754 standard for fixed precision real floating point numbers to complex numbers, providing well-defined semantics for every operation. At the same time, speed of operation at high precision is a major design goal.", "homepage": "http://www.multiprecision.org/"}, "MPFR": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MPFR/4.2.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "MPFR/4.2.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "MPFR/4.2.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The MPFR library is a C library for multiple-precision floating-point computations with correct rounding.", "homepage": "https://www.mpfr.org"}, "mpi4py": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"mpi4py/3.1.4-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "mpi4py-3.1.4"}, "mpi4py/3.1.4-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "mpi4py-3.1.4"}, "mpi4py/3.1.5-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "mpi4py-3.1.5"}}, "description": "MPI for Python (mpi4py) provides bindings of the Message Passing Interface (MPI) standard for the Python programming language, allowing any Python program to exploit multiple processors.", "homepage": "https://github.com/mpi4py/mpi4py"}, "mpl-ascii": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"mpl-ascii/0.10.0-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "mpl-ascii-0.10.0"}}, "description": "A matplotlib backend that produces plots using only ASCII characters", "homepage": "https://github.com/chriscave/mpl_ascii"}, "MrBayes": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MrBayes/3.2.7-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "MrBayes is a program for Bayesian inference and model choice across a wide range of phylogenetic and evolutionary models.", "homepage": "https://nbisweden.github.io/MrBayes/"}, "mstore": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"mstore/0.3.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "mstore/0.3.0-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Molecular structure store for testing", "homepage": "https://github.com/grimme-lab/mstore"}, "multicharge": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"multicharge/0.3.0-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Electronegativity equilibration model for atomic partial charges.", "homepage": "https://github.com/grimme-lab/multicharge"}, "multiprocess": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"multiprocess/0.70.16-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "better multiprocessing and multithreading in python", "homepage": "https://github.com/uqfoundation/multiprocess"}, "MultiQC": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MultiQC/1.14-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "coloredlogs-15.0.1, colormath-3.0.0, commonmark-0.9.1, humanfriendly-10.0, lzstring-1.0.4, Markdown-3.4.1, markdown-it-py-2.1.0, mdurl-0.1.2, multiqc-1.14, Pygments-2.14.0, rich-13.3.1, rich-click-1.6.1, spectra-0.0.11"}}, "description": "Aggregate results from bioinformatics analyses across many samples into a single report. MultiQC searches a given directory for analysis logs and compiles an HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools.", "homepage": "https://multiqc.info"}, "MUMPS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MUMPS/5.6.1-foss-2022b-metis": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "MUMPS/5.6.1-foss-2023a-metis": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "MUMPS/5.6.1-foss-2023b-metis": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A parallel sparse direct solver", "homepage": "https://mumps-solver.org"}, "MUSCLE": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"MUSCLE/5.1.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "MUSCLE is one of the best-performing multiple alignment programs according to published benchmark tests, with accuracy and speed that are consistently better than CLUSTALW. MUSCLE can align hundreds of sequences in seconds. Most users learn everything they need to know about MUSCLE in a few minutes-only a handful of command-line options are needed to perform common alignment tasks.", "homepage": "https://drive5.com/muscle/"}, "Mustache": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Mustache/1.3.3-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Mustache (Multi-scale Detection of Chromatin Loops from Hi-C and Micro-C Maps usingScale-Space Representation) is a tool for multi-scale detection of chromatin loops from Hi-C and Micro-Ccontact maps in high resolutions (10kbp all the way to 500bp and even more).Mustache uses recent technical advances in scale-space theory inComputer Vision to detect chromatin loops caused by interaction of DNA segments with a variable size.", "homepage": "https://github.com/ay-lab/mustache"}, "NASM": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"NASM/2.15.05-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "NASM/2.16.01-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "NASM/2.16.01-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "NASM: General-purpose x86 assembler", "homepage": "https://www.nasm.us/"}, "ncbi-vdb": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ncbi-vdb/3.0.5-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ncbi-vdb/3.0.10-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives.", "homepage": "https://github.com/ncbi/ncbi-vdb"}, "ncdu": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ncdu/1.18-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Ncdu is a disk usage analyzer with an ncurses interface. It is designed to find space hogs on a remote server where you don't have an entire graphical setup available, but it is a useful tool even on regular desktop systems. Ncdu aims to be fast, simple and easy to use, and should be able to run in any minimal POSIX-like environment with ncurses installed.", "homepage": "https://dev.yorhel.nl/ncdu"}, "NCO": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"NCO/5.1.9-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The NCO toolkit manipulates and analyzes data stored in netCDF-accessible formats,including DAP, HDF4, and HDF5.", "homepage": "https://github.com/nco/nco"}, "NEST": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"NEST/3.9-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "NEST is a simulator for spiking neural network models that focuses on the dynamics, size and structure of neural systems rather than on the exact morphology of individual neurons.", "homepage": "https://www.nest-simulator.org/"}, "netCDF-C++4": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"netCDF-C++4/4.3.1-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "netCDF-C++4/4.3.1-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data.", "homepage": "https://www.unidata.ucar.edu/software/netcdf/"}, "netCDF-Fortran": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"netCDF-Fortran/4.6.0-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "netCDF-Fortran/4.6.1-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "netCDF-Fortran/4.6.1-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data.", "homepage": "https://www.unidata.ucar.edu/software/netcdf/"}, "netCDF": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"netCDF/4.9.0-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "netCDF/4.9.2-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "netCDF/4.9.2-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data.", "homepage": "https://www.unidata.ucar.edu/software/netcdf/"}, "netcdf4-python": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"netcdf4-python/1.6.3-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "cftime-1.6.2, netcdf4-python-1.6.3"}, "netcdf4-python/1.6.4-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "cftime-1.6.2, netcdf4-python-1.6.4"}}, "description": "Python/numpy interface to netCDF.", "homepage": "https://unidata.github.io/netcdf4-python/"}, "nettle": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"nettle/3.8.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "nettle/3.9.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "nettle/3.9.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Nettle is a cryptographic library that is designed to fit easily in more or less any context: In crypto toolkits for object-oriented languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space.", "homepage": "https://www.lysator.liu.se/~nisse/nettle/"}, "networkx": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"networkx/3.0-gfbf-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "networkx/3.1-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "networkx/3.2.1-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "NetworkX is a Python package for the creation, manipulation,and study of the structure, dynamics, and functions of complex networks.", "homepage": "https://pypi.python.org/pypi/networkx"}, "Nextflow": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Nextflow/23.10.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Nextflow/24.10.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Nextflow is a reactive workflow framework and a programming DSL that eases writing computational pipelines with complex data", "homepage": "https://www.nextflow.io/"}, "nghttp2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"nghttp2/1.58.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This is an implementation of the Hypertext Transfer Protocol version 2 in C.The framing layer of HTTP/2 is implemented as a reusable C library.On top of that, we have implemented an HTTP/2 client, server and proxy.We have also developed load test and benchmarking tools for HTTP/2.An HPACK encoder and decoder are available as a public API.", "homepage": "https://github.com/nghttp2/nghttp2"}, "nghttp3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"nghttp3/1.3.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "nghttp3 is an implementation of RFC 9114 HTTP/3mapping over QUIC and RFC 9204 QPACK in C.It does not depend on any particular QUIC transport implementation.", "homepage": "https://github.com/ngtcp2/nghttp3"}, "ngtcp2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ngtcp2/1.2.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "'Call it TCP/2. One More Time.'ngtcp2 project is an effort to implement RFC9000 QUIC protocol.", "homepage": "https://github.com/ngtcp2/ngtcp2"}, "Ninja": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Ninja/1.11.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Ninja/1.11.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Ninja/1.11.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Ninja is a small build system with a focus on speed.", "homepage": "https://ninja-build.org/"}, "nlohmann_json": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"nlohmann_json/3.11.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "nlohmann_json/3.11.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "nlohmann_json/3.11.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "JSON for Modern C++", "homepage": "https://github.com/nlohmann/json"}, "NLopt": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"NLopt/2.7.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "NLopt/2.7.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "NLopt/2.7.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "NLopt is a free/open-source library for nonlinear optimization, providing a common interface for a number of different free optimization routines available online as well as original implementations of various other algorithms.", "homepage": "http://ab-initio.mit.edu/wiki/index.php/NLopt"}, "NLTK": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"NLTK/3.8.1-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "NLTK-3.8.1, python-crfsuite-0.9.10, regex-2023.12.25"}}, "description": "NLTK is a leading platform for building Python programs to work with human language data.", "homepage": "https://www.nltk.org/"}, "nodejs": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"nodejs/18.12.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "nodejs/18.17.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "nodejs/20.9.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.", "homepage": "https://nodejs.org"}, "NSPR": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"NSPR/4.35-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "NSPR/4.35-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "NSPR/4.35-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level and libc-like functions.", "homepage": "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR"}, "NSS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"NSS/3.85-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "NSS/3.89.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "NSS/3.94-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications.", "homepage": "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS"}, "nsync": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"nsync/1.26.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "nsync is a C library that exports various synchronization primitives, such as mutexes", "homepage": "https://github.com/google/nsync"}, "numactl": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"numactl/2.0.16-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "numactl/2.0.16-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "numactl/2.0.16-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The numactl program allows you to run your application program on specific cpu's and memory nodes. It does this by supplying a NUMA memory policy to the operating system before running your program. The libnuma library provides convenient ways for you to add NUMA memory policies into your own program.", "homepage": "https://github.com/numactl/numactl"}, "numba": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"numba/0.58.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "llvmlite-0.41.1, numba-0.58.1"}}, "description": "Numba is an Open Source NumPy-aware optimizing compiler forPython sponsored by Continuum Analytics, Inc. It uses the remarkable LLVMcompiler infrastructure to compile Python syntax to machine code.", "homepage": "https://numba.pydata.org/"}, "occt": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"occt/7.8.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Open CASCADE Technology (OCCT) is an object-oriented C++class library designed for rapid production of sophisticated domain-specificCAD/CAM/CAE applications.", "homepage": "https://www.opencascade.com/"}, "Octave": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Octave/10.1.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "general-2.1.3, io-2.6.4, optim-1.6.2, statistics-1.6.6, struct-1.0.18"}}, "description": "GNU Octave is a high-level interpreted language, primarily intended for numerical computations.", "homepage": "https://www.gnu.org/software/octave/"}, "OPARI2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OPARI2/2.0.8-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "OPARI2, the successor of Forschungszentrum Juelich's OPARI, is a source-to-source instrumentation tool for OpenMP and hybrid codes. It surrounds OpenMP directives and runtime library calls with calls to the POMP2 measurement interface.", "homepage": "https://www.score-p.org"}, "OpenBabel": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OpenBabel/3.1.1-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Open Babel is a chemical toolbox designed to speak the many languages of chemical data. It's an open, collaborative project allowing anyone to search, convert, analyze, or store data from molecular modeling, chemistry, solid-state materials, biochemistry, or related areas.", "homepage": "https://openbabel.org"}, "OpenBLAS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OpenBLAS/0.3.21-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenBLAS/0.3.23-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenBLAS/0.3.24-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version.", "homepage": "http://www.openblas.net/"}, "openCARP": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"openCARP/17.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "openCARP is an open cardiac electrophysiology simulator for in-silico experiments.", "homepage": "https://opencarp.org"}, "OpenCV": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OpenCV/4.8.1-foss-2023a-contrib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products. Includes extra modules for OpenCV from the contrib repository.", "homepage": "https://opencv.org/"}, "OpenEXR": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OpenEXR/3.1.5-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenEXR/3.1.7-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenEXR/3.2.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications", "homepage": "https://www.openexr.com/"}, "OpenFOAM": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OpenFOAM/v2312-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenFOAM/v2406-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenFOAM/10-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenFOAM/11-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenFOAM/12-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "OpenFOAM is a free, open source CFD software package. OpenFOAM has an extensive range of features to solve anything from complex fluid flows involving chemical reactions, turbulence and heat transfer, to solid dynamics and electromagnetics.", "homepage": "https://www.openfoam.org/"}, "OpenJPEG": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OpenJPEG/2.5.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenJPEG/2.5.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenJPEG/2.5.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "OpenJPEG is an open-source JPEG 2000 codec written in C language. It has been developed in order to promote the use of JPEG 2000, a still-image compression standard from the Joint Photographic Experts Group (JPEG). Since may 2015, it is officially recognized by ISO/IEC and ITU-T as a JPEG 2000 Reference Software.", "homepage": "https://www.openjpeg.org/"}, "OpenMPI": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OpenMPI/4.1.4-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenMPI/4.1.5-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenMPI/4.1.6-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Open MPI Project is an open source MPI-3 implementation.", "homepage": "https://www.open-mpi.org/"}, "OpenPGM": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OpenPGM/5.2.122-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OpenPGM/5.2.122-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "OpenPGM is an open source implementation of the Pragmatic General Multicast (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable and scalable multicast protocol that enables receivers to detect loss, request retransmission of lost data, or notify an application of unrecoverable loss. PGM is a receiver-reliable protocol, which means the receiver is responsible for ensuring all data is received, absolving the sender of reception responsibility.", "homepage": "https://code.google.com/p/openpgm/"}, "OpenSSL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OpenSSL/1.1": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolchain implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library.", "homepage": "https://www.openssl.org/"}, "orjson": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"orjson/3.9.15-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "mypy-1.10.0, mypy_extensions-1.0.0, orjson-3.9.15, ruff-0.4.8"}}, "description": "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy.", "homepage": "https://github.com/ijl/orjson"}, "OrthoFinder": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OrthoFinder/2.5.5-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "OrthoFinder is a fast, accurate and comprehensive platform for comparative genomics", "homepage": "https://github.com/davidemms/OrthoFinder"}, "Osi": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Osi/0.108.9-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Osi/0.108.9-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Osi (Open Solver Interface) provides an abstract base class to a generic linearprogramming (LP) solver, along with derived classes for specific solvers. Manyapplications may be able to use the Osi to insulate themselves from a specificLP solver. That is, programs written to the OSI standard may be linked to anysolver with an OSI interface and should produce correct results. The OSI hasbeen significantly extended compared to its first incarnation. Currently, theOSI supports linear programming solvers and has rudimentary support for integerprogramming.", "homepage": "https://github.com/coin-or/Osi"}, "OSU-Micro-Benchmarks": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OSU-Micro-Benchmarks/7.1-1-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "OSU-Micro-Benchmarks/7.2-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "OSU Micro-Benchmarks", "homepage": "https://mvapich.cse.ohio-state.edu/benchmarks/"}, "OTF2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"OTF2/3.0.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Open Trace Format 2 is a highly scalable, memory efficient event trace data format plus support library. It is the new standard trace format for Scalasca, Vampir, and TAU and is open for other tools.", "homepage": "https://www.score-p.org"}, "p11-kit": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"p11-kit/0.25.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Provides a way to load and enumerate PKCS#11 modules. Provides a standard configuration setup for installing PKCS#11 modules in such a way that they're discoverable. Also solves problems with coordinating the use of PKCS#11 by different components or libraries living in the same process.", "homepage": "https://p11-glue.freedesktop.org/p11-kit.html"}, "Pandoc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Pandoc/3.6.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "If you need to convert files from one markup format into another, pandoc is your swiss-army knife", "homepage": "https://pandoc.org"}, "Pango": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Pango/1.50.12-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Pango/1.50.14-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Pango/1.51.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Pango is a library for laying out and rendering of text, with an emphasis on internationalization.Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in thecontext of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x.", "homepage": "https://www.pango.org/"}, "PAPI": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PAPI/7.1.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PAPI provides the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and processor events. In addition Component PAPI provides access to a collection of components that expose performance measurement opportunites across the hardware and software stack.", "homepage": "https://icl.cs.utk.edu/projects/papi/"}, "parallel": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"parallel/20230722-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "parallel/20230722-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "parallel: Build and execute shell commands in parallel", "homepage": "https://savannah.gnu.org/projects/parallel/"}, "paramiko": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"paramiko/3.2.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "paramiko-3.2.0, PyNaCl-1.5.0"}}, "description": "Paramiko is a pure-Python (3.6+) implementation of the SSHv2 protocol,providing both client and server functionality. It provides the foundationfor the high-level SSH library Fabric, which is what we recommend you use forcommon client use-cases such as running remote shell commands or transferringfiles.", "homepage": "https://paramiko.org"}, "Paraver": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Paraver/4.11.4-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A very powerful performance visualization and analysis tool based on traces that can be used to analyse any information that is expressed on its input trace format. Traces for parallel MPI, OpenMP and other programs can be genereated with Extrae.", "homepage": "https://tools.bsc.es/paraver"}, "ParaView": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ParaView/5.11.1-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ParaView/5.11.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ParaView is a scientific parallel visualizer.", "homepage": "https://www.paraview.org"}, "ParMETIS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ParMETIS/4.0.3-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ParMETIS is an MPI-based parallel library that implements a variety of algorithms for partitioning unstructured graphs, meshes, and for computing fill-reducing orderings of sparse matrices. ParMETIS extends the functionality provided by METIS and includes routines that are especially suited for parallel AMR computations and large scale numerical simulations. The algorithms implemented in ParMETIS are based on the parallel multilevel k-way graph-partitioning, adaptive repartitioning, and parallel multi-constrained partitioning schemes.", "homepage": "http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview"}, "patchelf": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"patchelf/0.18.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "patchelf/0.18.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PatchELF is a small utility to modify the dynamic linker and RPATH of ELF executables.", "homepage": "https://github.com/NixOS/patchelf"}, "PCRE": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PCRE/8.45-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PCRE/8.45-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PCRE/8.45-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5.", "homepage": "https://www.pcre.org/"}, "PCRE2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PCRE2/10.40-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PCRE2/10.42-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PCRE2/10.42-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5.", "homepage": "https://www.pcre.org/"}, "PDAL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PDAL/2.8.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PDAL is Point Data Abstraction Library. It is a C/C++ open source library and applications fortranslating and processing point cloud data. It is not limited to LiDAR data,although the focus and impetus for many of the tools in the library have their origins in LiDAR.", "homepage": "https://pdal.io/"}, "PDT": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PDT/3.25.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Program Database Toolkit (PDT) is a framework for analyzing source code written in several programming languages and for making rich program knowledge accessible to developers of static and dynamic analysis tools. PDT implements a standard program representation, the program database (PDB), that can be accessed in a uniform way through a class library supporting common PDB operations.", "homepage": "https://www.cs.uoregon.edu/research/pdt/"}, "Perl-bundle-CPAN": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Algorithm::Dependency-1.112, Algorithm::Diff-1.201, aliased-0.34, AnyEvent-7.17, App::Cmd-0.335, App::cpanminus-1.7046, AppConfig-1.71, Archive::Extract-0.88, Array::Transpose-0.06, Array::Utils-0.5, Authen::NTLM-1.09, Authen::SASL-2.16, AutoLoader-5.74, B::COW-0.007, B::Hooks::EndOfScope-0.26, B::Lint-1.20, boolean-0.46, Business::ISBN-3.008, Business::ISBN::Data-20230516.001, Canary::Stability-2013, Capture::Tiny-0.48, Carp::Clan-6.08, Carp::Heavy-1.50, CGI-4.57, Class::Accessor-0.51, Class::Data::Inheritable-0.09, Class::DBI-v3.0.17, Class::DBI::SQLite-0.11, Class::Inspector-1.36, Class::ISA-0.36, Class::Load-0.25, Class::Load::XS-0.10, Class::Method::Modifiers-2.15, Class::Singleton-1.6, Class::Tiny-1.008, Class::Trigger-0.15, Class::XSAccessor-1.19, Clone-0.46, Clone::Choose-0.010, common::sense-3.75, Compress::Raw::Zlib-2.204, Config::General-2.65, Config::INI-0.029, Config::MVP-2.200013, Config::MVP::Reader::INI-2.101465, Config::Simple-4.58, Config::Tiny-2.29, Const::Exporter-1.2.2, Const::Fast-0.014, CPAN::Meta::Check-0.017, CPAN::Uploader-0.103018, CPANPLUS-0.9914, Crypt::DES-2.07, Crypt::Rijndael-1.16, Cwd-3.75, Cwd::Guard-0.05, Data::Dump-1.25, Data::Dumper::Concise-2.023, Data::Grove-0.08, Data::OptList-0.114, Data::Section-0.200008, Data::Section::Simple-0.07, Data::Stag-0.14, Data::Types-0.17, Data::UUID-1.226, Date::Handler-1.2, Date::Language-2.33, DateTime-1.59, DateTime::Locale-1.38, DateTime::TimeZone-2.60, DateTime::Tiny-1.07, DBD::CSV-0.60, DBD::SQLite-1.72, DBI-1.643, DBIx::Admin::CreateTable-2.11, DBIx::Admin::DSNManager-2.02, DBIx::Admin::TableInfo-3.04, DBIx::ContextualFetch-1.03, DBIx::Simple-1.37, Devel::CheckCompiler-0.07, Devel::CheckLib-1.16, Devel::Cycle-1.12, Devel::FindPerl-0.016, Devel::GlobalDestruction-0.14, Devel::OverloadInfo-0.007, Devel::Size-0.83, Devel::StackTrace-2.04, Digest::HMAC-1.04, Digest::MD5::File-0.08, Digest::SHA1-2.13, Dist::CheckConflicts-0.11, Dist::Zilla-6.030, Email::Date::Format-1.008, Encode-3.19, Encode::Locale-1.05, Error-0.17029, Eval::Closure-0.14, Exception::Class-1.45, Expect-1.35, Exporter::Declare-0.114, Exporter::Tiny-1.006002, ExtUtils::CBuilder-0.280236, ExtUtils::Config-0.008, ExtUtils::Constant-0.25, ExtUtils::CppGuess-0.26, ExtUtils::Helpers-0.026, ExtUtils::InstallPaths-0.012, ExtUtils::MakeMaker-7.70, ExtUtils::ParseXS-3.44, Fennec::Lite-0.004, File::CheckTree-4.42, File::Copy::Recursive-0.45, File::Copy::Recursive::Reduced-0.006, File::Find::Rule-0.34, File::Find::Rule::Perl-1.16, File::Grep-0.02, File::HomeDir-1.006, File::Listing-6.15, File::Next-1.18, File::pushd-1.016, File::Remove-1.61, File::ShareDir-1.118, File::ShareDir::Install-0.14, File::Slurp-9999.32, File::Slurp::Tiny-0.004, File::Slurper-0.014, File::Temp-0.2311, File::Which-1.27, Font::TTF-1.06, Getopt::Long::Descriptive-0.111, Git-0.42, GO-0.04, GO::Utils-0.15, Graph-0.9726, Graph::ReadWrite-2.10, Hash::Merge-0.302, Hash::Objectify-0.008, Heap-0.80, Hook::LexWrap-0.26, HTML::Entities::Interpolate-1.10, HTML::Form-6.11, HTML::Parser-3.81, HTML::Tagset-3.20, HTML::Template-2.97, HTML::Tree-5.07, HTTP::CookieJar-0.014, HTTP::Cookies-6.10, HTTP::Daemon-6.16, HTTP::Date-6.05, HTTP::Message-6.44, HTTP::Negotiate-6.01, HTTP::Tiny-0.082, if-0.0608, Ima::DBI-0.35, Import::Into-1.002005, Importer-0.026, Inline-0.86, IO::Compress::Zip-2.204, IO::HTML-1.004, IO::Socket::SSL-2.083, IO::String-1.08, IO::Stringy-2.113, IO::TieCombine-1.005, IO::Tty-1.17, IO::Tty-1.17, IPC::Cmd-1.04, IPC::Run-20220807.0, IPC::Run3-0.048, IPC::System::Simple-1.30, JSON-4.10, JSON::MaybeXS-1.004005, JSON::XS-4.03, Lingua::EN::PluralToSingular-0.21, List::AllUtils-0.19, List::MoreUtils-0.430, List::MoreUtils::XS-0.430, List::SomeUtils-0.59, List::UtilsBy-0.12, local::lib-2.000029, Locale::Maketext::Simple-0.21, Log::Dispatch-2.71, Log::Dispatch::Array-1.005, Log::Dispatchouli-3.002, Log::Handler-0.90, Log::Log4perl-1.57, Log::Message-0.08, Log::Message::Simple-0.10, Log::Report-1.34, Log::Report::Optional-1.07, Logger::Simple-2.0, LWP::MediaTypes-6.04, LWP::Protocol::https-6.10, LWP::Simple-6.70, Mail::Util-2.21, Math::Bezier-0.01, Math::CDF-0.1, Math::Round-0.07, Math::Utils-1.14, Math::VecStat-0.08, MCE::Mutex-1.884, Meta::Builder-0.004, MIME::Base64-3.16, MIME::Charset-v1.013.1, MIME::Lite-3.033, MIME::Types-2.24, Mixin::Linewise::Readers-0.111, Mock::Quick-1.111, Module::Build-0.4234, Module::Build::Tiny-0.045, Module::Build::XSUtil-0.19, Module::CoreList-5.20230423, Module::Implementation-0.09, Module::Install-1.21, Module::Load-0.36, Module::Load::Conditional-0.74, Module::Metadata-1.000038, Module::Path-0.19, Module::Path-0.19, Module::Pluggable-5.2, Module::Runtime-0.016, Module::Runtime::Conflicts-0.003, Moo-2.005005, Moose-2.2203, MooseX::LazyRequire-0.11, MooseX::OneArgNew-0.007, MooseX::Role::Parameterized-1.11, MooseX::SetOnce-0.203, MooseX::Types-0.50, MooseX::Types::Perl-0.101344, Mouse-v2.5.10, Mozilla::CA-20221114, MRO::Compat-0.15, namespace::autoclean-0.29, namespace::clean-0.27, Net::Domain-3.15, Net::HTTP-6.22, Net::SMTP::SSL-1.04, Net::SNMP-v6.0.1, Net::SSLeay-1.92, Number::Compare-0.03, Number::Format-1.75, Object::Accessor-0.48, Object::InsideOut-4.05, Object::InsideOut-4.05, Package::Constants-0.06, Package::DeprecationManager-0.18, Package::Stash-0.40, Package::Stash::XS-0.30, PadWalker-2.5, Parallel::ForkManager-2.02, Params::Check-0.38, Params::Util-1.102, Params::Validate-1.31, Params::ValidationCompiler-0.31, parent-0.241, Parse::RecDescent-1.967015, Parse::Yapp-1.21, Path::Tiny-0.144, PDF::API2-2.044, Perl::OSType-1.010, Perl::PrereqScanner-1.100, PerlIO::utf8_strict-0.010, Pod::Elemental-0.103006, Pod::Escapes-1.07, Pod::Eventual-0.094003, Pod::LaTeX-0.61, Pod::Man-5.01, Pod::Parser-1.66, Pod::Plainer-1.04, Pod::POM-2.01, Pod::Simple-3.45, Pod::Weaver-4.019, PPI-1.276, Readonly-2.05, Ref::Util-0.204, Regexp::Common-2017060201, Role::HasMessage-0.007, Role::Identifiable::HasIdent-0.009, Role::Tiny-2.002004, Scalar::Util-1.63, Scalar::Util::Numeric-0.40, Scope::Guard-0.21, Set::Array-0.30, Set::IntervalTree-0.12, Set::IntSpan-1.19, Set::IntSpan::Fast-1.15, Set::Object-1.42, Set::Scalar-1.29, Shell-0.73, Socket-2.036, Software::License-0.104003, Specio-0.48, Spiffy-0.46, SQL::Abstract-2.000001, SQL::Statement-1.414, Statistics::Basic-1.6611, Statistics::Descriptive-3.0800, Storable-3.25, strictures-2.000006, String::Errf-0.009, String::Flogger-1.101246, String::Formatter-1.235, String::Print-0.94, String::RewritePrefix-0.009, String::Truncate-1.100603, String::TtyLength-0.03, Sub::Exporter-0.989, Sub::Exporter::ForMethods-0.100055, Sub::Exporter::GlobExporter-0.006, Sub::Exporter::Progressive-0.001013, Sub::Identify-0.14, Sub::Info-0.002, Sub::Install-0.929, Sub::Name-0.27, Sub::Quote-2.006008, Sub::Uplevel-0.2800, SVG-2.87, Switch-2.17, Sys::Info-0.7811, Sys::Info::Base-0.7807, Sys::Info::Driver::Linux-0.7905, Sys::Info::Driver::Unknown-0.79, Template-3.101, Template::Plugin::Number::Format-1.06, Term::Encoding-0.03, Term::ReadKey-2.38, Term::ReadLine::Gnu-1.45, Term::Table-0.016, Term::UI-0.50, Test-1.26, Test2::Plugin::NoWarnings-0.09, Test2::Require::Module-0.000155, Test::Base-0.89, Test::CheckDeps-0.010, Test::ClassAPI-1.07, Test::CleanNamespaces-0.24, Test::Deep-1.204, Test::Differences-0.69, Test::Exception-0.43, Test::FailWarnings-0.008, Test::Fatal-0.017, Test::File-1.993, Test::File::ShareDir::Dist-1.001002, Test::Harness-3.44, Test::LeakTrace-0.17, Test::Memory::Cycle-1.06, Test::More::UTF8-0.05, Test::Most-0.38, Test::Needs-0.002010, Test::NoWarnings-1.06, Test::Object-0.08, Test::Output-1.033, Test::Pod-1.52, Test::Requires-0.11, Test::RequiresInternet-0.05, Test::Simple-1.302195, Test::SubCalls-1.10, Test::Sys::Info-0.23, Test::Version-2.09, Test::Warn-0.37, Test::Warnings-0.031, Test::Without::Module-0.21, Test::YAML-1.07, Text::Aligner-0.16, Text::Balanced-2.06, Text::CSV-2.02, Text::CSV_XS-1.50, Text::Diff-1.45, Text::Format-0.62, Text::Glob-0.11, Text::Iconv-1.7, Text::Soundex-3.05, Text::Table-1.135, Text::Table::Manifold-1.03, Text::Template-1.61, Throwable-1.001, Tie::Function-0.02, Tie::IxHash-1.23, Time::Local-1.35, Time::Piece-1.3401, Time::Piece::MySQL-0.06, Tree::DAG_Node-1.32, Try::Tiny-0.31, Type::Tiny-2.004000, Types::Serialiser-1.01, Types::Serialiser-1.01, Unicode::EastAsianWidth-12.0, Unicode::LineBreak-2019.001, UNIVERSAL::moniker-0.08, Unix::Processors-2.046, Unix::Processors-2.046, URI-5.19, Variable::Magic-0.63, version-0.9929, Want-0.29, WWW::RobotRules-6.02, XML::Bare-0.53, XML::DOM-1.46, XML::Filter::BufferText-1.01, XML::NamespaceSupport-1.12, XML::Parser-2.46, XML::RegExp-0.04, XML::SAX-1.02, XML::SAX::Base-1.09, XML::SAX::Expat-0.51, XML::SAX::Writer-0.57, XML::Simple-2.25, XML::Tiny-2.07, XML::Twig-3.52, XML::Writer-0.900, XML::XPath-1.48, XSLoader-0.24, YAML-1.30, YAML::Tiny-1.74"}}, "description": "A set of common packages from CPAN", "homepage": "https://www.perl.org/"}, "Perl": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Perl/5.36.0-GCCcore-12.2.0-minimal": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Perl/5.36.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Algorithm::Dependency-1.112, Algorithm::Diff-1.201, aliased-0.34, AnyEvent-7.17, App::Cmd-0.334, App::cpanminus-1.7046, AppConfig-1.71, Archive::Extract-0.88, Array::Transpose-0.06, Array::Utils-0.5, Authen::NTLM-1.09, Authen::SASL-2.16, AutoLoader-5.74, B::Hooks::EndOfScope-0.26, B::Lint-1.20, boolean-0.46, Business::ISBN-3.007, Business::ISBN::Data-20210112.006, Canary::Stability-2013, Capture::Tiny-0.48, Carp-1.50, Carp::Clan-6.08, Carp::Heavy-1.50, Class::Accessor-0.51, Class::Data::Inheritable-0.09, Class::DBI-v3.0.17, Class::DBI::SQLite-0.11, Class::Inspector-1.36, Class::ISA-0.36, Class::Load-0.25, Class::Load::XS-0.10, Class::Singleton-1.6, Class::Tiny-1.008, Class::Trigger-0.15, Clone-0.45, Clone::Choose-0.010, common::sense-3.75, Config::General-2.65, Config::INI-0.027, Config::MVP-2.200012, Config::Simple-4.58, Config::Tiny-2.28, constant-1.33, CPAN::Meta::Check-0.014, CPANPLUS-0.9914, Crypt::DES-2.07, Crypt::Rijndael-1.16, Cwd-3.75, Cwd::Guard-0.05, Data::Dump-1.25, Data::Dumper-2.183, Data::Dumper::Concise-2.023, Data::Grove-0.08, Data::OptList-0.112, Data::Section-0.200007, Data::Section::Simple-0.07, Data::Stag-0.14, Data::Types-0.17, Data::UUID-1.226, Date::Handler-1.2, Date::Language-2.33, DateTime-1.58, DateTime::Locale-1.36, DateTime::TimeZone-2.53, DateTime::Tiny-1.07, DBD::CSV-0.59, DBD::SQLite-1.70, DBI-1.643, DBIx::Admin::TableInfo-3.04, DBIx::ContextualFetch-1.03, DBIx::Simple-1.37, Devel::CheckCompiler-0.07, Devel::CheckLib-1.16, Devel::Cycle-1.12, Devel::GlobalDestruction-0.14, Devel::OverloadInfo-0.007, Devel::Size-0.83, Devel::StackTrace-2.04, Digest::HMAC-1.04, Digest::MD5::File-0.08, Digest::SHA1-2.13, Dist::CheckConflicts-0.11, Dist::Zilla-6.025, Email::Date::Format-1.005, Encode-3.19, Encode::Locale-1.05, Error-0.17029, Eval::Closure-0.14, Exception::Class-1.45, Expect-1.35, Exporter-5.74, Exporter::Declare-0.114, Exporter::Tiny-1.004000, ExtUtils::CBuilder-0.280236, ExtUtils::Config-0.008, ExtUtils::Constant-0.25, ExtUtils::CppGuess-0.26, ExtUtils::Helpers-0.026, ExtUtils::InstallPaths-0.012, ExtUtils::MakeMaker-7.64, ExtUtils::ParseXS-3.44, Fennec::Lite-0.004, File::CheckTree-4.42, File::Copy::Recursive-0.45, File::Copy::Recursive::Reduced-0.006, File::Find::Rule-0.34, File::Find::Rule::Perl-1.16, File::Grep-0.02, File::HomeDir-1.006, File::Listing-6.15, File::Next-1.18, File::Path-2.18, File::pushd-1.016, File::Remove-1.61, File::ShareDir-1.118, File::ShareDir::Install-0.14, File::Slurp-9999.32, File::Slurp::Tiny-0.004, File::Slurper-0.013, File::Spec-3.75, File::Temp-0.2311, File::Which-1.27, Font::TTF-1.06, Getopt::Long-2.52, Getopt::Long::Descriptive-0.110, Git-0.42, GO-0.04, GO::Utils-0.15, Graph-0.9725, Graph::ReadWrite-2.10, Hash::Merge-0.302, Heap-0.80, HTML::Entities::Interpolate-1.10, HTML::Form-6.10, HTML::Parser-3.78, HTML::Tagset-3.20, HTML::Template-2.97, HTML::Tree-5.07, HTTP::Cookies-6.10, HTTP::Daemon-6.14, HTTP::Date-6.05, HTTP::Negotiate-6.01, HTTP::Request-6.37, HTTP::Tiny-0.082, if-0.0608, Ima::DBI-0.35, Import::Into-1.002005, Importer-0.026, Inline-0.86, IO::HTML-1.004, IO::Socket::SSL-2.075, IO::String-1.08, IO::Stringy-2.113, IO::Tty-1.16, IPC::Cmd-1.04, IPC::Run-20220807.0, IPC::Run3-0.048, IPC::System::Simple-1.30, JSON-4.09, JSON::XS-4.03, Lingua::EN::PluralToSingular-0.21, List::AllUtils-0.19, List::MoreUtils-0.430, List::MoreUtils::XS-0.430, List::SomeUtils-0.58, List::Util-1.63, List::UtilsBy-0.12, local::lib-2.000029, Locale::Maketext::Simple-0.21, Log::Dispatch-2.70, Log::Dispatchouli-2.023, Log::Handler-0.90, Log::Log4perl-1.56, Log::Message-0.08, Log::Message::Simple-0.10, Log::Report-1.33, Log::Report::Optional-1.07, Logger::Simple-2.0, LWP::MediaTypes-6.04, LWP::Protocol::https-6.10, LWP::Simple-6.67, Mail::Util-2.21, Math::Bezier-0.01, Math::CDF-0.1, Math::Round-0.07, Math::Utils-1.14, Math::VecStat-0.08, MCE::Mutex-1.879, Meta::Builder-0.004, MIME::Base64-3.16, MIME::Charset-1.013.1, MIME::Lite-3.033, MIME::Types-2.22, Mixin::Linewise::Readers-0.110, Mock::Quick-1.111, Module::Build-0.4231, Module::Build::Tiny-0.039, Module::Build::XSUtil-0.19, Module::CoreList-5.20220820, Module::Implementation-0.09, Module::Install-1.19, Module::Load-0.36, Module::Load::Conditional-0.74, Module::Metadata-1.000037, Module::Path-0.19, Module::Pluggable-5.2, Module::Runtime-0.016, Module::Runtime::Conflicts-0.003, Moo-2.005004, Moose-2.2201, MooseX::LazyRequire-0.11, MooseX::OneArgNew-0.006, MooseX::Role::Parameterized-1.11, MooseX::SetOnce-0.201, MooseX::Types-0.50, MooseX::Types::Perl-0.101343, Mouse-v2.5.10, Mozilla::CA-20211001, MRO::Compat-0.15, namespace::autoclean-0.29, namespace::clean-0.27, Net::Domain-3.14, Net::HTTP-6.22, Net::SMTP::SSL-1.04, Net::SNMP-v6.0.1, Net::SSLeay-1.92, Number::Compare-0.03, Number::Format-1.75, Object::Accessor-0.48, Object::InsideOut-4.05, Package::Constants-0.06, Package::DeprecationManager-0.17, Package::Stash-0.40, Package::Stash::XS-0.30, PadWalker-2.5, Parallel::ForkManager-2.02, Params::Check-0.38, Params::Util-1.102, Params::Validate-1.30, Params::ValidationCompiler-0.30, parent-0.238, Parse::RecDescent-1.967015, Path::Tiny-0.124, PDF::API2-2.043, Perl::OSType-1.010, PerlIO::utf8_strict-0.009, Pod::Elemental-0.103005, Pod::Escapes-1.07, Pod::Eventual-0.094002, Pod::LaTeX-0.61, Pod::Man-4.14, Pod::Parser-1.66, Pod::Plainer-1.04, Pod::POM-2.01, Pod::Simple-3.43, Pod::Weaver-4.018, Readonly-2.05, Regexp::Common-2017060201, Role::HasMessage-0.006, Role::Identifiable::HasIdent-0.008, Role::Tiny-2.002004, Scalar::Util-1.63, Scalar::Util::Numeric-0.40, Scope::Guard-0.21, Set::Array-0.30, Set::IntervalTree-0.12, Set::IntSpan-1.19, Set::IntSpan::Fast-1.15, Set::Object-1.42, Set::Scalar-1.29, Shell-0.73, Socket-2.036, Software::License-0.104002, Specio-0.48, SQL::Abstract-2.000001, SQL::Statement-1.414, Statistics::Basic-1.6611, Statistics::Descriptive-3.0800, Storable-3.25, strictures-2.000006, String::Flogger-1.101245, String::Print-0.94, String::RewritePrefix-0.008, String::Truncate-1.100602, Sub::Exporter-0.988, Sub::Exporter::ForMethods-0.100054, Sub::Exporter::Progressive-0.001013, Sub::Identify-0.14, Sub::Info-0.002, Sub::Install-0.928, Sub::Name-0.26, Sub::Quote-2.006006, Sub::Uplevel-0.2800, Sub::Uplevel-0.2800, SVG-2.87, Switch-2.17, Sys::Info-0.7811, Sys::Info::Base-0.7807, Sys::Info::Driver::Linux-0.7905, Sys::Info::Driver::Unknown-0.79, Template-3.101, Template::Plugin::Number::Format-1.06, Term::Encoding-0.03, Term::ReadKey-2.38, Term::ReadLine::Gnu-1.42, Term::Table-0.016, Term::UI-0.50, Test-1.26, Test2::Plugin::NoWarnings-0.09, Test2::Require::Module-0.000145, Test::ClassAPI-1.07, Test::CleanNamespaces-0.24, Test::Deep-1.130, Test::Differences-0.69, Test::Exception-0.43, Test::Fatal-0.016, Test::File::ShareDir::Dist-1.001002, Test::Harness-3.44, Test::LeakTrace-0.17, Test::Memory::Cycle-1.06, Test::More-1.302191, Test::More::UTF8-0.05, Test::Most-0.37, Test::Needs-0.002009, Test::NoWarnings-1.06, Test::Output-1.033, Test::Pod-1.52, Test::Requires-0.11, Test::RequiresInternet-0.05, Test::Simple-1.302191, Test::Version-2.09, Test::Warn-0.37, Test::Warnings-0.031, Test::Without::Module-0.20, Text::Aligner-0.16, Text::Balanced-2.06, Text::CSV-2.02, Text::CSV_XS-1.48, Text::Diff-1.45, Text::Format-0.62, Text::Glob-0.11, Text::Iconv-1.7, Text::ParseWords-3.31, Text::Soundex-3.05, Text::Table-1.134, Text::Template-1.61, Thread::Queue-3.13, Throwable-1.000, Tie::Function-0.02, Tie::IxHash-1.23, Time::HiRes-1.9764, Time::Local-1.30, Time::Piece-1.3401, Time::Piece::MySQL-0.06, Tree::DAG_Node-1.32, Try::Tiny-0.31, Types::Serialiser-1.01, Unicode::LineBreak-2019.001, UNIVERSAL::moniker-0.08, Unix::Processors-2.046, URI-5.12, URI::Escape-5.12, Variable::Magic-0.62, version-0.9929, Want-0.29, WWW::RobotRules-6.02, XML::Bare-0.53, XML::DOM-1.46, XML::Filter::BufferText-1.01, XML::NamespaceSupport-1.12, XML::Parser-2.46, XML::RegExp-0.04, XML::SAX-1.02, XML::SAX::Base-1.09, XML::SAX::Expat-0.51, XML::SAX::Writer-0.57, XML::Simple-2.25, XML::Tiny-2.07, XML::Twig-3.52, XML::XPath-1.48, XSLoader-0.24, YAML-1.30, YAML::Tiny-1.73"}, "Perl/5.36.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Carp-1.50, constant-1.33, Data::Dumper-2.183, Exporter-5.77, File::Path-2.18, File::Spec-3.75, Getopt::Long-2.54, IO::File-1.51, Text::ParseWords-3.31, Thread::Queue-3.13, threads-2.21"}, "Perl/5.38.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Carp-1.50, constant-1.33, Data::Dumper-2.183, Exporter-5.77, File::Path-2.18, File::Spec-3.75, Getopt::Long-2.54, IO::File-1.51, Text::ParseWords-3.31, Thread::Queue-3.13, threads-2.21"}}, "description": "Larry Wall's Practical Extraction and Report LanguageIncludes a small selection of extra CPAN packages for core functionality.", "homepage": "https://www.perl.org/"}, "PETSc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PETSc/3.20.3-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PETSc/3.22.5-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PETSc, pronounced PET-see (the S is silent), is a suite of data structures and routines for the scalable (parallel) solution of scientific applications modeled by partial differential equations.", "homepage": "https://www.mcs.anl.gov/petsc"}, "PGPLOT": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PGPLOT/5.2.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The PGPLOT Graphics Subroutine Library is a Fortran- or C-callable,device-independent graphics package for making simple scientific graphs. It is intendedfor making graphical images of publication quality with minimum effort on the part ofthe user. For most applications, the program can be device-independent, and the outputcan be directed to the appropriate device at run time.", "homepage": "https://sites.astro.caltech.edu/~tjp/pgplot/"}, "pigz": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pigz/2.8-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data. pigz was written by Mark Adler, and uses the zlib and pthread libraries.", "homepage": "https://zlib.net/pigz/"}, "Pillow-SIMD": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Pillow-SIMD/9.5.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors.", "homepage": "https://github.com/uploadcare/pillow-simd"}, "Pillow": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Pillow/9.4.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Pillow/10.0.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Pillow/10.2.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors.", "homepage": "https://pillow.readthedocs.org/"}, "Pint": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Pint/0.23-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Pint/0.24-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "appdirs-1.4.4, flexcache-0.3, flexparser-0.3.1, Pint-0.24"}}, "description": "Pint is a Python package to define, operate andmanipulate physical quantities: the product of a numerical value and aunit of measurement. It allows arithmetic operations between them andconversions from and to different units.", "homepage": "https://github.com/hgrecco/pint"}, "pixman": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pixman/0.42.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "pixman/0.42.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "pixman/0.42.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterization. Important users of pixman are the cairo graphics library and the X server.", "homepage": "http://www.pixman.org/"}, "pkg-config": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pkg-config/0.29.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the correct compiler options on the command line so an application can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` for instance, rather than hard-coding values on where to find glib (or other libraries).", "homepage": "https://www.freedesktop.org/wiki/Software/pkg-config/"}, "pkgconf": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pkgconf/1.8.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "pkgconf/1.9.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "pkgconf/1.9.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "pkgconf/2.0.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "pkgconf is a program which helps to configure compiler and linker flags for development libraries. It is similar to pkg-config from freedesktop.org.", "homepage": "https://github.com/pkgconf/pkgconf"}, "pkgconfig": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pkgconfig/1.5.5-GCCcore-12.2.0-python": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "pkgconfig/1.5.5-GCCcore-12.3.0-python": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "pkgconfig is a Python module to interface with the pkg-config command line tool", "homepage": "https://github.com/matze/pkgconfig"}, "plotly.py": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"plotly.py/5.16.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "packaging-23.1, plotly-5.16.0, tenacity-8.2.3"}}, "description": "An open-source, interactive graphing library for Python", "homepage": "https://plot.ly/python"}, "PLUMED": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PLUMED/2.9.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PLUMED/2.9.2-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PLUMED is an open source library for free energy calculations in molecular systems which works together with some of the most popular molecular dynamics engines. Free energy calculations can be performed as a function of many order parameters with a particular focus on biological problems, using state of the art methods such as metadynamics, umbrella sampling and Jarzynski-equation based steered MD. The software, written in C++, can be easily interfaced with both fortran and C/C++ codes.", "homepage": "https://www.plumed.org"}, "plumpy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"plumpy/0.25.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "aio-pika-9.4.3, aiormq-6.8.1, deprecation-2.1.0, kiwipy-0.8.5, nest-asyncio-1.6.0, pamqp-3.3.0, plumpy-0.25.0, shortuuid-1.0.13"}}, "description": "Bundle of Python packages required to run plumpy:A python workflows library that supports writing Processes with a well defined set ofinputs and outputs that can be strung together.", "homepage": "https://python.org/"}, "PLY": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PLY/3.11-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PLY is yet another implementation of lex and yacc for Python.", "homepage": "https://www.dabeaz.com/ply/"}, "PMIx": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PMIx/4.2.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PMIx/4.2.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PMIx/4.2.6-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Process Management for Exascale EnvironmentsPMI Exascale (PMIx) represents an attempt toprovide an extended version of the PMI standard specifically designedto support clusters up to and including exascale sizes. The overallobjective of the project is not to branch the existing pseudo-standarddefinitions - in fact, PMIx fully supports both of the existing PMI-1and PMI-2 APIs - but rather to (a) augment and extend those APIs toeliminate some current restrictions that impact scalability, and (b)provide a reference implementation of the PMI-server that demonstratesthe desired level of scalability.", "homepage": "https://pmix.org/"}, "PnetCDF": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PnetCDF/1.12.3-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Parallel netCDF: A Parallel I/O Library for NetCDF File Access", "homepage": "https://parallel-netcdf.github.io/"}, "poetry": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"poetry/1.5.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "attrs-23.1.0, build-0.10.0, CacheControl-0.12.14, certifi-2023.5.7, charset-normalizer-3.1.0, cleo-2.0.1, crashtest-0.4.1, dulwich-0.21.5, html5lib-1.1, idna-3.4, importlib_metadata-6.7.0, installer-0.7.0, jaraco.classes-3.2.3, jeepney-0.8.0, jsonschema-4.17.3, keyring-23.13.1, lockfile-0.12.2, more-itertools-9.1.0, msgpack-1.0.5, pexpect-4.8.0, pkginfo-1.9.6, platformdirs-3.8.0, poetry-1.5.1, poetry_core-1.6.1, poetry_plugin_export-1.4.0, ptyprocess-0.7.0, pyproject_hooks-1.0.0, pyrsistent-0.19.3, rapidfuzz-2.15.1, requests-2.31.0, requests-toolbelt-1.0.0, SecretStorage-3.3.3, shellingham-1.5.0, six-1.16.0, tomlkit-0.11.8, urllib3-1.26.16, webencodings-0.5.1, zipp-3.15.0"}, "poetry/1.6.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "attrs-23.1.0, build-0.10.0, cachecontrol-0.13.1, certifi-2023.7.22, charset-normalizer-3.3.1, cleo-2.0.1, crashtest-0.4.1, dulwich-0.21.6, html5lib-1.1, idna-3.4, importlib_metadata-6.8.0, installer-0.7.0, jaraco.classes-3.3.0, jeepney-0.8.0, jsonschema-4.17.3, keyring-24.2.0, lockfile-0.12.2, more-itertools-10.1.0, msgpack-1.0.7, pexpect-4.8.0, pkginfo-1.9.6, platformdirs-3.11.0, poetry-1.6.1, poetry_core-1.7.0, poetry_plugin_export-1.5.0, ptyprocess-0.7.0, pyproject_hooks-1.0.0, pyrsistent-0.20.0, rapidfuzz-2.15.2, requests-2.31.0, requests-toolbelt-1.0.0, SecretStorage-3.3.3, shellingham-1.5.4, six-1.16.0, tomlkit-0.12.1, urllib3-2.0.7, webencodings-0.5.1, zipp-3.17.0"}, "poetry/1.7.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "attrs-23.2.0, CacheControl-0.13.1, certifi-2023.11.17, charset-normalizer-3.3.2, cleo-2.1.0, crashtest-0.4.1, dulwich-0.21.7, fastjsonschema-2.19.1, html5lib-1.1, idna-3.6, importlib_metadata-7.0.1, installer-0.7.0, jaraco.classes-3.3.0, jeepney-0.8.0, jsonschema-4.21.0, jsonschema_specifications-2023.12.1, keyring-24.3.0, lockfile-0.12.2, more-itertools-10.2.0, msgpack-1.0.7, pexpect-4.9.0, pkginfo-1.9.6, platformdirs-3.11.0, poetry-1.7.1, poetry_core-1.8.1, poetry_plugin_export-1.6.0, ptyprocess-0.7.0, pyrsistent-0.20.0, rapidfuzz-3.6.1, referencing-0.32.1, requests-2.31.0, requests-toolbelt-1.0.0, rpds_py-0.17.1, SecretStorage-3.3.3, shellingham-1.5.4, six-1.16.0, tomlkit-0.12.3, urllib3-2.1.0, webencodings-0.5.1, zipp-3.17.0"}}, "description": "Python packaging and dependency management made easy. Poetry helps you declare, manage and install dependencies of Python projects, ensuring you have the right stack everywhere.", "homepage": "https://python-poetry.org"}, "PostgreSQL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PostgreSQL/16.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PostgreSQL/16.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PostgreSQL is a powerful, open source object-relational database system. It is fully ACID compliant, has full support for foreign keys, joins, views, triggers, and stored procedures (in multiple languages). It includes most SQL:2008 data types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERVAL, and TIMESTAMP. It also supports storage of binary large objects, including pictures, sounds, or video. It has native programming interfaces for C/C++, Java, .Net, Perl, Python, Ruby, Tcl, ODBC, among others, and exceptional documentation.", "homepage": "https://www.postgresql.org/"}, "pre-commit": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pre-commit/3.7.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "cfgv-3.4.0, identify-2.5.35, nodeenv-1.8.0, pre-commit-3.7.0"}}, "description": "A framework for managing and maintaining multi-language pre-commit hooks.Git hook scripts are useful for identifying simple issues before submission to code review. We run our hooks on every commit to automatically point out issues in code such as missing semicolons, trailing whitespace, and debug statements. By pointing these issues out before code review, this allows a code reviewer to focus on the architecture of a change while not wasting time with trivial style nitpicks.", "homepage": "https://pre-commit.com/"}, "PROJ": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PROJ/9.1.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PROJ/9.2.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PROJ/9.3.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Program proj is a standard Unix filter function which convertsgeographic longitude and latitude coordinates into cartesian coordinates", "homepage": "https://proj.org"}, "protobuf-python": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"protobuf-python/4.24.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "protobuf-python/4.25.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Python Protocol Buffers runtime library.", "homepage": "https://github.com/google/protobuf/"}, "protobuf": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"protobuf/23.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "protobuf/24.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "protobuf/25.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Protocol Buffers (a.k.a., protobuf) are Google'slanguage-neutral, platform-neutral, extensible mechanism forserializing structured data.", "homepage": "https://github.com/protocolbuffers/protobuf"}, "psutil": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"psutil/6.1.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "psutil-6.1.0"}}, "description": "A cross-platform process and system utilities module for Python", "homepage": "https://github.com/giampaolo/psutil"}, "psycopg": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"psycopg/3.1.18-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "psycopg/3.2.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "psycopg-3.2.1"}}, "description": "Psycopg is the most popular PostgreSQL adapter for the Python programming language.", "homepage": "https://psycopg.org/"}, "psycopg2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"psycopg2/2.9.9-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "psycopg2-2.9.9"}}, "description": "Psycopg is the most popular PostgreSQL adapter for the Python programming language.", "homepage": "https://psycopg.org/"}, "pugixml": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pugixml/1.14-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "pugixml is a light-weight C++ XML processing library", "homepage": "https://pugixml.org/"}, "PuLP": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PuLP/2.8.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PuLP/2.8.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PuLP is an LP modeler written in Python. PuLP can generate MPS or LP files andcall GLPK, COIN-OR CLP/CBC, CPLEX, GUROBI, MOSEK, XPRESS, CHOCO, MIPCL, SCIP tosolve linear problems.", "homepage": "https://github.com/coin-or/pulp"}, "py-cpuinfo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"py-cpuinfo/9.0.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "py-cpuinfo gets CPU info with pure Python.", "homepage": "https://github.com/workhorsy/py-cpuinfo"}, "pybind11": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pybind11/2.10.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "pybind11/2.11.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "pybind11/2.11.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa, mainly to create Python bindings of existing C++ code.", "homepage": "https://pybind11.readthedocs.io"}, "PyCairo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyCairo/1.25.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Python bindings for the cairo library", "homepage": "https://pycairo.readthedocs.io/"}, "pydantic": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pydantic/2.5.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "annotated_types-0.6.0, pydantic-2.5.3, pydantic_core-2.14.6"}, "pydantic/2.7.4-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "annotated_types-0.6.0, pydantic-2.7.4, pydantic_core-2.18.4"}}, "description": "Data validation and settings management using Python type hinting.", "homepage": "https://github.com/samuelcolvin/pydantic"}, "pydot": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pydot/2.0.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pydot-2.0.0"}}, "description": "Python interface to Graphviz's Dot language.", "homepage": "https://github.com/pydot/pydot"}, "PyEVTK": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyEVTK/1.6.0-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pyevtk-1.6.0"}}, "description": "EVTK (Export VTK) package allows exporting data to binary VTK files for visualization anddata analysis with any of the visualization packages that support VTK files", "homepage": "https://github.com/paulo-herrera/PyEVTK"}, "pyfaidx": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pyfaidx/0.7.2.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "pyfaidx/0.8.1.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "importlib_metadata-7.0.1, pyfaidx-0.8.1.1, zipp-3.17.0"}, "pyfaidx/0.8.1.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "pyfaidx: efficient pythonic random access to fasta subsequences", "homepage": "https://pypi.python.org/pypi/pyfaidx"}, "Pygments": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Pygments/2.18.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Generic syntax highlighter suitable for use in code hosting, forums, wikis or other applications that need to prettify source code.", "homepage": "https://pygments.org/"}, "PyGObject": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyGObject/3.46.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PyGObject is a Python package which provides bindings for GObject basedlibraries such as GTK, GStreamer, WebKitGTK, GLib, GIO and many more.", "homepage": "https://pygobject.readthedocs.io/"}, "pymatgen": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pymatgen/2023.12.18-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "aioitertools-0.11.0, anyio-3.7.1, dnspython-2.4.2, emmet-core-0.75.0, fastapi-0.105.0, h11-0.14.0, latexcodec-2.0.1, maggma-0.60.2, mongogrant-0.3.3, mongomock-4.1.2, monty-2023.11.3, mp-api-0.39.4, orjson-3.9.10, palettable-3.3.0, pybtex-0.24.0, pydantic-settings-2.1.0, pydash-7.0.6, pymatgen-2023.12.18, pymongo-4.6.1, python-dotenv-1.0.0, sentinels-1.0.0, sniffio-1.3.0, sshtunnel-0.4.0, starlette-0.27.0, uvicorn-0.25.0"}}, "description": "Python Materials Genomics is a robust materials analysis code that defines core object representations for structures and molecules with support for many electronic structure codes.", "homepage": "https://pymatgen.org/"}, "pyMBE": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pyMBE/0.8.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "biopandas-0.5.1.dev0, looseversion-1.1.2, mmtf-python-1.1.3, Pint-Pandas-0.5, pyMBE-0.8.0"}}, "description": "pyMBE: the Python-based Molecule Builder for ESPResSopyMBE provides tools to facilitate building up molecules with complex architecturesin the Molecular Dynamics software ESPResSo.", "homepage": ""}, "PyOpenGL": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyOpenGL/3.1.7-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "PyOpenGL-3.1.7, PyOpenGL-accelerate-3.1.7"}}, "description": "PyOpenGL is the most common cross platform Python binding to OpenGL and related APIs.", "homepage": "http://pyopengl.sourceforge.net"}, "pyproj": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pyproj/3.6.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Python interface to PROJ4 library for cartographic transformations", "homepage": "https://pyproj4.github.io/pyproj"}, "PyQt-builder": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyQt-builder/1.15.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "PyQt-builder-1.15.4"}}, "description": "PyQt-builder is the PEP 517 compliant build system for PyQt and projects that extend PyQt. It extends the SIP build system and uses Qt\u2019s qmake to perform the actual compilation and installation of extension modules.", "homepage": "http://www.example.com"}, "PyQt5": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyQt5/5.15.10-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company.This bundle includes PyQtWebEngine, a set of Python bindings for The Qt Company\u2019s Qt WebEngine framework.", "homepage": "https://www.riverbankcomputing.com/software/pyqt"}, "Pysam": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Pysam/0.21.0-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Pysam/0.22.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Pysam is a python module for reading and manipulating Samfiles. It's a lightweight wrapper of the samtools C-API. Pysam also includes an interface for tabix.", "homepage": "https://github.com/pysam-developers/pysam"}, "pystencils": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pystencils/1.3.4-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pystencils-1.3.4"}, "pystencils/1.3.4-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pystencils-1.3.4"}}, "description": "pystencils uses sympy to define stencil operations, that can be executed on numpy arrays", "homepage": "https://pycodegen.pages.i10git.cs.fau.de/pystencils"}, "PyTables": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyTables/3.9.2-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "blosc2-2.5.1, ndindex-1.8, tables-3.9.2"}}, "description": "PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data. PyTables is built on top of the HDF5 library, using the Python language and the NumPy package. It features an object-oriented interface that, combined with C extensions for the performance-critical parts of the code (generated using Cython), makes it a fast, yet extremely easy to use tool for interactively browsing, processing and searching very large amounts of data. One important feature of PyTables is that it optimizes memory and disk resources so that data takes much less space (specially if on-flight compression is used) than other solutions such as relational or object oriented databases.", "homepage": "https://www.pytables.org"}, "pytest-flakefinder": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pytest-flakefinder/1.1.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Runs tests multiple times to expose flakiness.", "homepage": "https://github.com/dropbox/pytest-flakefinder"}, "pytest-rerunfailures": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pytest-rerunfailures/12.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "pytest plugin to re-run tests to eliminate flaky failures.", "homepage": "https://github.com/pytest-dev/pytest-rerunfailures"}, "pytest-shard": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pytest-shard/0.1.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "pytest plugin to support parallelism across multiple machines.Shards tests based on a hash of their test name enabling easy parallelism across machines,suitable for a wide variety of continuous integration services.Tests are split at the finest level of granularity, individual test cases,enabling parallelism even if all of your tests are in a single file(or even single parameterized test method).", "homepage": "https://github.com/AdamGleave/pytest-shard"}, "pytest": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"pytest/7.4.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "elementpath-4.1.5, exceptiongroup-1.1.1, iniconfig-2.0.0, pluggy-1.2.0, pytest-7.4.2, xmlschema-2.5.0"}}, "description": "The pytest framework makes it easy to write small,readable tests, and can scale to support complex functional testing forapplications and libraries.", "homepage": "https://docs.pytest.org/en/latest/"}, "Python-bundle-PyPI": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Python-bundle-PyPI/2023.06-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "alabaster-0.7.13, appdirs-1.4.4, asn1crypto-1.5.1, atomicwrites-1.4.1, attrs-23.1.0, Babel-2.12.1, backports.entry-points-selectable-1.2.0, backports.functools_lru_cache-1.6.5, bitstring-4.0.2, blist-1.3.6, CacheControl-0.12.14, cachy-0.3.0, certifi-2023.5.7, cffi-1.15.1, chardet-5.1.0, charset-normalizer-3.1.0, cleo-2.0.1, click-8.1.3, cloudpickle-2.2.1, colorama-0.4.6, commonmark-0.9.1, crashtest-0.4.1, Cython-0.29.35, decorator-5.1.1, distlib-0.3.6, distro-1.8.0, docopt-0.6.2, docutils-0.20.1, doit-0.36.0, dulwich-0.21.5, ecdsa-0.18.0, editables-0.3, exceptiongroup-1.1.1, execnet-1.9.0, filelock-3.12.2, fsspec-2023.6.0, future-0.18.3, glob2-0.7, html5lib-1.1, idna-3.4, imagesize-1.4.1, importlib_metadata-6.7.0, importlib_resources-5.12.0, iniconfig-2.0.0, intervaltree-3.1.0, intreehooks-1.0, ipaddress-1.0.23, jaraco.classes-3.2.3, jeepney-0.8.0, Jinja2-3.1.2, joblib-1.2.0, jsonschema-4.17.3, keyring-23.13.1, keyrings.alt-4.2.0, liac-arff-2.5.0, lockfile-0.12.2, markdown-it-py-3.0.0, MarkupSafe-2.1.3, mdurl-0.1.2, mock-5.0.2, more-itertools-9.1.0, msgpack-1.0.5, netaddr-0.8.0, netifaces-0.11.0, packaging-23.1, pastel-0.2.1, pathlib2-2.3.7.post1, pathspec-0.11.1, pbr-5.11.1, pexpect-4.8.0, pkginfo-1.9.6, platformdirs-3.8.0, pluggy-1.2.0, pooch-1.7.0, psutil-5.9.5, ptyprocess-0.7.0, py-1.11.0, py_expression_eval-0.3.14, pyasn1-0.5.0, pycparser-2.21, pycryptodome-3.18.0, pydevtool-0.3.0, Pygments-2.15.1, Pygments-2.15.1, pylev-1.4.0, PyNaCl-1.5.0, pyparsing-3.1.0, pyrsistent-0.19.3, pytest-7.4.0, pytest-xdist-3.3.1, python-dateutil-2.8.2, pytoml-0.1.21, pytz-2023.3, rapidfuzz-2.15.1, regex-2023.6.3, requests-2.31.0, requests-toolbelt-1.0.0, rich-13.4.2, rich-click-1.6.1, scandir-1.10.0, SecretStorage-3.3.3, semantic_version-2.10.0, shellingham-1.5.0.post1, simplegeneric-0.8.1, simplejson-3.19.1, six-1.16.0, snowballstemmer-2.2.0, sortedcontainers-2.4.0, Sphinx-7.0.1, sphinx-bootstrap-theme-0.8.1, sphinxcontrib-applehelp-1.0.4, sphinxcontrib-devhelp-1.0.2, sphinxcontrib-htmlhelp-2.0.1, sphinxcontrib-jsmath-1.0.1, sphinxcontrib-qthelp-1.0.3, sphinxcontrib-serializinghtml-1.1.5, sphinxcontrib-websupport-1.2.4, tabulate-0.9.0, threadpoolctl-3.1.0, toml-0.10.2, tomli-2.0.1, tomli_w-1.0.0, tomlkit-0.11.8, ujson-5.8.0, urllib3-1.26.16, wcwidth-0.2.6, webencodings-0.5.1, xlrd-2.0.1, zipfile36-0.1.3, zipp-3.15.0"}, "Python-bundle-PyPI/2023.10-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "alabaster-0.7.13, appdirs-1.4.4, asn1crypto-1.5.1, atomicwrites-1.4.1, attrs-23.1.0, Babel-2.13.1, backports.entry-points-selectable-1.2.0, backports.functools_lru_cache-1.6.6, bitarray-2.8.2, bitstring-4.1.2, blist-1.3.6, cachecontrol-0.13.1, cachy-0.3.0, certifi-2023.7.22, cffi-1.16.0, chardet-5.2.0, charset-normalizer-3.3.1, cleo-2.0.1, click-8.1.7, cloudpickle-3.0.0, colorama-0.4.6, commonmark-0.9.1, crashtest-0.4.1, Cython-3.0.4, decorator-5.1.1, distlib-0.3.7, distro-1.8.0, docopt-0.6.2, docutils-0.20.1, doit-0.36.0, dulwich-0.21.6, ecdsa-0.18.0, editables-0.5, exceptiongroup-1.1.3, execnet-2.0.2, filelock-3.13.0, fsspec-2023.10.0, future-0.18.3, glob2-0.7, html5lib-1.1, idna-3.4, imagesize-1.4.1, importlib_metadata-6.8.0, importlib_resources-6.1.0, iniconfig-2.0.0, intervaltree-3.1.0, intreehooks-1.0, ipaddress-1.0.23, jaraco.classes-3.3.0, jeepney-0.8.0, Jinja2-3.1.2, joblib-1.3.2, jsonschema-4.17.3, keyring-24.2.0, keyrings.alt-5.0.0, liac-arff-2.5.0, lockfile-0.12.2, markdown-it-py-3.0.0, MarkupSafe-2.1.3, mdurl-0.1.2, mock-5.1.0, more-itertools-10.1.0, msgpack-1.0.7, netaddr-0.9.0, netifaces-0.11.0, packaging-23.2, pastel-0.2.1, pathlib2-2.3.7.post1, pathspec-0.11.2, pbr-5.11.1, pexpect-4.8.0, pkginfo-1.9.6, platformdirs-3.11.0, pluggy-1.3.0, pooch-1.8.0, psutil-5.9.6, ptyprocess-0.7.0, py-1.11.0, py_expression_eval-0.3.14, pyasn1-0.5.0, pycparser-2.21, pycryptodome-3.19.0, pydevtool-0.3.0, Pygments-2.16.1, Pygments-2.16.1, pylev-1.4.0, PyNaCl-1.5.0, pyparsing-3.1.1, pyrsistent-0.20.0, pytest-7.4.3, pytest-xdist-3.3.1, python-dateutil-2.8.2, pytoml-0.1.21, pytz-2023.3.post1, rapidfuzz-2.15.2, regex-2023.10.3, requests-2.31.0, requests-toolbelt-1.0.0, rich-13.6.0, rich-click-1.7.0, scandir-1.10.0, SecretStorage-3.3.3, semantic_version-2.10.0, shellingham-1.5.4, simplegeneric-0.8.1, simplejson-3.19.2, six-1.16.0, snowballstemmer-2.2.0, sortedcontainers-2.4.0, sphinx-7.2.6, sphinx-bootstrap-theme-0.8.1, sphinxcontrib-jsmath-1.0.1, sphinxcontrib_applehelp-1.0.7, sphinxcontrib_devhelp-1.0.5, sphinxcontrib_htmlhelp-2.0.4, sphinxcontrib_qthelp-1.0.6, sphinxcontrib_serializinghtml-1.1.9, sphinxcontrib_websupport-1.2.6, tabulate-0.9.0, threadpoolctl-3.2.0, toml-0.10.2, tomli-2.0.1, tomli_w-1.0.0, tomlkit-0.12.1, ujson-5.8.0, urllib3-2.0.7, wcwidth-0.2.8, webencodings-0.5.1, xlrd-2.0.1, zipfile36-0.1.3, zipp-3.17.0"}}, "description": "Bundle of Python packages from PyPI", "homepage": "https://python.org/"}, "python-casacore": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"python-casacore/3.5.2-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "python-casacore-3.5.2, setuptools-69.1.0"}}, "description": "Python-casacore is a set of Python bindings for casacore,a c++ library used in radio astronomy. Python-casacore replaces the old pyrap.", "homepage": "https://casacore.github.io/python-casacore/#"}, "python-isal": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"python-isal/1.1.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "python-isal/1.1.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "python-isal/1.6.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Faster zlib and gzip compatible compression and decompression by providing python bindings for the isa-l library.", "homepage": "https://github.com/pycompression/python-isal"}, "python-xxhash": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"python-xxhash/3.4.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "xxhash-3.4.1"}}, "description": "xxhash is a Python binding for the xxHash library by Yann Collet.", "homepage": "https://github.com/ifduyue/python-xxhash"}, "Python": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Python/2.7.18-GCCcore-12.2.0-bare": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Python/3.10.8-GCCcore-12.2.0-bare": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Python/3.10.8-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "alabaster-0.7.12, appdirs-1.4.4, asn1crypto-1.5.1, atomicwrites-1.4.1, attrs-22.1.0, Babel-2.11.0, backports.entry-points-selectable-1.2.0, backports.functools_lru_cache-1.6.4, bcrypt-4.0.1, bitstring-3.1.9, blist-1.3.6, CacheControl-0.12.11, cachy-0.3.0, certifi-2022.9.24, cffi-1.15.1, chardet-5.0.0, charset-normalizer-2.1.1, cleo-1.0.0a5, click-8.1.3, clikit-0.6.2, cloudpickle-2.2.0, colorama-0.4.6, commonmark-0.9.1, crashtest-0.3.1, cryptography-38.0.3, Cython-0.29.32, decorator-5.1.1, distlib-0.3.6, docopt-0.6.2, docutils-0.19, doit-0.36.0, dulwich-0.20.50, ecdsa-0.18.0, editables-0.3, exceptiongroup-1.0.1, execnet-1.9.0, filelock-3.8.0, flit-3.8.0, flit_core-3.8.0, flit_scm-1.7.0, fsspec-2022.11.0, future-0.18.2, glob2-0.7, hatch_fancy_pypi_readme-22.8.0, hatch_vcs-0.2.0, hatchling-1.11.1, html5lib-1.1, idna-3.4, imagesize-1.4.1, importlib_metadata-5.0.0, importlib_resources-5.10.0, iniconfig-1.1.1, intervaltree-3.1.0, intreehooks-1.0, ipaddress-1.0.23, jaraco.classes-3.2.3, jeepney-0.8.0, Jinja2-3.1.2, joblib-1.2.0, jsonschema-4.17.0, keyring-23.11.0, keyrings.alt-4.2.0, liac-arff-2.5.0, lockfile-0.12.2, MarkupSafe-2.1.1, mock-4.0.3, more-itertools-9.0.0, msgpack-1.0.4, netaddr-0.8.0, netifaces-0.11.0, packaging-21.3, paramiko-2.12.0, pastel-0.2.1, pathlib2-2.3.7.post1, pathspec-0.10.1, pbr-5.11.0, pexpect-4.8.0, pip-22.3.1, pkginfo-1.8.3, platformdirs-2.5.3, pluggy-1.0.0, poetry-1.2.2, poetry-core-1.3.2, poetry_plugin_export-1.2.0, pooch-1.6.0, psutil-5.9.4, ptyprocess-0.7.0, py-1.11.0, py_expression_eval-0.3.14, pyasn1-0.4.8, pycparser-2.21, pycryptodome-3.17, pydevtool-0.3.0, Pygments-2.13.0, pylev-1.4.0, PyNaCl-1.5.0, pyparsing-3.0.9, pyrsistent-0.19.2, pytest-7.2.0, pytest-xdist-3.1.0, python-dateutil-2.8.2, pytoml-0.1.21, pytz-2022.6, regex-2022.10.31, requests-2.28.1, requests-toolbelt-0.9.1, rich-13.1.0, rich-click-1.6.0, scandir-1.10.0, SecretStorage-3.3.3, semantic_version-2.10.0, setuptools-63.4.3, setuptools-rust-1.5.2, setuptools_scm-7.0.5, shellingham-1.5.0, simplegeneric-0.8.1, simplejson-3.17.6, six-1.16.0, snowballstemmer-2.2.0, sortedcontainers-2.4.0, Sphinx-5.3.0, sphinx-bootstrap-theme-0.8.1, sphinxcontrib-applehelp-1.0.2, sphinxcontrib-devhelp-1.0.2, sphinxcontrib-htmlhelp-2.0.0, sphinxcontrib-jsmath-1.0.1, sphinxcontrib-qthelp-1.0.3, sphinxcontrib-serializinghtml-1.1.5, sphinxcontrib-websupport-1.2.4, tabulate-0.9.0, threadpoolctl-3.1.0, toml-0.10.2, tomli-2.0.1, tomli_w-1.0.0, tomlkit-0.11.6, typing_extensions-4.4.0, ujson-5.5.0, urllib3-1.26.12, virtualenv-20.16.6, wcwidth-0.2.5, webencodings-0.5.1, wheel-0.38.4, xlrd-2.0.1, zipfile36-0.1.3, zipp-3.10.0"}, "Python/3.11.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "flit_core-3.9.0, packaging-23.1, pip-23.1.2, setuptools-67.7.2, setuptools_scm-7.1.0, tomli-2.0.1, typing_extensions-4.6.3, wheel-0.40.0"}, "Python/3.11.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "flit_core-3.9.0, packaging-23.2, pip-23.2.1, setuptools-68.2.2, setuptools-scm-8.0.4, tomli-2.0.1, typing_extensions-4.8.0, wheel-0.41.2"}}, "description": "Python is a programming language that lets you work more quickly and integrate your systems more effectively.", "homepage": "https://python.org/"}, "PyTorch": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyTorch/2.1.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Tensors and Dynamic neural networks in Python with strong GPU acceleration.PyTorch is a deep learning framework that puts Python first.", "homepage": "https://pytorch.org/"}, "PyVO": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyVO/1.7-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pyvo-1.7"}}, "description": "PyVO lets you find and retrieve astronomical data available from archives that support standard IVOA virtualobservatory service protocols.", "homepage": "https://pyvo.readthedocs.io/"}, "PyYAML": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyYAML/6.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PyYAML/6.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "PyYAML/6.0.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "PyYAML is a YAML parser and emitter for the Python programming language.", "homepage": "https://github.com/yaml/pyyaml"}, "PyZMQ": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"PyZMQ/25.1.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Python bindings for ZeroMQ", "homepage": "https://www.zeromq.org/bindings:python"}, "Qhull": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Qhull/2020.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Qhull/2020.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Qhull/2020.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, halfspace intersection about a point, furthest-site Delaunay triangulation, and furthest-site Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, and higher dimensions. Qhull implements the Quickhull algorithm for computing the convex hull.", "homepage": "http://www.qhull.org"}, "qrupdate": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"qrupdate/1.1.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions.", "homepage": "https://sourceforge.net/projects/qrupdate/"}, "QScintilla": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"QScintilla/2.14.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor control", "homepage": "https://www.riverbankcomputing.com/software/qscintilla"}, "Qt5": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Qt5/5.15.7-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Qt5/5.15.10-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Qt5/5.15.13-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Qt is a comprehensive cross-platform C++ application framework.", "homepage": "https://qt.io/"}, "QuantumESPRESSO": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"QuantumESPRESSO/7.2-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "QuantumESPRESSO/7.3.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Quantum ESPRESSO is an integrated suite of computer codesfor electronic-structure calculations and materials modeling at the nanoscale.It is based on density-functional theory, plane waves, and pseudopotentials(both norm-conserving and ultrasoft).", "homepage": "https://www.quantum-espresso.org"}, "R-bundle-Bioconductor": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "affxparser-1.70.0, affy-1.76.0, affycoretools-1.70.0, affyio-1.68.0, AgiMicroRna-2.48.0, agricolae-1.3-5, ALDEx2-1.30.0, ALL-1.40.0, ANCOMBC-2.0.2, annaffy-1.70.0, annotate-1.76.0, AnnotationDbi-1.60.2, AnnotationFilter-1.22.0, AnnotationForge-1.40.1, AnnotationHub-3.6.0, anytime-0.3.9, aroma.affymetrix-3.2.1, aroma.apd-0.6.1, aroma.core-3.3.0, aroma.light-3.28.0, ash-1.0-15, ATACseqQC-1.22.0, AUCell-1.20.2, aws.s3-0.3.21, aws.signature-0.6.0, babelgene-22.9, ballgown-2.30.0, basilisk-1.10.2, basilisk.utils-1.10.0, batchelor-1.14.1, baySeq-2.31.0, beachmat-2.14.0, Biobase-2.58.0, BiocBaseUtils-1.0.0, BiocFileCache-2.6.1, BiocGenerics-0.44.0, BiocIO-1.8.0, BiocManager-1.30.20, BiocNeighbors-1.16.0, BiocParallel-1.32.5, BiocSingular-1.14.0, BiocStyle-2.26.0, BiocVersion-3.16.0, biomaRt-2.54.0, biomformat-1.26.0, Biostrings-2.66.0, biovizBase-1.46.0, blme-1.0-5, bluster-1.8.0, bookdown-0.33, BSgenome-1.66.3, BSgenome.Cfamiliaris.UCSC.canFam3-1.4.0, BSgenome.Hsapiens.UCSC.hg19-1.4.3, BSgenome.Hsapiens.UCSC.hg38-1.4.5, BSgenome.Mmusculus.UCSC.mm10-1.4.3, bsseq-1.34.0, bumphunter-1.40.0, ca-0.71.1, CAGEr-2.4.0, CAMERA-1.54.0, Category-2.64.0, ccdata-1.24.0, ccmap-1.24.0, CGHbase-1.58.0, CGHcall-2.60.0, ChIPpeakAnno-3.32.0, chromVAR-1.20.2, clusterProfiler-4.6.2, CNEr-1.34.0, coloc-5.1.0.1, colorRamps-2.3.1, ComplexHeatmap-2.14.0, ConsensusClusterPlus-1.62.0, conumee-1.32.0, crossmeta-1.24.0, cummeRbund-2.40.0, cytolib-2.10.1, CytoML-2.10.0, dada2-1.26.0, ddPCRclust-1.18.0, DECIPHER-2.26.0, DeconRNASeq-1.40.0, decontam-1.18.0, decoupleR-2.4.0, DEGseq-1.52.0, DelayedArray-0.24.0, DelayedMatrixStats-1.20.0, densEstBayes-1.0-2.1, derfinder-1.32.0, derfinderHelper-1.32.0, DESeq2-1.38.3, diffcyt-1.18.0, dir.expiry-1.6.0, DirichletMultinomial-1.40.0, DNABarcodes-1.28.0, DNAcopy-1.72.3, DO.db-2.9, docopt-0.7.1, DOSE-3.24.2, dqrng-0.3.0, DRIMSeq-1.26.0, DropletUtils-1.18.1, DSS-2.46.0, dupRadar-1.28.0, DynDoc-1.76.0, EBImage-4.40.0, edgeR-3.40.2, egg-0.4.5, emmeans-1.8.5, enrichplot-1.18.3, EnsDb.Hsapiens.v75-2.99.0, EnsDb.Hsapiens.v79-2.99.0, EnsDb.Hsapiens.v86-2.99.0, ensembldb-2.22.0, escape-1.8.0, estimability-1.4.1, ExperimentHub-2.6.0, extraDistr-1.9.1, factoextra-1.0.7, fda-6.0.5, FDb.InfiniumMethylation.hg19-2.2.0, fds-1.8, feature-1.2.15, fgsea-1.24.0, filelock-1.0.2, flowAI-1.28.0, flowClean-1.36.0, flowClust-3.36.0, flowCore-2.10.0, flowDensity-1.32.0, flowFP-1.56.3, flowMerge-2.46.0, flowPeaks-1.44.0, FlowSOM-2.6.0, FlowSorted.Blood.EPIC-2.2.0, FlowSorted.CordBloodCombined.450k-1.14.0, flowStats-4.10.0, flowViz-1.62.0, flowWorkspace-4.10.1, FRASER-1.10.2, fresh-0.2.0, gcrma-2.70.0, gdsfmt-1.34.0, genefilter-1.80.3, geneLenDataBase-1.34.0, geneplotter-1.76.0, GENESIS-2.28.0, GENIE3-1.20.0, GenomeInfoDb-1.34.9, GenomeInfoDbData-1.2.9, GenomicAlignments-1.34.1, GenomicFeatures-1.50.4, GenomicFiles-1.34.0, GenomicRanges-1.50.2, GenomicScores-2.10.0, GEOmap-2.5-0, GEOquery-2.66.0, ggbio-1.46.0, ggcyto-1.26.4, ggdendro-0.1.23, ggnewscale-0.4.8, ggpointdensity-0.1.0, ggrastr-1.0.1, ggseqlogo-0.1, ggthemes-4.2.4, ggtree-3.6.2, GLAD-2.62.0, Glimma-2.8.0, GlobalAncova-4.16.0, globaltest-5.52.0, GO.db-3.16.0, GOSemSim-2.24.0, goseq-1.50.0, GOstats-2.64.0, graph-1.76.0, graphite-1.44.0, GSEABase-1.60.0, gsmoothr-0.1.7, gson-0.1.0, GSVA-1.46.0, Gviz-1.42.1, GWASExactHW-1.01, GWASTools-1.44.0, HDF5Array-1.26.0, HDO.db-0.99.1, hdrcde-3.4, heatmaply-1.4.2, hgu133plus2.db-3.13.0, HiCBricks-1.16.0, HiCcompare-1.20.0, HMMcopy-1.40.0, Homo.sapiens-1.3.1, IHW-1.26.0, IlluminaHumanMethylation450kanno.ilmn12.hg19-0.6.1, IlluminaHumanMethylation450kmanifest-0.4.0, IlluminaHumanMethylationEPICanno.ilm10b2.hg19-0.6.0, IlluminaHumanMethylationEPICanno.ilm10b4.hg19-0.6.0, IlluminaHumanMethylationEPICmanifest-0.3.0, illuminaio-0.40.0, impute-1.72.3, InteractionSet-1.26.1, interactiveDisplayBase-1.36.0, intervals-0.15.4, IRanges-2.32.0, isva-1.9, JASPAR2020-0.99.10, KEGGgraph-1.58.3, KEGGREST-1.38.0, LEA-3.10.2, limma-3.54.2, log4r-0.4.3, lpsymphony-1.26.3, lsa-0.73.3, lumi-2.50.0, M3Drop-1.24.0, marray-1.76.0, maSigPro-1.70.0, MassSpecWavelet-1.64.1, MatrixGenerics-1.10.0, MBA-0.1-0, MEDIPS-1.50.0, metagenomeSeq-1.40.0, metaMA-3.1.3, metap-1.8, metapod-1.6.0, MethylSeekR-1.38.0, methylumi-2.44.0, Mfuzz-2.58.0, mia-1.6.0, minfi-1.44.0, missMethyl-1.32.0, mixOmics-6.22.0, mixsqp-0.3-48, MLInterfaces-1.78.0, MotifDb-1.40.0, motifmatchr-1.20.0, motifStack-1.42.0, MsCoreUtils-1.10.0, MsFeatures-1.6.0, msigdbr-7.5.1, MSnbase-2.24.2, MSstats-4.6.5, MSstatsConvert-1.8.3, MSstatsLiP-1.4.1, MSstatsPTM-2.0.3, MSstatsTMT-2.6.1, MultiAssayExperiment-1.24.0, MultiDataSet-1.26.0, multtest-2.54.0, muscat-1.12.1, mutoss-0.1-13, mzID-1.36.0, mzR-2.32.0, NADA-1.6-1.1, ncdfFlow-2.44.0, NMF-0.25, NOISeq-2.42.0, numbat-1.2.2, oligo-1.62.2, oligoClasses-1.60.0, ontologyIndex-2.10, oompaBase-3.2.9, oompaData-3.1.3, openCyto-2.10.1, org.Hs.eg.db-3.16.0, org.Mm.eg.db-3.16.0, org.Rn.eg.db-3.16.0, OrganismDbi-1.40.0, OUTRIDER-1.16.3, pathview-1.38.0, pcaMethods-1.90.0, perm-1.0-0.2, PFAM.db-3.16.0, phyloseq-1.42.0, pmp-1.10.0, polyester-1.34.0, poweRlaw-0.70.6, preprocessCore-1.60.2, pRoloc-1.38.2, pRolocdata-1.36.0, pRolocGUI-2.8.0, ProtGenerics-1.30.0, PRROC-1.3.1, PSCBS-0.66.0, PureCN-2.4.0, qap-0.1-2, QDNAseq-1.34.0, qlcMatrix-0.9.7, qqconf-1.3.1, quantsmooth-1.64.0, qvalue-2.30.0, R.devices-2.17.1, R.filesets-2.15.0, R.huge-0.9.0, rainbow-3.7, randomcoloR-1.1.0.1, rARPACK-0.11-0, RBGL-1.74.0, RcisTarget-1.18.2, RcppAnnoy-0.0.20, RcppHNSW-0.4.1, RcppML-0.3.7, RcppZiggurat-0.1.6, reactome.db-1.82.0, ReactomePA-1.42.0, regioneR-1.30.0, reldist-1.7-2, remaCor-0.0.11, Repitools-1.44.0, ReportingTools-2.38.0, ResidualMatrix-1.8.0, restfulr-0.0.15, Rfast-2.0.7, RFOC-3.4-6, rGADEM-2.46.0, Rgraphviz-2.42.0, rhdf5-2.42.0, rhdf5filters-1.10.0, Rhdf5lib-1.20.0, Rhtslib-2.0.0, Ringo-1.62.0, RNASeqPower-1.38.0, RnBeads-2.16.0, RnBeads.hg19-1.30.0, RnBeads.hg38-1.30.0, RnBeads.mm10-2.6.0, RnBeads.mm9-1.30.0, RnBeads.rn5-1.30.0, ROC-1.74.0, rols-2.26.0, ROntoTools-2.26.0, ropls-1.30.0, RPMG-2.2-3, RProtoBufLib-2.10.0, Rsamtools-2.14.0, RSEIS-4.1-4, Rsubread-2.12.3, rsvd-1.0.5, rtracklayer-1.58.0, Rwave-2.6-5, S4Vectors-0.36.2, samr-3.0, SamSPECTRAL-1.52.0, SC3-1.26.2, ScaledMatrix-1.6.0, SCANVIS-1.12.0, scater-1.26.1, scattermore-0.8, scDblFinder-1.12.0, scistreer-1.1.0, scran-1.26.2, scrime-1.3.5, scuttle-1.8.4, SeqArray-1.38.0, seqLogo-1.64.0, SeqVarTools-1.36.0, seriation-1.4.2, Seurat-4.3.0, SeuratObject-4.1.3, shinyBS-0.61.1, shinydashboardPlus-2.0.3, shinyFiles-0.9.3, shinyhelper-0.3.2, shinypanel-0.1.5, shinyWidgets-0.7.6, ShortRead-1.56.1, siggenes-1.72.0, Signac-1.9.0, simplifyEnrichment-1.8.0, SingleCellExperiment-1.20.0, SingleR-2.0.0, sitmo-2.0.2, slingshot-2.6.0, SMVar-1.3.4, SNPRelate-1.32.2, snpStats-1.48.0, sparseMatrixStats-1.10.0, sparsesvd-0.2-2, SpatialExperiment-1.8.1, SPIA-2.50.0, splancs-2.01-43, SPOTlight-1.2.0, stageR-1.20.0, struct-1.10.0, structToolbox-1.10.1, SummarizedExperiment-1.28.0, susieR-0.12.35, sva-3.46.0, TailRank-3.2.2, TFBSTools-1.36.0, TFMPvalue-0.0.9, tkWidgets-1.76.0, TrajectoryUtils-1.6.0, treeio-1.22.0, TreeSummarizedExperiment-2.6.0, TSP-1.2-3, TxDb.Hsapiens.UCSC.hg19.knownGene-3.2.2, TxDb.Mmusculus.UCSC.mm10.knownGene-3.10.0, tximport-1.26.1, UCell-2.2.0, uwot-0.1.14, variancePartition-1.28.7, VariantAnnotation-1.44.1, venn-1.11, vsn-3.66.0, waiter-0.2.5, wateRmelon-2.4.0, WGCNA-1.72-1, widgetTools-1.76.0, Wrench-1.16.0, xcms-3.20.0, XVector-0.38.0, zCompositions-1.4.0-1, zellkonverter-1.8.0, zlibbioc-1.44.0"}, "R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "affxparser-1.74.0, affy-1.80.0, affycoretools-1.74.0, affyio-1.72.0, AgiMicroRna-2.52.0, agricolae-1.3-7, ALDEx2-1.34.0, ALL-1.44.0, ANCOMBC-2.4.0, annaffy-1.74.0, annotate-1.80.0, AnnotationDbi-1.64.1, AnnotationFilter-1.26.0, AnnotationForge-1.44.0, AnnotationHub-3.10.0, anytime-0.3.9, aroma.affymetrix-3.2.1, aroma.apd-0.7.0, aroma.core-3.3.0, aroma.light-3.32.0, ash-1.0-15, ATACseqQC-1.26.0, AUCell-1.24.0, aws.s3-0.3.21, aws.signature-0.6.0, babelgene-22.9, ballgown-2.34.0, basilisk-1.14.2, basilisk.utils-1.14.1, batchelor-1.18.1, baySeq-2.36.0, beachmat-2.18.0, BH-1.84.0-0, Biobase-2.62.0, BiocBaseUtils-1.4.0, BiocFileCache-2.10.1, BiocGenerics-0.48.0, BiocIO-1.12.0, BiocManager-1.30.22, BiocNeighbors-1.20.2, BiocParallel-1.36.0, BiocSingular-1.18.0, BiocStyle-2.30.0, BiocVersion-3.18.1, biomaRt-2.58.0, biomformat-1.30.0, Biostrings-2.70.0, biovizBase-1.50.0, blme-1.0-5, bluster-1.12.0, bookdown-0.37, BSgenome-1.70.1, BSgenome.Cfamiliaris.UCSC.canFam3-1.4.0, BSgenome.Hsapiens.UCSC.hg19-1.4.3, BSgenome.Hsapiens.UCSC.hg38-1.4.5, BSgenome.Mmusculus.UCSC.mm10-1.4.3, bsseq-1.38.0, bumphunter-1.44.0, ca-0.71.1, CAGEfightR-1.22.0, CAGEr-2.8.0, CAMERA-1.58.0, Category-2.68.0, ccdata-1.28.0, ccmap-1.28.0, CGHbase-1.62.0, CGHcall-2.64.0, ChIPpeakAnno-3.36.0, ChIPseeker-1.38.0, chromVAR-1.24.0, clusterProfiler-4.10.0, CNEr-1.38.0, coloc-5.2.3, colorRamps-2.3.1, ComplexHeatmap-2.18.0, ConsensusClusterPlus-1.66.0, conumee-1.36.0, crossmeta-1.28.0, cummeRbund-2.44.0, cytolib-2.14.1, CytoML-2.14.0, dada2-1.30.0, ddPCRclust-1.22.0, DECIPHER-2.30.0, DeconRNASeq-1.44.0, decontam-1.22.0, decoupleR-2.8.0, DEGseq-1.56.1, DelayedArray-0.28.0, DelayedMatrixStats-1.24.0, densEstBayes-1.0-2.2, derfinder-1.36.0, derfinderHelper-1.36.0, DESeq2-1.42.0, diffcyt-1.22.0, dir.expiry-1.10.0, directlabels-2024.1.21, DirichletMultinomial-1.44.0, DNABarcodes-1.32.0, DNAcopy-1.76.0, DO.db-2.9, docopt-0.7.1, DOSE-3.28.2, dqrng-0.3.2, DRIMSeq-1.30.0, DropletUtils-1.22.0, DSS-2.50.1, dupRadar-1.32.0, DynDoc-1.80.0, EBImage-4.44.0, edgeR-4.0.12, egg-0.4.5, emmeans-1.10.0, enrichplot-1.22.0, EnsDb.Hsapiens.v75-2.99.0, EnsDb.Hsapiens.v79-2.99.0, EnsDb.Hsapiens.v86-2.99.0, ensembldb-2.26.0, escape-1.12.0, estimability-1.4.1, ExperimentHub-2.10.0, extraDistr-1.10.0, factoextra-1.0.7, fANCOVA-0.6-1, fda-6.1.4, FDb.InfiniumMethylation.hg19-2.2.0, fds-1.8, feature-1.2.15, fgsea-1.28.0, filelock-1.0.3, flowAI-1.32.0, flowClean-1.40.0, flowClust-3.40.0, flowCore-2.14.0, flowDensity-1.36.1, flowFP-1.60.0, flowMerge-2.50.0, flowPeaks-1.48.0, FlowSOM-2.10.0, FlowSorted.Blood.EPIC-2.6.0, FlowSorted.CordBloodCombined.450k-1.18.0, flowStats-4.14.1, flowViz-1.66.0, flowWorkspace-4.14.2, FRASER-1.14.0, fresh-0.2.0, gcrma-2.74.0, gdsfmt-1.38.0, genefilter-1.84.0, geneLenDataBase-1.38.0, geneplotter-1.80.0, GENESIS-2.32.0, GENIE3-1.24.0, genomation-1.34.0, GenomeInfoDb-1.38.5, GenomeInfoDbData-1.2.11, GenomicAlignments-1.38.2, GenomicFeatures-1.54.1, GenomicFiles-1.38.0, GenomicInteractions-1.36.0, GenomicRanges-1.54.1, GenomicScores-2.14.3, GEOmap-2.5-5, GEOquery-2.70.0, ggbio-1.50.0, ggcyto-1.30.0, ggdendro-0.1.23, ggnewscale-0.4.9, ggpointdensity-0.1.0, ggrastr-1.0.2, ggseqlogo-0.1, ggthemes-5.0.0, ggtree-3.10.0, GLAD-2.66.0, Glimma-2.12.0, GlobalAncova-4.20.0, globaltest-5.56.0, GO.db-3.18.0, GOSemSim-2.28.1, goseq-1.54.0, GOstats-2.68.0, graph-1.80.0, graphite-1.48.0, GSEABase-1.64.0, gsmoothr-0.1.7, gson-0.1.0, GSVA-1.50.0, Gviz-1.46.1, GWASExactHW-1.01, GWASTools-1.48.0, HDF5Array-1.30.0, HDO.db-0.99.1, hdrcde-3.4, heatmaply-1.5.0, hgu133plus2.db-3.13.0, HiCBricks-1.20.0, HiCcompare-1.24.0, HMMcopy-1.44.0, Homo.sapiens-1.3.1, IHW-1.30.0, IlluminaHumanMethylation450kanno.ilmn12.hg19-0.6.1, IlluminaHumanMethylation450kmanifest-0.4.0, IlluminaHumanMethylationEPICanno.ilm10b2.hg19-0.6.0, IlluminaHumanMethylationEPICanno.ilm10b4.hg19-0.6.0, IlluminaHumanMethylationEPICmanifest-0.3.0, illuminaio-0.44.0, impute-1.76.0, InteractionSet-1.30.0, interactiveDisplayBase-1.40.0, intervals-0.15.4, IRanges-2.36.0, isva-1.9, JASPAR2020-0.99.10, KEGGgraph-1.62.0, KEGGREST-1.42.0, LEA-3.14.0, limma-3.58.1, log4r-0.4.3, lpsymphony-1.30.0, lsa-0.73.3, lumi-2.54.0, M3Drop-1.28.0, marray-1.80.0, maSigPro-1.74.0, MassSpecWavelet-1.68.0, MatrixGenerics-1.14.0, MBA-0.1-0, MEDIPS-1.54.0, MetaboCoreUtils-1.10.0, metagenomeSeq-1.43.0, metaMA-3.1.3, metap-1.9, metapod-1.10.1, MethylSeekR-1.42.0, methylumi-2.48.0, Mfuzz-2.62.0, mia-1.10.0, minfi-1.48.0, missMethyl-1.36.0, mixOmics-6.26.0, mixsqp-0.3-54, MLInterfaces-1.82.0, MotifDb-1.44.0, motifmatchr-1.24.0, motifStack-1.46.0, MsCoreUtils-1.14.1, MsExperiment-1.4.0, MsFeatures-1.10.0, msigdbr-7.5.1, MSnbase-2.28.1, MSstats-4.10.0, MSstatsConvert-1.12.0, MSstatsLiP-1.8.1, MSstatsPTM-2.4.2, MSstatsTMT-2.10.0, MultiAssayExperiment-1.28.0, MultiDataSet-1.30.0, multtest-2.58.0, muscat-1.16.0, mutoss-0.1-13, mzID-1.40.0, mzR-2.36.0, NADA-1.6-1.1, ncdfFlow-2.48.0, NMF-0.26, NOISeq-2.46.0, numbat-1.3.2-1, oligo-1.66.0, oligoClasses-1.64.0, ontologyIndex-2.11, oompaBase-3.2.9, oompaData-3.1.3, openCyto-2.14.0, org.Hs.eg.db-3.18.0, org.Mm.eg.db-3.18.0, org.Rn.eg.db-3.18.0, OrganismDbi-1.44.0, OUTRIDER-1.20.0, pathview-1.42.0, pcaMethods-1.94.0, perm-1.0-0.4, PFAM.db-3.18.0, phyloseq-1.46.0, plyranges-1.22.0, pmp-1.14.0, polyester-1.38.0, poweRlaw-0.70.6, preprocessCore-1.64.0, pRoloc-1.42.0, pRolocdata-1.40.0, pRolocGUI-2.12.0, ProtGenerics-1.34.0, PRROC-1.3.1, PSCBS-0.66.0, PureCN-2.8.1, qap-0.1-2, QDNAseq-1.38.0, QFeatures-1.12.0, qlcMatrix-0.9.7, qqconf-1.3.2, quantsmooth-1.68.0, qvalue-2.34.0, R.devices-2.17.1, R.filesets-2.15.0, R.huge-0.10.1, rainbow-3.8, randomcoloR-1.1.0.1, rARPACK-0.11-0, RBGL-1.78.0, RcisTarget-1.22.0, RcppAnnoy-0.0.22, RcppHNSW-0.5.0, RcppML-0.3.7, RcppZiggurat-0.1.6, reactome.db-1.86.2, ReactomePA-1.46.0, regioneR-1.34.0, reldist-1.7-2, remaCor-0.0.16, Repitools-1.48.0, ReportingTools-2.42.3, ResidualMatrix-1.12.0, restfulr-0.0.15, Rfast-2.1.0, RFOC-3.4-10, rGADEM-2.50.0, Rgraphviz-2.46.0, rhdf5-2.46.1, rhdf5filters-1.14.1, Rhdf5lib-1.24.1, Rhtslib-2.4.1, Ringo-1.66.0, RNASeqPower-1.42.0, RnBeads-2.20.0, RnBeads.hg19-1.34.0, RnBeads.hg38-1.34.0, RnBeads.mm10-2.10.0, RnBeads.mm9-1.34.0, RnBeads.rn5-1.34.0, ROC-1.78.0, rols-2.30.0, ROntoTools-2.30.0, ropls-1.34.0, RPMG-2.2-7, RProtoBufLib-2.14.0, Rsamtools-2.18.0, RSEIS-4.1-6, Rsubread-2.16.1, rsvd-1.0.5, rtracklayer-1.62.0, Rwave-2.6-5, S4Arrays-1.2.0, S4Vectors-0.40.2, samr-3.0, SamSPECTRAL-1.56.0, SC3-1.30.0, ScaledMatrix-1.10.0, SCANVIS-1.16.0, scater-1.30.1, scattermore-1.2, scDblFinder-1.16.0, scistreer-1.2.0, scran-1.30.2, scrime-1.3.5, scuttle-1.12.0, SeqArray-1.42.0, seqLogo-1.68.0, seqPattern-1.34.0, SeqVarTools-1.40.0, seriation-1.5.4, Seurat-5.0.1, SeuratObject-5.0.1, shinyBS-0.61.1, shinydashboardPlus-2.0.3, shinyFiles-0.9.3, shinyhelper-0.3.2, shinypanel-0.1.5, shinyWidgets-0.8.1, ShortRead-1.60.0, siggenes-1.76.0, Signac-1.12.0, SimBu-1.4.3, simplifyEnrichment-1.12.0, SingleCellExperiment-1.24.0, SingleR-2.4.1, sitmo-2.0.2, slingshot-2.10.0, SMVar-1.3.4, SNPRelate-1.36.0, snpStats-1.52.0, SparseArray-1.2.3, sparseMatrixStats-1.14.0, sparsesvd-0.2-2, SpatialExperiment-1.12.0, Spectra-1.12.0, SPIA-2.54.0, splancs-2.01-44, SPOTlight-1.6.7, stageR-1.24.0, struct-1.14.0, structToolbox-1.14.0, SummarizedExperiment-1.32.0, susieR-0.12.35, sva-3.50.0, TailRank-3.2.2, TFBSTools-1.40.0, TFMPvalue-0.0.9, tkWidgets-1.80.0, TrajectoryUtils-1.10.0, treeio-1.26.0, TreeSummarizedExperiment-2.10.0, TSP-1.2-4, TxDb.Hsapiens.UCSC.hg19.knownGene-3.2.2, TxDb.Mmusculus.UCSC.mm10.knownGene-3.10.0, tximport-1.30.0, UCell-2.6.2, uwot-0.1.16, variancePartition-1.32.2, VariantAnnotation-1.48.1, venn-1.12, vsn-3.70.0, waiter-0.2.5, wateRmelon-2.8.0, WGCNA-1.72-5, widgetTools-1.80.0, Wrench-1.20.0, xcms-4.0.2, XVector-0.42.0, zCompositions-1.5.0-1, zellkonverter-1.12.1, zlibbioc-1.48.0"}}, "description": "Bioconductor provides tools for the analysis and coprehension of high-throughput genomic data.", "homepage": "https://bioconductor.org"}, "R-bundle-CRAN": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"R-bundle-CRAN/2023.12-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "abc-2.2.1, abc.data-1.0, abe-3.0.1, abind-1.4-5, acepack-1.4.2, adabag-5.0, ade4-1.7-22, ADGofTest-0.3, admisc-0.34, aggregation-1.0.1, AICcmodavg-2.3-3, akima-0.6-3.4, alabama-2023.1.0, AlgDesign-1.2.1, alluvial-0.1-2, AMAPVox-1.0.1, animation-2.7, aod-1.3.2, apcluster-1.4.11, ape-5.7-1, aplot-0.2.2, argparse-2.2.2, aricode-1.0.3, arm-1.13-1, arrayhelpers-1.1-0, asnipe-1.1.17, assertive-0.3-6, assertive.base-0.0-9, assertive.code-0.0-4, assertive.data-0.0-3, assertive.data.uk-0.0-2, assertive.data.us-0.0-2, assertive.datetimes-0.0-3, assertive.files-0.0-2, assertive.matrices-0.0-2, assertive.models-0.0-2, assertive.numbers-0.0-2, assertive.properties-0.0-5, assertive.reflection-0.0-5, assertive.sets-0.0-3, assertive.strings-0.0-3, assertive.types-0.0-3, assertthat-0.2.1, AUC-0.3.2, audio-0.1-11, aws-2.5-3, awsMethods-1.1-1, backports-1.4.1, bacr-1.0.1, bartMachine-1.3.4.1, bartMachineJARs-1.2.1, base64-2.0.1, BatchJobs-1.9, batchmeans-1.0-4, BayesianTools-0.1.8, BayesLogit-2.1, bayesm-3.1-6, BayesPen-1.0, bayesplot-1.10.0, BB-2019.10-1, BBmisc-1.13, bbmle-1.0.25.1, BCEE-1.3.2, BDgraph-2.72, bdsmatrix-1.3-6, beanplot-1.3.1, beeswarm-0.4.0, berryFunctions-1.22.0, betareg-3.1-4, BH-1.81.0-1, BiasedUrn-2.0.11, bibtex-0.5.1, BIEN-1.2.6, bigD-0.2.0, BIGL-1.8.0, bigmemory-4.6.1, bigmemory.sri-0.1.6, bindr-0.1.1, bindrcpp-0.2.2, bio3d-2.4-4, biom-0.3.12, biomod2-4.2-4, bit-4.0.5, bit64-4.0.5, bitops-1.0-7, blavaan-0.5-2, blob-1.2.4, BMA-3.18.17, bmp-0.3, bnlearn-4.9.1, bold-1.3.0, boot-1.3-28.1, bootstrap-2019.6, Boruta-8.0.0, brglm-0.7.2, bridgedist-0.1.2, bridgesampling-1.1-2, brms-2.20.4, Brobdingnag-1.2-9, broom-1.0.5, broom.helpers-1.14.0, broom.mixed-0.2.9.4, bst-0.3-24, Cairo-1.6-2, calibrate-1.7.7, car-3.1-2, carData-3.0-5, caret-6.0-94, catlearn-1.0, caTools-1.18.2, CBPS-0.23, celestial-1.4.6, cellranger-1.1.0, cgdsr-1.3.0, cghFLasso-0.2-1, changepoint-2.2.4, checkmate-2.3.1, chemometrics-1.4.4, chk-0.9.1, chkptstanr-0.1.1, chron-2.3-61, circlize-0.4.15, circular-0.5-0, class-7.3-22, classInt-0.4-10, cld2-1.2.4, clisymbols-1.2.0, clock-0.7.0, clue-0.3-65, cluster-2.1.6, clusterGeneration-1.3.8, clusterRepro-0.9, clustree-0.5.1, clValid-0.7, cmna-1.0.5, cmprsk-2.2-11, cNORM-3.0.4, cobalt-4.5.2, cobs-1.3-5, coda-0.19-4, codetools-0.2-19, coin-1.4-3, collapse-2.0.7, colorspace-2.1-0, colourpicker-1.3.0, combinat-0.0-8, ComICS-1.0.4, ComplexUpset-1.3.3, compositions-2.0-6, CompQuadForm-1.4.3, conditionz-0.1.0, conflicted-1.2.0, conquer-1.3.3, ConsRank-2.1.3, contfrac-1.1-12, copCAR-2.0-4, copula-1.1-3, corpcor-1.6.10, corrplot-0.92, covr-3.6.4, CovSel-1.2.1, covsim-1.0.0, cowplot-1.1.1, coxed-0.3.3, coxme-2.2-18.1, crfsuite-0.4.2, crosstalk-1.2.1, crul-1.4.0, cSEM-0.5.0, csSAM-1.2.4, ctmle-0.1.2, cubature-2.1.0, cubelyr-1.0.2, cvAUC-1.1.4, CVST-0.2-3, CVXR-1.0-11, d3Network-0.5.2.1, dagitty-0.3-4, data.table-1.14.10, data.tree-1.1.0, DataCombine-0.2.21, date-1.2-42, dbarts-0.9-25, DBI-1.1.3, dbplyr-2.4.0, dbscan-1.1-12, dcurver-0.9.2, ddalpha-1.3.13, deal-1.2-42, debugme-1.1.0, deldir-2.0-2, dendextend-1.17.1, DEoptim-2.2-8, DEoptimR-1.1-3, DepthProc-2.1.5, Deriv-4.1.3, DescTools-0.99.52, deSolve-1.40, dfidx-0.0-5, DHARMa-0.4.6, dHSIC-2.1, diagram-1.6.5, DiagrammeR-1.0.10, DiceKriging-1.6.0, dichromat-2.0-0.1, dimRed-0.2.6, diptest-0.77-0, DiscriMiner-0.1-29, dismo-1.3-14, distillery-1.2-1, distr-2.9.2, distrEx-2.9.0, distributional-0.3.2, DistributionUtils-0.6-1, diveRsity-1.9.90, dlm-1.1-6, DMCfun-2.0.2, doc2vec-0.2.0, docstring-1.0.0, doMC-1.3.8, doParallel-1.0.17, doRNG-1.8.6, doSNOW-1.0.20, dotCall64-1.1-1, downloader-0.4, dplyr-1.1.4, dr-3.0.10, dreamerr-1.4.0, drgee-1.1.10, DRR-0.0.4, drugCombo-1.2.1, DT-0.31, dtangle-2.0.9, dtplyr-1.3.1, DTRreg-2.0, dtw-1.23-1, dummies-1.5.6, dygraphs-1.1.1.6, dynamicTreeCut-1.63-1, e1071-1.7-14, earth-5.3.2, EasyABC-1.5.2, ECOSolveR-0.5.5, ellipse-0.5.0, elliptic-1.4-0, emdbook-1.3.13, emmeans-1.8.9, emoa-0.5-0.2, emulator-1.2-21, energy-1.7-11, ENMeval-2.0.4, entropy-1.3.1, EnvStats-2.8.1, epitools-0.5-10.1, ergm-4.5.0, ergm.count-4.1.1, ergm.multi-0.2.0, estimability-1.4.1, EValue-4.1.3, evd-2.3-6.1, Exact-3.2, expm-0.999-8, ExPosition-2.8.23, expsmooth-2.3, extrafont-0.19, extrafontdb-1.0, extRemes-2.1-3, FactoMineR-2.9, FactorCopula-0.9.3, fail-1.3, farver-2.1.1, fastcluster-1.2.3, fastDummies-1.7.3, fasterize-1.0.5, fastICA-1.2-4, fastmatch-1.1-4, fdrtool-1.2.17, feather-0.3.5, ff-4.0.9, fftw-1.0-7, fftwtools-0.9-11, fields-15.2, filehash-2.4-5, finalfit-1.0.7, findpython-1.0.8, fishMod-0.29, fitdistrplus-1.1-11, fixest-0.11.2, FKSUM-1.0.1, flashClust-1.01-2, flexclust-1.4-1, flexmix-2.3-19, flextable-0.9.4, fma-2.5, FME-1.3.6.3, fmri-1.9.12, FNN-1.1.3.2, fontBitstreamVera-0.1.1, fontLiberation-0.1.0, fontquiver-0.2.1, forcats-1.0.0, foreach-1.5.2, forecast-8.21.1, foreign-0.8-86, formatR-1.14, Formula-1.2-5, formula.tools-1.7.1, fossil-0.4.0, fpc-2.2-10, fpp-0.5, fracdiff-1.5-2, furrr-0.3.1, futile.logger-1.4.3, futile.options-1.0.1, future-1.33.0, future.apply-1.11.0, gam-1.22-3, gamlss-5.4-20, gamlss.data-6.0-2, gamlss.dist-6.1-1, gamlss.tr-5.1-7, gamm4-0.2-6, gap-1.5-3, gap.datasets-0.0.6, gapfill-0.9.6-1, gargle-1.5.2, gaussquad-1.0-3, gbm-2.1.8.1, gbRd-0.4-11, gclus-1.3.2, gdalUtils-2.0.3.2, gdata-3.0.0, gdistance-1.6.4, gdtools-0.3.5, gee-4.13-26, geeM-0.10.1, geepack-1.3.9, geex-1.1.1, geiger-2.0.11, GeneNet-1.2.16, generics-0.1.3, genoPlotR-0.8.11, GenSA-1.1.10.1, geojsonsf-2.0.3, geometries-0.2.3, geometry-0.4.7, getopt-1.20.4, GetoptLong-1.0.5, gfonts-0.2.0, GGally-2.2.0, ggbeeswarm-0.7.2, ggdag-0.2.10, ggdist-3.3.1, ggExtra-0.10.1, ggfan-0.1.3, ggforce-0.4.1, ggformula-0.12.0, ggfun-0.1.3, ggh4x-0.2.6, ggnetwork-0.5.12, ggplot2-3.4.4, ggplotify-0.1.2, ggpubr-0.6.0, ggraph-2.1.0, ggrepel-0.9.4, ggridges-0.5.4, ggsci-3.0.0, ggsignif-0.6.4, ggstance-0.3.6, ggstats-0.5.1, ggvenn-0.1.10, ggvis-0.4.8, GillespieSSA-0.6.2, git2r-0.33.0, GJRM-0.2-6.4, glasso-1.11, gld-2.6.6, gllvm-1.4.3, glmmML-1.1.6, glmmTMB-1.1.8, glmnet-4.1-8, GlobalOptions-0.1.2, globals-0.16.2, gmm-1.8, gmodels-2.18.1.1, gmp-0.7-3, gnumeric-0.7-10, goftest-1.2-3, gomms-1.0, googledrive-2.1.1, googlesheets4-1.1.1, gower-1.0.1, GPArotation-2023.11-1, gplots-3.1.3, graphlayouts-1.0.2, grf-2.3.1, gridBase-0.4-7, gridExtra-2.3, gridGraphics-0.5-1, grImport2-0.3-1, grpreg-3.4.0, GSA-1.03.2, gsalib-2.2.1, gsl-2.1-8, gsw-1.1-1, gt-0.10.0, gtable-0.3.4, gtools-3.9.5, gtsummary-1.7.2, GUTS-1.2.5, gWidgets2-1.0-9, gWidgets2tcltk-1.0-8, GxEScanR-2.0.2, h2o-3.42.0.2, hal9001-0.4.6, haldensify-0.2.3, hardhat-1.3.0, harmony-1.2.0, hash-2.2.6.3, haven-2.5.4, hdf5r-1.3.8, hdm-0.3.1, heatmap3-1.1.9, here-1.0.1, hexbin-1.28.3, HGNChelper-0.8.1, HiddenMarkov-1.8-13, Hmisc-5.1-1, hms-1.1.3, Hmsc-3.0-13, htmlTable-2.4.2, httpcode-0.3.0, huge-1.3.5, hunspell-3.0.3, hwriter-1.3.2.1, HWxtest-1.1.9, hypergeo-1.2-13, ica-1.0-3, IDPmisc-1.1.20, idr-1.3, ids-1.0.1, ie2misc-0.9.1, igraph-1.5.1, image.binarization-0.1.3, imager-0.45.2, imagerExtra-1.3.2, ineq-0.2-13, influenceR-0.1.5, infotheo-1.2.0.1, inline-0.3.19, intergraph-2.0-3, interp-1.1-5, interpretR-0.2.5, intrinsicDimension-1.2.0, inum-1.0-5, ipred-0.9-14, irace-3.5, irlba-2.3.5.1, ismev-1.42, Iso-0.0-21, isoband-0.2.7, ISOcodes-2023.12.07, ISOweek-0.6-2, iterators-1.0.14, itertools-0.1-3, JADE-2.0-4, janeaustenr-1.0.0, JBTools-0.7.2.9, jiebaR-0.11, jiebaRD-0.1, jomo-2.7-6, jpeg-0.1-10, jsonify-1.2.2, jstable-1.1.3, juicyjuice-0.1.0, kde1d-1.0.5, kedd-1.0.3, kernlab-0.9-32, KernSmooth-2.23-22, kinship2-1.9.6, klaR-1.7-2, KODAMA-2.4, kohonen-3.0.12, ks-1.14.1, labdsv-2.1-0, labeling-0.4.3, labelled-2.12.0, laeken-0.5.2, lambda.r-1.2.4, LaplacesDemon-16.1.6, lars-1.3, lassosum-0.4.5, lattice-0.22-5, latticeExtra-0.6-30, lava-1.7.3, lavaan-0.6-16, lazy-1.2-18, lazyeval-0.2.2, LCFdata-2.0, lda-1.4.2, ldbounds-2.0.2, leafem-0.2.3, leaflet-2.2.1, leaflet.providers-2.0.0, leafsync-0.1.0, leaps-3.1, LearnBayes-2.15.1, leiden-0.4.3.1, lhs-1.1.6, libcoin-1.0-10, limSolve-1.5.7, linkcomm-1.0-14, linprog-0.9-4, liquidSVM-1.2.4, listenv-0.9.0, lme4-1.1-35.1, LMERConvenienceFunctions-3.0, lmerTest-3.1-3, lmom-3.0, Lmoments-1.3-1, lmtest-0.9-40, lobstr-1.1.2, locfdr-1.1-8, locfit-1.5-9.8, logcondens-2.1.8, logger-0.2.2, logistf-1.26.0, logspline-2.1.21, longitudinal-1.1.13, longmemo-1.1-2, loo-2.6.0, lpSolve-5.6.19, lpSolveAPI-5.5.2.0-17.11, lqa-1.0-3, lsei-1.3-0, lslx-0.6.11, lubridate-1.9.3, lwgeom-0.2-13, magic-1.6-1, magick-2.8.1, MALDIquant-1.22.1, manipulateWidget-0.11.1, mapproj-1.2.11, maps-3.4.1.1, maptools-1.1-8, markdown-1.12, MASS-7.3-60, Matching-4.10-14, MatchIt-4.5.5, mathjaxr-1.6-0, matlab-1.0.4, Matrix-1.6-4, matrixcalc-1.0-6, MatrixModels-0.5-3, matrixStats-1.1.0, maxLik-1.5-2, maxlike-0.1-10, maxnet-0.1.4, mboost-2.9-9, mclogit-0.9.6, mclust-6.0.1, mcmc-0.9-8, MCMCpack-1.6-3, mcmcse-1.5-0, mda-0.5-4, medflex-0.6-10, mediation-4.5.0, memisc-0.99.31.6, memuse-4.2-3, MESS-0.5.12, metadat-1.2-0, metafor-4.4-0, MetaUtility-2.1.2, mets-1.3.3, mgcv-1.9-0, mgsub-1.7.3, mhsmm-0.4.21, mi-1.1, mice-3.16.0, miceadds-3.16-18, microbenchmark-1.4.10, MIIVsem-0.5.8, minerva-1.5.10, minpack.lm-1.2-4, minqa-1.2.6, mirt-1.41, misc3d-0.9-1, miscTools-0.6-28, missForest-1.5, missMDA-1.19, mitml-0.4-5, mitools-2.4, mixtools-2.0.0, mlbench-2.1-3.1, mlegp-3.1.9, MLmetrics-1.1.1, mlogit-1.1-1, mlr-2.19.1, mlrMBO-1.1.5.1, mltools-0.3.5, mnormt-2.1.1, ModelMetrics-1.2.2.2, modelr-0.1.11, modeltools-0.2-23, momentfit-0.5, moments-0.14.1, MonteCarlo-1.0.6, mosaicCore-0.9.4.0, mpath-0.4-2.23, mRMRe-2.1.2.1, msm-1.7.1, mstate-0.3.2, multcomp-1.4-25, multcompView-0.1-9, multicool-1.0.0, multipol-1.0-9, munsell-0.5.0, mvabund-4.2.1, mvnfast-0.2.8, mvtnorm-1.2-4, nabor-0.5.0, naniar-1.0.0, natserv-1.0.0, naturalsort-0.1.3, ncbit-2013.03.29.1, ncdf4-1.22, NCmisc-1.2.0, network-1.18.2, networkDynamic-0.11.3, networkLite-1.0.5, neuralnet-1.44.2, neuRosim-0.2-14, ngspatial-1.2-2, NISTunits-1.0.1, nleqslv-3.3.5, nlme-3.1-164, nloptr-2.0.3, NLP-0.2-1, nlsem-0.8-1, nnet-7.3-19, nnls-1.5, nonnest2-0.5-6, nor1mix-1.3-2, norm-1.0-11.1, nortest-1.0-4, np-0.60-17, npsurv-0.5-0, numDeriv-2016.8-1.1, oai-0.4.0, oce-1.8-2, OceanView-1.0.6, oddsratio-2.0.1, officer-0.6.3, openair-2.18-0, OpenMx-2.21.11, openxlsx-4.2.5.2, operator.tools-1.6.3, optextras-2019-12.4, optimParallel-1.0-2, optimr-2019-12.16, optimx-2023-10.21, optmatch-0.10.7, optparse-1.7.3, ordinal-2023.12-4, origami-1.0.7, oro.nifti-0.11.4, orthopolynom-1.0-6.1, osqp-0.6.3.2, outliers-0.15, packrat-0.9.2, pacman-0.5.1, pammtools-0.5.92, pamr-1.56.1, pan-1.9, parallelDist-0.2.6, parallelly-1.36.0, parallelMap-1.5.1, ParamHelpers-1.14.1, parsedate-1.3.1, party-1.3-14, partykit-1.2-20, pastecs-1.3.21, patchwork-1.1.3, pbapply-1.7-2, pbivnorm-0.6.0, pbkrtest-0.5.2, PCAmatchR-0.3.3, pcaPP-2.0-4, pdp-0.8.1, PearsonDS-1.3.0, pec-2023.04.12, penalized-0.9-52, penfa-0.1.1, peperr-1.5, PermAlgo-1.2, permute-0.9-7, phangorn-2.11.1, pheatmap-1.0.12, phylobase-0.8.10, phytools-2.0-3, pim-2.0.2, pinfsc50-1.3.0, pixmap-0.4-12, pkgmaker-0.32.10, plogr-0.2.0, plot3D-1.4, plot3Drgl-1.0.4, plotly-4.10.3, plotmo-3.6.2, plotrix-3.8-4, pls-2.8-3, plyr-1.8.9, PMA-1.2-2, png-0.1-8, PoissonSeq-1.1.2, poLCA-1.6.0.1, polspline-1.1.24, Polychrome-1.5.1, polyclip-1.10-6, polycor-0.8-1, polynom-1.4-1, posterior-1.5.0, ppcor-1.1, prabclus-2.3-3, pracma-2.4.4, PresenceAbsence-1.1.11, preseqR-4.0.0, prettyGraphs-2.1.6, princurve-2.1.6, pROC-1.18.5, prodlim-2023.08.28, profileModel-0.6.1, proftools-0.99-3, progress-1.2.3, progressr-0.14.0, projpred-2.7.0, proto-1.0.0, proxy-0.4-27, proxyC-0.3.4, pryr-0.1.6, pscl-1.5.5.1, pspline-1.0-19, psych-2.3.9, Publish-2023.01.17, pulsar-0.3.11, pvclust-2.2-0, qgam-1.3.4, qgraph-1.9.8, qqman-0.1.9, qrnn-2.1, quadprog-1.5-8, quanteda-3.3.1, quantmod-0.4.25, quantreg-5.97, questionr-0.7.8, QuickJSR-1.0.8, R.cache-0.16.0, R.matlab-3.7.0, R.methodsS3-1.8.2, R.oo-1.25.0, R.rsp-0.45.0, R.utils-2.12.3, R2WinBUGS-2.1-21, random-0.2.6, randomForest-4.7-1.1, randomForestSRC-3.2.3, randtoolbox-2.0.4, rangeModelMetadata-0.1.5, ranger-0.16.0, RANN-2.6.1, rapidjsonr-1.2.0, rARPACK-0.11-0, raster-3.6-26, rasterVis-0.51.6, ratelimitr-0.4.1, RBesT-1.7-2, rbibutils-2.2.16, rbison-1.0.0, Rborist-0.3-5, RCAL-2.0, Rcgmin-2022-4.30, RCircos-1.2.2, RColorBrewer-1.1-3, RcppArmadillo-0.12.6.6.1, RcppEigen-0.3.3.9.4, RcppGSL-0.3.13, RcppParallel-5.1.7, RcppProgress-0.4.2, RcppRoll-0.3.0, RcppThread-2.1.6, RcppTOML-0.2.2, RCurl-1.98-1.13, rda-1.2-1, Rdpack-2.6, rdrop2-0.8.2.1, reactable-0.4.4, reactR-0.5.0, readbitmap-0.1.5, reader-1.0.6, readODS-2.1.0, readr-2.1.4, readxl-1.4.3, rebird-1.3.0, recipes-1.0.8, RefFreeEWAS-2.2, registry-0.5-1, regsem-1.9.5, relsurv-2.2-9, rematch-2.0.0, rentrez-1.2.3, renv-1.0.3, reprex-2.0.2, resample-0.6, reshape-0.8.9, reshape2-1.4.4, reticulate-1.34.0, rex-1.2.1, rgbif-3.7.8, RGCCA-3.0.2, rgdal-1.6-7, rgeos-0.6-4, rgexf-0.16.2, rgl-1.2.8, Rglpk-0.6-5, rhandsontable-0.3.8, RhpcBLASctl-0.23-42, ridge-3.3, ridigbio-0.3.7, RInside-0.2.18, rio-1.0.1, riskRegression-2023.09.08, ritis-1.0.0, RItools-0.3-3, rJava-1.0-10, rjson-0.2.21, RJSONIO-1.3-1.9, rle-0.9.2, rlecuyer-0.3-8, rlemon-0.2.1, rlist-0.4.6.2, rmeta-3.0, Rmpfr-0.9-4, rms-6.7-1, RMTstat-0.3.1, rncl-0.8.7, rnetcarto-0.2.6, RNeXML-2.4.11, rngtools-1.5.2, rngWELL-0.10-9, RNifti-1.5.1, robustbase-0.99-1, ROCR-1.0-11, ROI-1.0-1, ROI.plugin.glpk-1.0-0, Rook-1.2, rootSolve-1.8.2.4, roptim-0.1.6, rotl-3.1.0, rpact-3.4.0, rpart-4.1.23, rpf-1.0.14, RPMM-1.25, RPostgreSQL-0.7-5, rrcov-1.7-4, rredlist-0.7.1, rsample-1.2.0, rsconnect-1.1.1, Rserve-1.8-13, RSNNS-0.4-17, Rsolnp-1.16, RSpectra-0.16-1, RSQLite-2.3.4, Rssa-1.0.5, rstan-2.32.3, rstantools-2.3.1.1, rstatix-0.7.2, rtdists-0.11-5, Rtsne-0.17, Rttf2pt1-1.3.12, RUnit-0.4.32, ruv-0.9.7.1, rvertnet-0.8.2, rvest-1.0.3, rvinecopulib-0.6.3.1.1, Rvmmin-2018-4.17.1, RWeka-0.4-46, RWekajars-3.9.3-2, s2-1.1.4, sampling-2.10, sandwich-3.0-2, SBdecomp-1.2, scales-1.3.0, scam-1.2-14, scatterpie-0.2.1, scatterplot3d-0.3-44, scs-3.2.4, sctransform-0.4.1, SDMTools-1.1-221.2, seewave-2.2.3, segmented-2.0-0, selectr-0.4-2, sem-3.1-15, semPLS-1.0-10, semTools-0.5-6, sendmailR-1.4-0, sensemakr-0.1.4, sentometrics-1.0.0, seqinr-4.2-36, servr-0.27, setRNG-2022.4-1, sf-1.0-14, sfheaders-0.4.3, sfsmisc-1.1-16, shadowtext-0.1.2, shape-1.4.6, shapefiles-0.7.2, shinycssloaders-1.0.0, shinydashboard-0.7.2, shinyjs-2.1.0, shinystan-2.6.0, shinythemes-1.2.0, signal-1.8-0, SignifReg-4.3, simex-1.8, SimSeq-1.4.0, SKAT-2.2.5, slam-0.1-50, slider-0.3.1, sm-2.2-5.7.1, smoof-1.6.0.3, smoother-1.1, sn-2.1.1, sna-2.7-2, SNFtool-2.3.1, snow-0.4-4, SnowballC-0.7.1, snowfall-1.84-6.3, SOAR-0.99-11, solrium-1.2.0, som-0.3-5.1, soundecology-1.3.3, sp-2.1-2, spaa-0.2.2, spam-2.10-0, spaMM-4.4.0, SparseM-1.81, SPAtest-3.1.2, spatial-7.3-17, spatstat-3.0-7, spatstat.core-2.4-4, spatstat.data-3.0-3, spatstat.explore-3.2-5, spatstat.geom-3.2-7, spatstat.linnet-3.1-3, spatstat.model-3.2-8, spatstat.random-3.2-2, spatstat.sparse-3.0-3, spatstat.utils-3.0-4, spData-2.3.0, spdep-1.3-1, splitstackshape-1.4.8, spls-2.2-3, spocc-1.2.2, spThin-0.2.0, SQUAREM-2021.1, stabledist-0.7-1, stabs-0.6-4, StanHeaders-2.26.28, stargazer-5.2.3, stars-0.6-4, startupmsg-0.9.6, StatMatch-1.4.1, statmod-1.5.0, statnet-2019.6, statnet.common-4.9.0, stdReg-3.4.1, stopwords-2.3, stringdist-0.9.12, stringmagic-1.0.0, strucchange-1.5-3, styler-1.10.2, subplex-1.8, SuperLearner-2.0-28.1, SuppDists-1.1-9.7, survey-4.2-1, survival-3.5-7, survivalROC-1.0.3.1, svd-0.5.5, svglite-2.1.3, svUnit-1.0.6, swagger-3.33.1, symmoments-1.2.1, tableone-0.13.2, tabletools-0.1.0, tau-0.0-25, taxize-0.9.100, tcltk2-1.2-11, tclust-1.5-5, TeachingDemos-2.12, tensor-1.5, tensorA-0.36.2, tergm-4.2.0, terra-1.7-55, testit-0.13, textcat-1.0-8, textplot-0.2.2, TFisher-0.2.0, TH.data-1.1-2, threejs-0.3.3, tictoc-1.2, tidybayes-3.0.6, tidygraph-1.2.3, tidyr-1.3.0, tidyselect-1.2.0, tidytext-0.4.1, tidytree-0.4.5, tidyverse-2.0.0, tiff-0.1-12, timechange-0.2.0, timeDate-4022.108, timereg-2.0.5, tkrplot-0.0-27, tm-0.7-11, tmap-3.3-4, tmaptools-3.1-1, TMB-1.9.9, tmle-2.0.0, tmvnsim-1.0-2, tmvtnorm-1.6, tokenizers-0.3.0, topicmodels-0.2-15, TraMineR-2.2-8, tree-1.0-43, triebeard-0.4.1, trimcluster-0.1-5, tripack-1.3-9.1, TruncatedNormal-2.2.2, truncnorm-1.0-9, trust-0.1-8, tseries-0.10-55, tseriesChaos-0.1-13.1, tsna-0.3.5, tsne-0.1-3.1, TTR-0.24.4, tuneR-1.4.6, twang-2.6, tweedie-2.3.5, tweenr-2.0.2, tzdb-0.4.0, ucminf-1.2.0, udpipe-0.8.11, umap-0.2.10.0, unbalanced-2.0, unikn-0.9.0, uniqueAtomMat-0.1-3-2, units-0.8-5, unmarked-1.3.2, UpSetR-1.4.0, urca-1.3-3, urltools-1.7.3, uroot-2.1-2, uuid-1.1-1, V8-4.4.1, varhandle-2.0.6, vcd-1.4-11, vcfR-1.15.0, vegan-2.6-4, VennDiagram-1.7.3, VGAM-1.1-9, VIM-6.2.2, VineCopula-2.5.0, vioplot-0.4.0, vipor-0.4.5, viridis-0.6.4, viridisLite-0.4.2, visdat-0.6.0, visNetwork-2.1.2, vroom-1.6.5, VSURF-1.2.0, warp-0.2.1, waveslim-1.8.4, wdm-0.2.4, webshot-0.5.5, webutils-1.2.0, weights-1.0.4, WeightSVM-1.7-13, wellknown-0.7.4, widgetframe-0.3.1, WikidataQueryServiceR-1.0.0, WikidataR-2.3.3, WikipediR-1.5.0, wikitaxa-0.4.0, wk-0.9.1, word2vec-0.4.0, wordcloud-2.6, worrms-0.4.3, writexl-1.4.2, WriteXLS-6.4.0, XBRL-0.99.19.1, xgboost-1.7.6.1, xlsx-0.6.5, xlsxjars-0.6.1, XML-3.99-0.16, xts-0.13.1, yaImpute-1.0-33, yulab.utils-0.1.0, zeallot-0.1.0, zoo-1.8-12"}, "R-bundle-CRAN/2024.06-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "abc-2.2.1, abc.data-1.1, abe-3.0.1, abind-1.4-5, acepack-1.4.2, adabag-5.0, ade4-1.7-22, ADGofTest-0.3, admisc-0.35, aggregation-1.0.1, AICcmodavg-2.3-3, akima-0.6-3.4, alabama-2023.1.0, AlgDesign-1.2.1, alluvial-0.1-2, AMAPVox-2.2.1, animation-2.7, aod-1.3.3, apcluster-1.4.13, ape-5.8, aplot-0.2.3, argparse-2.2.3, aricode-1.0.3, arm-1.14-4, arrayhelpers-1.1-0, asnipe-1.1.17, assertive-0.3-6, assertive.base-0.0-9, assertive.code-0.0-4, assertive.data-0.0-3, assertive.data.uk-0.0-2, assertive.data.us-0.0-2, assertive.datetimes-0.0-3, assertive.files-0.0-2, assertive.matrices-0.0-2, assertive.models-0.0-2, assertive.numbers-0.0-2, assertive.properties-0.0-5, assertive.reflection-0.0-5, assertive.sets-0.0-3, assertive.strings-0.0-3, assertive.types-0.0-3, assertthat-0.2.1, AUC-0.3.2, audio-0.1-11, aws-2.5-5, awsMethods-1.1-1, backports-1.5.0, bacr-1.0.1, bartMachine-1.3.4.1, bartMachineJARs-1.2.1, base64-2.0.1, BatchJobs-1.9, batchmeans-1.0-4, BayesianTools-0.1.8, BayesLogit-2.1, bayesm-3.1-6, BayesPen-1.0, bayesplot-1.11.1, bayestestR-0.14.0, BB-2019.10-1, BBmisc-1.13, bbmle-1.0.25.1, BCEE-1.3.2, BDgraph-2.72, bdsmatrix-1.3-7, beanplot-1.3.1, beeswarm-0.4.0, berryFunctions-1.22.5, betareg-3.1-4, BH-1.84.0-0, BiasedUrn-2.0.12, bibtex-0.5.1, BIEN-1.2.6, bigD-0.2.0, BIGL-1.9.1, bigmemory-4.6.4, bigmemory.sri-0.1.8, bindr-0.1.1, bindrcpp-0.2.3, bio3d-2.4-4, biom-0.3.12, biomod2-4.2-5-2, bit-4.0.5, bit64-4.0.5, bitops-1.0-7, blavaan-0.5-5, blob-1.2.4, BMA-3.18.17, bmp-0.3, bnlearn-4.9.4, bold-1.3.0, boot-1.3-30, bootstrap-2019.6, Boruta-8.0.0, brglm-0.7.2, bridgedist-0.1.2, bridgesampling-1.1-2, brms-2.21.0, Brobdingnag-1.2-9, broom-1.0.6, broom.helpers-1.15.0, broom.mixed-0.2.9.5, bst-0.3-24, Cairo-1.6-2, calibrate-1.7.7, car-3.1-2, carData-3.0-5, caret-6.0-94, catlearn-1.0, caTools-1.18.2, CBPS-0.23, celestial-1.4.6, cellranger-1.1.0, cgdsr-1.3.0, cghFLasso-0.2-1, changepoint-2.2.4, checkmate-2.3.1, chemometrics-1.4.4, chk-0.9.1, chkptstanr-0.1.1, chron-2.3-61, circlize-0.4.16, circular-0.5-0, class-7.3-22, classInt-0.4-10, cld2-1.2.4, clisymbols-1.2.0, clock-0.7.0, clue-0.3-65, cluster-2.1.6, clusterGeneration-1.3.8, clusterRepro-0.9, clustree-0.5.1, clValid-0.7, cmna-1.0.5, cmprsk-2.2-12, cNORM-3.0.4, cobalt-4.5.5, cobs-1.3-8, coda-0.19-4.1, codetools-0.2-20, coin-1.4-3, collapse-2.0.14, colorspace-2.1-0, colourpicker-1.3.0, combinat-0.0-8, ComICS-1.0.4, ComplexUpset-1.3.3, compositions-2.0-8, CompQuadForm-1.4.3, conditionz-0.1.0, conflicted-1.2.0, conquer-1.3.3, ConsRank-2.1.4, contfrac-1.1-12, copCAR-2.0-4, copula-1.1-3, corpcor-1.6.10, corrplot-0.92, covr-3.6.4, CovSel-1.2.1, covsim-1.1.0, cowplot-1.1.3, coxed-0.3.3, coxme-2.2-20, crfsuite-0.4.2, crosstalk-1.2.1, crul-1.4.2, cSEM-0.5.0, csSAM-1.2.4, ctmle-0.1.2, cubature-2.1.0, cubelyr-1.0.2, cvAUC-1.1.4, CVST-0.2-3, CVXR-1.0-13, d3Network-0.5.2.1, dagitty-0.3-4, data.table-1.15.4, data.tree-1.1.0, DataCombine-0.2.21, datawizard-0.12.2, date-1.2-42, dbarts-0.9-28, DBI-1.2.3, dbplyr-2.5.0, dbscan-1.1-12, dcurver-0.9.2, ddalpha-1.3.15, deal-1.2-42, debugme-1.2.0, deldir-2.0-4, dendextend-1.17.1, DEoptim-2.2-8, DEoptimR-1.1-3, DepthProc-2.1.5, Deriv-4.1.3, DescTools-0.99.54, deSolve-1.40, dfidx-0.0-5, DHARMa-0.4.6, dHSIC-2.1, diagram-1.6.5, DiagrammeR-1.0.11, DiceKriging-1.6.0, dichromat-2.0-0.1, dimRed-0.2.6, diptest-0.77-1, DiscriMiner-0.1-29, dismo-1.3-14, distillery-1.2-1, distr-2.9.3, distrEx-2.9.2, distributional-0.4.0, DistributionUtils-0.6-1, diveRsity-1.9.90, dlm-1.1-6, DMCfun-3.5.4, doc2vec-0.2.0, docstring-1.0.0, doMC-1.3.8, doParallel-1.0.17, doRNG-1.8.6, doSNOW-1.0.20, dotCall64-1.1-1, downloader-0.4, dplyr-1.1.4, dr-3.0.10, dreamerr-1.4.0, drgee-1.1.10, DRR-0.0.4, drugCombo-1.2.1, DT-0.33, dtangle-2.0.9, dtplyr-1.3.1, DTRreg-2.2, dtw-1.23-1, dummies-1.5.6, dygraphs-1.1.1.6, dynamicTreeCut-1.63-1, e1071-1.7-14, earth-5.3.3, EasyABC-1.5.2, ECOSolveR-0.5.5, ellipse-0.5.0, elliptic-1.4-0, emdbook-1.3.13, emmeans-1.10.2, emoa-0.5-2, emulator-1.2-24, energy-1.7-11, ENMeval-2.0.4, entropy-1.3.1, EnvStats-2.8.1, epitools-0.5-10.1, ergm-4.6.0, ergm.count-4.1.2, ergm.multi-0.2.1, estimability-1.5.1, EValue-4.1.3, evd-2.3-7, Exact-3.2, expm-0.999-9, ExPosition-2.8.23, expsmooth-2.3, extrafont-0.19, extrafontdb-1.0, extRemes-2.1-4, FactoMineR-2.11, FactorCopula-0.9.3, fail-1.3, farver-2.1.2, fastcluster-1.2.6, fastDummies-1.7.3, fasterize-1.0.5, fastICA-1.2-4, fastmatch-1.1-4, fdrtool-1.2.17, feather-0.3.5, ff-4.0.12, fftw-1.0-8, fftwtools-0.9-11, fields-15.2, filehash-2.4-5, finalfit-1.0.7, findpython-1.0.8, fishMod-0.29, fitdistrplus-1.1-11, fixest-0.12.1, FKSUM-1.0.1, flashClust-1.01-2, flexclust-1.4-2, flexmix-2.3-19, flextable-0.9.6, fma-2.5, FME-1.3.6.3, fmri-1.9.12, FNN-1.1.4, fontBitstreamVera-0.1.1, fontLiberation-0.1.0, fontquiver-0.2.1, forcats-1.0.0, foreach-1.5.2, forecast-8.23.0, foreign-0.8-86, formatR-1.14, Formula-1.2-5, formula.tools-1.7.1, fossil-0.4.0, fpc-2.2-12, fpp-0.5, fracdiff-1.5-3, furrr-0.3.1, futile.logger-1.4.3, futile.options-1.0.1, future-1.33.2, future.apply-1.11.2, gam-1.22-3, gamlss-5.4-22, gamlss.data-6.0-6, gamlss.dist-6.1-1, gamlss.tr-5.1-9, gamm4-0.2-6, gap-1.5-3, gap.datasets-0.0.6, gapfill-0.9.6-1, gargle-1.5.2, gaussquad-1.0-3, gbm-2.1.9, gbRd-0.4.12, gclus-1.3.2, gdalUtils-2.0.3.2, gdata-3.0.0, gdistance-1.6.4, gdtools-0.3.7, gee-4.13-27, geeM-0.10.1, geepack-1.3.11, geex-1.1.1, geiger-2.0.11, GeneNet-1.2.16, generics-0.1.3, genoPlotR-0.8.11, GenSA-1.1.14, geojsonsf-2.0.3, geometries-0.2.4, geometry-0.4.7, getopt-1.20.4, GetoptLong-1.0.5, gfonts-0.2.0, GGally-2.2.1, ggbeeswarm-0.7.2, ggdag-0.2.12, ggdist-3.3.2, ggExtra-0.10.1, ggfan-0.1.3, ggforce-0.4.2, ggformula-0.12.0, ggfun-0.1.5, ggh4x-0.2.8, ggnetwork-0.5.13, ggplot2-3.5.1, ggplotify-0.1.2, ggpubr-0.6.0, ggraph-2.2.1, ggrepel-0.9.5, ggridges-0.5.6, ggsci-3.2.0, ggsignif-0.6.4, ggstance-0.3.7, ggstats-0.6.0, ggvenn-0.1.10, ggvis-0.4.9, GillespieSSA-0.6.2, git2r-0.33.0, GJRM-0.2-6.5, glasso-1.11, gld-2.6.6, gllvm-1.4.3, glmmML-1.1.6, glmmTMB-1.1.9, glmnet-4.1-8, GlobalOptions-0.1.2, globals-0.16.3, gmm-1.8, gmodels-2.19.1, gmp-0.7-4, gnumeric-0.7-10, goftest-1.2-3, gomms-1.0, googledrive-2.1.1, googlesheets4-1.1.1, gower-1.0.1, GPArotation-2024.3-1, gplots-3.1.3.1, graphlayouts-1.1.1, grf-2.3.2, gridBase-0.4-7, gridExtra-2.3, gridGraphics-0.5-1, grImport2-0.3-1, grpreg-3.4.0, GSA-1.03.3, gsalib-2.2.1, gsl-2.1-8, gsw-1.1-1, gt-0.10.1, gtable-0.3.5, gtools-3.9.5, gtsummary-1.7.2, GUTS-1.2.5, gWidgets2-1.0-9, gWidgets2tcltk-1.0-8, GxEScanR-2.0.2, h2o-3.44.0.3, hal9001-0.4.6, haldensify-0.2.3, hardhat-1.4.0, harmony-1.2.0, hash-2.2.6.3, haven-2.5.4, hdf5r-1.3.10, hdm-0.3.2, heatmap3-1.1.9, here-1.0.1, hexbin-1.28.3, HGNChelper-0.8.14, HiddenMarkov-1.8-13, Hmisc-5.1-3, hms-1.1.3, Hmsc-3.0-13, htmlTable-2.4.2, httpcode-0.3.0, huge-1.3.5, hunspell-3.0.3, hwriter-1.3.2.1, HWxtest-1.1.9, hypergeo-1.2-13, ica-1.0-3, IDPmisc-1.1.21, idr-1.3, ids-1.0.1, ie2misc-0.9.1, igraph-2.0.3, image.binarization-0.1.3, imager-1.0.2, imagerExtra-1.3.2, ineq-0.2-13, influenceR-0.1.5, infotheo-1.2.0.1, inline-0.3.19, insight-0.20.3, intergraph-2.0-4, interp-1.1-6, interpretR-0.2.5, intrinsicDimension-1.2.0, inum-1.0-5, ipred-0.9-14, irace-3.5, irlba-2.3.5.1, ismev-1.42, Iso-0.0-21, isoband-0.2.7, ISOcodes-2024.02.12, ISOweek-0.6-2, iterators-1.0.14, itertools-0.1-3, JADE-2.0-4, janeaustenr-1.0.0, JBTools-0.7.2.9, jiebaR-0.11, jiebaRD-0.1, jomo-2.7-6, jpeg-0.1-10, jsonify-1.2.2, jstable-1.2.6, juicyjuice-0.1.0, kde1d-1.0.7, kedd-1.0.4, kernlab-0.9-32, KernSmooth-2.23-24, kinship2-1.9.6.1, klaR-1.7-3, KODAMA-2.4, kohonen-3.0.12, ks-1.14.2, labdsv-2.1-0, labeling-0.4.3, labelled-2.13.0, laeken-0.5.3, lambda.r-1.2.4, LaplacesDemon-16.1.6, lars-1.3, lassosum-0.4.5, lattice-0.22-6, latticeExtra-0.6-30, lava-1.8.0, lavaan-0.6-18, lazy-1.2-18, lazyeval-0.2.2, LCFdata-2.0, lda-1.5.2, ldbounds-2.0.2, leafem-0.2.3, leaflet-2.2.2, leaflet.providers-2.0.0, leafsync-0.1.0, leaps-3.2, LearnBayes-2.15.1, leiden-0.4.3.1, lhs-1.1.6, libcoin-1.0-10, limSolve-1.5.7.1, linkcomm-1.0-14, linprog-0.9-4, liquidSVM-1.2.4, listenv-0.9.1, lme4-1.1-35.4, LMERConvenienceFunctions-3.0, lmerTest-3.1-3, lmom-3.0, Lmoments-1.3-1, lmtest-0.9-40, lobstr-1.1.2, locfdr-1.1-8, locfit-1.5-9.10, logcondens-2.1.8, logger-0.3.0, logistf-1.26.0, logspline-2.1.22, longitudinal-1.1.13, longmemo-1.1-2, loo-2.7.0, lpSolve-5.6.20, lpSolveAPI-5.5.2.0-17.11, lqa-1.0-3, lsei-1.3-0, lslx-0.6.11, lubridate-1.9.3, lwgeom-0.2-14, magic-1.6-1, magick-2.8.3, MALDIquant-1.22.2, manipulateWidget-0.11.1, mapproj-1.2.11, maps-3.4.2, maptools-1.1-8, markdown-1.13, MASS-7.3-61, Matching-4.10-14, MatchIt-4.5.5, mathjaxr-1.6-0, matlab-1.0.4, Matrix-1.7-0, matrixcalc-1.0-6, MatrixModels-0.5-3, matrixStats-1.3.0, maxLik-1.5-2.1, maxlike-0.1-11, maxnet-0.1.4, mboost-2.9-10, mclogit-0.9.6, mclust-6.1.1, mcmc-0.9-8, MCMCpack-1.7-0, mcmcse-1.5-0, mda-0.5-4, medflex-0.6-10, mediation-4.5.0, memisc-0.99.31.7, memuse-4.2-3, MESS-0.5.12, metadat-1.2-0, metafor-4.6-0, MetaUtility-2.1.2, mets-1.3.4, mgcv-1.9-1, mgsub-1.7.3, mhsmm-0.4.21, mi-1.1, mice-3.16.0, miceadds-3.17-44, microbenchmark-1.4.10, MIIVsem-0.5.8, minerva-1.5.10, minpack.lm-1.2-4, minqa-1.2.7, minty-0.0.1, mirt-1.41, misc3d-0.9-1, miscTools-0.6-28, missForest-1.5, missMDA-1.19, mitml-0.4-5, mitools-2.4, mixtools-2.0.0, mlbench-2.1-5, mlegp-3.1.9, MLmetrics-1.1.3, mlogit-1.1-1, mlr-2.19.2, mlrMBO-1.1.5.1, mltools-0.3.5, mnormt-2.1.1, ModelMetrics-1.2.2.2, modelr-0.1.11, modeltools-0.2-23, momentfit-0.5, moments-0.14.1, MonteCarlo-1.0.6, mosaicCore-0.9.4.0, mpath-0.4-2.25, mRMRe-2.1.2.1, msm-1.7.1, mstate-0.3.2, multcomp-1.4-25, multcompView-0.1-10, multicool-1.0.1, multipol-1.0-9, multitaper-1.0-17, munsell-0.5.1, mvabund-4.2.1, mvnfast-0.2.8, mvtnorm-1.2-5, nabor-0.5.0, naniar-1.1.0, natserv-1.0.0, naturalsort-0.1.3, ncbit-2013.03.29.1, ncdf4-1.22, NCmisc-1.2.0, network-1.18.2, networkDynamic-0.11.4, networkLite-1.0.5, neuralnet-1.44.2, neuRosim-0.2-14, ngspatial-1.2-2, NISTunits-1.0.1, nleqslv-3.3.5, nlme-3.1-165, nloptr-2.1.0, NLP-0.2-1, nlsem-0.8-1, nnet-7.3-19, nnls-1.5, nonnest2-0.5-7, nor1mix-1.3-3, norm-1.0-11.1, nortest-1.0-4, np-0.60-17, npsurv-0.5-0, numDeriv-2016.8-1.1, oai-0.4.0, oce-1.8-2, OceanView-1.0.7, oddsratio-2.0.1, officer-0.6.6, openair-2.18-2, OpenMx-2.21.11, openxlsx-4.2.5.2, operator.tools-1.6.3, optextras-2019-12.4, optimParallel-1.0-2, optimr-2019-12.16, optimx-2023-10.21, optmatch-0.10.7, optparse-1.7.5, ordinal-2023.12-4, origami-1.0.7, oro.nifti-0.11.4, orthopolynom-1.0-6.1, osqp-0.6.3.3, outliers-0.15, packrat-0.9.2, pacman-0.5.1, pammtools-0.5.93, pamr-1.56.2, pan-1.9, parallelDist-0.2.6, parallelly-1.37.1, parallelMap-1.5.1, ParamHelpers-1.14.1, parsedate-1.3.1, party-1.3-15, partykit-1.2-20, pastecs-1.4.2, patchwork-1.2.0, pbapply-1.7-2, pbivnorm-0.6.0, pbkrtest-0.5.2, PCAmatchR-0.3.3, pcaPP-2.0-4, pdp-0.8.1, PearsonDS-1.3.1, pec-2023.04.12, penalized-0.9-52, penfa-0.1.1, peperr-1.5, performance-0.12.2, PermAlgo-1.2, permute-0.9-7, phangorn-2.11.1, pheatmap-1.0.12, phylobase-0.8.12, phytools-2.3-0, pim-2.0.2, pinfsc50-1.3.0, pixmap-0.4-13, pkgmaker-0.32.10, PKI-0.1-14, plogr-0.2.0, plot3D-1.4.1, plot3Drgl-1.0.4, plotly-4.10.4, plotmo-3.6.3, plotrix-3.8-4, pls-2.8-3, plyr-1.8.9, PMA-1.2-3, png-0.1-8, PoissonSeq-1.1.2, poLCA-1.6.0.1, polspline-1.1.25, Polychrome-1.5.1, polyclip-1.10-6, polycor-0.8-1, polynom-1.4-1, posterior-1.5.0, ppcor-1.1, prabclus-2.3-3, pracma-2.4.4, PresenceAbsence-1.1.11, preseqR-4.0.0, prettyGraphs-2.1.6, princurve-2.1.6, pROC-1.18.5, prodlim-2023.08.28, profileModel-0.6.1, proftools-0.99-3, progress-1.2.3, progressr-0.14.0, projpred-2.8.0, proto-1.0.0, proxy-0.4-27, proxyC-0.4.1, pryr-0.1.6, pscl-1.5.9, pspline-1.0-20, psych-2.4.3, Publish-2023.01.17, pulsar-0.3.11, pvclust-2.2-0, qgam-1.3.4, qgraph-1.9.8, qqman-0.1.9, qrnn-2.1.1, quadprog-1.5-8, quanteda-4.0.2, quantmod-0.4.26, quantreg-5.98, questionr-0.7.8, QuickJSR-1.2.2, R.cache-0.16.0, R.matlab-3.7.0, R.methodsS3-1.8.2, R.oo-1.26.0, R.rsp-0.46.0, R.utils-2.12.3, R2WinBUGS-2.1-22.1, random-0.2.6, randomForest-4.7-1.1, randomForestSRC-3.2.3, randtoolbox-2.0.4, rangeModelMetadata-0.1.5, ranger-0.16.0, RANN-2.6.1, rapidjsonr-1.2.0, rARPACK-0.11-0, raster-3.6-26, rasterVis-0.51.6, ratelimitr-0.4.1, RBesT-1.7-3, rbibutils-2.2.16, rbison-1.0.0, Rborist-0.3-7, RCAL-2.0, Rcgmin-2022-4.30, RCircos-1.2.2, RColorBrewer-1.1-3, RcppArmadillo-0.12.8.4.0, RcppEigen-0.3.4.0.0, RcppGSL-0.3.13, RcppParallel-5.1.7, RcppProgress-0.4.2, RcppRoll-0.3.0, RcppThread-2.1.7, RcppTOML-0.2.2, RCurl-1.98-1.14, rda-1.2-1, Rdpack-2.6, rdrop2-0.8.2.1, reactable-0.4.4, reactR-0.5.0, readbitmap-0.1.5, reader-1.0.6, readODS-2.3.0, readr-2.1.5, readxl-1.4.3, rebird-1.3.0, recipes-1.0.10, RefFreeEWAS-2.2, registry-0.5-1, regsem-1.9.5, relsurv-2.2-9, rematch-2.0.0, rentrez-1.2.3, renv-1.0.7, reprex-2.1.0, resample-0.6, reshape-0.8.9, reshape2-1.4.4, reticulate-1.38.0, rex-1.2.1, rgbif-3.8.0, RGCCA-3.0.3, rgdal-1.6-7, rgeos-0.6-4, rgexf-0.16.2, rgl-1.3.1, Rglpk-0.6-5.1, rhandsontable-0.3.8, RhpcBLASctl-0.23-42, ridge-3.3, ridigbio-0.3.8, RInside-0.2.18, rio-1.1.1, riskRegression-2023.12.21, ritis-1.0.0, RItools-0.3-4, rJava-1.0-11, rjson-0.2.21, RJSONIO-1.3-1.9, rle-0.9.2, rlecuyer-0.3-8, rlemon-0.2.1, rlist-0.4.6.2, rmeta-3.0, Rmpfr-0.9-5, rms-6.8-1, RMTstat-0.3.1, rncl-0.8.7, rnetcarto-0.2.6, RNeXML-2.4.11, rngtools-1.5.2, rngWELL-0.10-9, RNifti-1.7.0, robustbase-0.99-2, ROCR-1.0-11, ROI-1.0-1, ROI.plugin.glpk-1.0-0, Rook-1.2, rootSolve-1.8.2.4, roptim-0.1.6, rotl-3.1.0, rpact-4.0.0, rpart-4.1.23, rpf-1.0.14, RPMM-1.25, RPostgreSQL-0.7-6, rrcov-1.7-5, rredlist-0.7.1, rsample-1.2.1, rsconnect-1.3.1, Rserve-1.8-13, RSNNS-0.4-17, Rsolnp-1.16, RSpectra-0.16-1, RSQLite-2.3.7, Rssa-1.0.5, rstan-2.32.6, rstantools-2.4.0, rstatix-0.7.2, rtdists-0.11-5, Rtsne-0.17, Rttf2pt1-1.3.12, RUnit-0.4.33, ruv-0.9.7.1, rvertnet-0.8.4, rvest-1.0.4, rvinecopulib-0.6.3.1.1, Rvmmin-2018-4.17.1, RWeka-0.4-46, RWekajars-3.9.3-2, s2-1.1.6, sampling-2.10, sandwich-3.1-0, SBdecomp-1.2, scales-1.3.0, scam-1.2-17, scatterpie-0.2.3, scatterplot3d-0.3-44, scs-3.2.4, sctransform-0.4.1, SDMTools-1.1-221.2, seewave-2.2.3, segmented-2.1-0, selectr-0.4-2, sem-3.1-15, semPLS-1.0-10, semTools-0.5-6, sendmailR-1.4-0, sensemakr-0.1.4, sentometrics-1.0.0, seqinr-4.2-36, servr-0.30, setRNG-2024.2-1, sf-1.0-16, sfheaders-0.4.4, sfsmisc-1.1-18, shadowtext-0.1.3, shape-1.4.6.1, shapefiles-0.7.2, shinycssloaders-1.0.0, shinydashboard-0.7.2, shinyjs-2.1.0, shinystan-2.6.0, shinythemes-1.2.0, signal-1.8-0, SignifReg-4.3, simex-1.8, SimSeq-1.4.0, SKAT-2.2.5, slam-0.1-50, slider-0.3.1, sm-2.2-6.0, smoof-1.6.0.3, smoother-1.3, sn-2.1.1, sna-2.7-2, SNFtool-2.3.1, snow-0.4-4, SnowballC-0.7.1, snowfall-1.84-6.3, SOAR-0.99-11, solrium-1.2.0, som-0.3-5.1, soundecology-1.3.3, sp-2.1-4, spaa-0.2.2, spam-2.10-0, spaMM-4.5.0, SparseM-1.83, SPAtest-3.1.2, spatial-7.3-17, spatstat-3.0-8, spatstat.core-2.4-4, spatstat.data-3.1-2, spatstat.explore-3.2-7, spatstat.geom-3.2-9, spatstat.linnet-3.1-5, spatstat.model-3.2-11, spatstat.random-3.2-3, spatstat.sparse-3.1-0, spatstat.utils-3.0-5, spData-2.3.1, spdep-1.3-5, splitstackshape-1.4.8, spls-2.2-3, spocc-1.2.3, spThin-0.2.0, SQUAREM-2021.1, stabledist-0.7-1, stabs-0.6-4, StanHeaders-2.32.9, stargazer-5.2.3, stars-0.6-5, startupmsg-0.9.6.1, StatMatch-1.4.2, statmod-1.5.0, statnet-2019.6, statnet.common-4.9.0, stdReg-3.4.1, stopwords-2.3, stringdist-0.9.12, stringmagic-1.1.2, strucchange-1.5-3, styler-1.10.3, subplex-1.8, SuperLearner-2.0-29, SuppDists-1.1-9.7, survey-4.4-2, survival-3.7-0, survivalROC-1.0.3.1, svd-0.5.5, svglite-2.1.3, svUnit-1.0.6, swagger-5.17.14, symmoments-1.2.1, tableone-0.13.2, tabletools-0.1.0, tau-0.0-25, taxize-0.9.100, tcltk2-1.2-11, tclust-2.0-4, TeachingDemos-2.13, tensor-1.5, tensorA-0.36.2.1, tergm-4.2.0, terra-1.7-78, testit-0.13, textcat-1.0-8, textplot-0.2.2, TFisher-0.2.0, TH.data-1.1-2, threejs-0.3.3, tictoc-1.2.1, tidybayes-3.0.6, tidygraph-1.3.1, tidyr-1.3.1, tidyselect-1.2.1, tidytext-0.4.2, tidytree-0.4.6, tidyverse-2.0.0, tiff-0.1-12, timechange-0.3.0, timeDate-4032.109, timereg-2.0.5, tkrplot-0.0-27, tm-0.7-13, tmap-3.3-4, tmaptools-3.1-1, TMB-1.9.12, tmle-2.0.1.1, tmvnsim-1.0-2, tmvtnorm-1.6, tokenizers-0.3.0, topicmodels-0.2-16, TraMineR-2.2-10, tree-1.0-43, triebeard-0.4.1, trimcluster-0.1-5, tripack-1.3-9.1, TruncatedNormal-2.2.2, truncnorm-1.0-9, trust-0.1-8, tseries-0.10-56, tseriesChaos-0.1-13.1, tsna-0.3.5, tsne-0.1-3.1, TTR-0.24.4, tuneR-1.4.7, twang-2.6, tweedie-2.3.5, tweenr-2.0.3, tzdb-0.4.0, ucminf-1.2.1, udpipe-0.8.11, umap-0.2.10.0, unbalanced-2.0, unikn-1.0.0, uniqueAtomMat-0.1-3-2, units-0.8-5, unmarked-1.4.1, UpSetR-1.4.0, urca-1.3-4, urltools-1.7.3, uroot-2.1-3, uuid-1.2-0, V8-4.4.2, varhandle-2.0.6, vcd-1.4-12, vcfR-1.15.0, vegan-2.6-6.1, VennDiagram-1.7.3, VGAM-1.1-11, VIM-6.2.2, VineCopula-2.5.0, vioplot-0.4.0, vipor-0.4.7, viridis-0.6.5, viridisLite-0.4.2, visdat-0.6.0, visNetwork-2.1.2, vroom-1.6.5, VSURF-1.2.0, warp-0.2.1, waveslim-1.8.5, wdm-0.2.4, webshot-0.5.5, webutils-1.2.0, weights-1.0.4, WeightSVM-1.7-13, wellknown-0.7.4, widgetframe-0.3.1, WikidataQueryServiceR-1.0.0, WikidataR-2.3.3, WikipediR-1.7.1, wikitaxa-0.4.0, wk-0.9.1, word2vec-0.4.0, wordcloud-2.6, worrms-0.4.3, writexl-1.5.0, WriteXLS-6.6.0, XBRL-0.99.19.1, xgboost-1.7.7.1, xlsx-0.6.5, xlsxjars-0.6.1, XML-3.99-0.16.1, xts-0.14.0, yaImpute-1.0-34, yulab.utils-0.1.4, zeallot-0.1.0, zoo-1.8-12"}}, "description": "Bundle of R packages from CRAN", "homepage": "https://www.r-project.org/"}, "R": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"R/4.2.2-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "abc-2.2.1, abc.data-1.0, abe-3.0.1, abind-1.4-5, acepack-1.4.1, adabag-4.2, ade4-1.7-22, ADGofTest-0.3, admisc-0.31, aggregation-1.0.1, AICcmodavg-2.3-1, akima-0.6-3.4, alabama-2022.4-1, AlgDesign-1.2.1, alluvial-0.1-2, AMAPVox-1.0.0, animation-2.7, aod-1.3.2, apcluster-1.4.10, ape-5.7-1, aplot-0.1.10, argparse-2.2.2, aricode-1.0.2, arm-1.13-1, askpass-1.1, asnipe-1.1.16, assertive-0.3-6, assertive.base-0.0-9, assertive.code-0.0-3, assertive.data-0.0-3, assertive.data.uk-0.0-2, assertive.data.us-0.0-2, assertive.datetimes-0.0-3, assertive.files-0.0-2, assertive.matrices-0.0-2, assertive.models-0.0-2, assertive.numbers-0.0-2, assertive.properties-0.0-5, assertive.reflection-0.0-5, assertive.sets-0.0-3, assertive.strings-0.0-3, assertive.types-0.0-3, assertthat-0.2.1, AUC-0.3.2, audio-0.1-10, aws-2.5-1, awsMethods-1.1-1, backports-1.4.1, bacr-1.0.1, bartMachine-1.3.3.1, bartMachineJARs-1.2.1, base, base64-2.0.1, base64enc-0.1-3, BatchJobs-1.9, batchmeans-1.0-4, BayesianTools-0.1.8, BayesLogit-2.1, bayesm-3.1-5, BayesPen-1.0, bayesplot-1.10.0, BB-2019.10-1, BBmisc-1.13, bbmle-1.0.25, BCEE-1.3.1, BDgraph-2.72, bdsmatrix-1.3-6, beanplot-1.3.1, beeswarm-0.4.0, berryFunctions-1.22.0, betareg-3.1-4, BH-1.81.0-1, BiasedUrn-2.0.9, bibtex-0.5.1, bigD-0.2.0, BIGL-1.7.0, bigmemory-4.6.1, bigmemory.sri-0.1.6, bindr-0.1.1, bindrcpp-0.2.2, bio3d-2.4-4, biom-0.3.12, biomod2-4.2-2, bit-4.0.5, bit64-4.0.5, bitops-1.0-7, blavaan-0.4-7, blob-1.2.4, BMA-3.18.17, bmp-0.3, bnlearn-4.8.1, bold-1.2.0, boot-1.3-28.1, bootstrap-2019.6, Boruta-8.0.0, brew-1.0-8, brglm-0.7.2, bridgedist-0.1.2, bridgesampling-1.1-2, brio-1.1.3, brms-2.19.0, Brobdingnag-1.2-9, broom-1.0.4, broom.helpers-1.12.0, broom.mixed-0.2.9.4, bslib-0.4.2, bst-0.3-24, cachem-1.0.7, Cairo-1.6-0, calibrate-1.7.7, callr-3.7.3, car-3.1-1, carData-3.0-5, caret-6.0-93, catlearn-0.9.1, caTools-1.18.2, CBPS-0.23, celestial-1.4.6, cellranger-1.1.0, cgdsr-1.2.10, cghFLasso-0.2-1, changepoint-2.2.4, checkmate-2.1.0, chemometrics-1.4.2, chkptstanr-0.1.1, chron-2.3-60, circlize-0.4.15, circular-0.4-95, class-7.3-21, classInt-0.4-9, cld2-1.2.4, cli-3.6.0, clipr-0.8.0, clisymbols-1.2.0, clock-0.6.1, clue-0.3-64, cluster-2.1.4, clusterGeneration-1.3.7, clusterRepro-0.9, clustree-0.5.0, clValid-0.7, cmprsk-2.2-11, cNORM-3.0.2, cobalt-4.4.1, cobs-1.3-5, coda-0.19-4, codetools-0.2-19, coin-1.4-2, collapse-1.9.3, colorspace-2.1-0, colourpicker-1.2.0, combinat-0.0-8, ComICS-1.0.4, commonmark-1.8.1, compiler, ComplexUpset-1.3.3, compositions-2.0-5, CompQuadForm-1.4.3, conditionz-0.1.0, conflicted-1.2.0, conquer-1.3.3, contfrac-1.1-12, copCAR-2.0-4, copula-1.1-2, corpcor-1.6.10, corrplot-0.92, covr-3.6.1, CovSel-1.2.1, covsim-1.0.0, cowplot-1.1.1, coxed-0.3.3, coxme-2.2-18.1, cpp11-0.4.3, crayon-1.5.2, credentials-1.3.2, crfsuite-0.4.1, crosstalk-1.2.0, crul-1.3, cSEM-0.5.0, csSAM-1.2.4, ctmle-0.1.2, cubature-2.0.4.6, cubelyr-1.0.2, curl-5.0.0, cvAUC-1.1.4, CVST-0.2-3, CVXR-1.0-11, d3Network-0.5.2.1, dagitty-0.3-1, data.table-1.14.8, data.tree-1.0.0, DataCombine-0.2.21, datasets, date-1.2-42, dbarts-0.9-23, DBI-1.1.3, dbplyr-2.3.1, dbscan-1.1-11, dcurver-0.9.2, ddalpha-1.3.13, deal-1.2-42, debugme-1.1.0, deldir-1.0-6, dendextend-1.16.0, DEoptim-2.2-8, DEoptimR-1.0-11, DepthProc-2.1.5, Deriv-4.1.3, desc-1.4.2, DescTools-0.99.48, deSolve-1.35, devtools-2.4.5, dfidx-0.0-5, DHARMa-0.4.6, dHSIC-2.1, diagram-1.6.5, DiagrammeR-1.0.9, DiceKriging-1.6.0, dichromat-2.0-0.1, diffobj-0.3.5, digest-0.6.31, dimRed-0.2.6, diptest-0.76-0, DiscriMiner-0.1-29, dismo-1.3-9, distillery-1.2-1, distr-2.9.1, distrEx-2.9.0, distributional-0.3.1, DistributionUtils-0.6-0, diveRsity-1.9.90, dlm-1.1-6, DMCfun-2.0.2, doc2vec-0.2.0, docstring-1.0.0, doMC-1.3.8, doParallel-1.0.17, doRNG-1.8.6, doSNOW-1.0.20, dotCall64-1.0-2, downlit-0.4.2, downloader-0.4, dplyr-1.1.0, dr-3.0.10, drgee-1.1.10, DRR-0.0.4, drugCombo-1.2.1, DT-0.27, dtangle-2.0.9, dtplyr-1.3.0, DTRreg-1.7, dtw-1.23-1, dummies-1.5.6, dygraphs-1.1.1.6, dynamicTreeCut-1.63-1, e1071-1.7-13, earth-5.3.2, EasyABC-1.5.2, ECOSolveR-0.5.5, elementR-1.3.7, ellipse-0.4.3, ellipsis-0.3.2, elliptic-1.4-0, emdbook-1.3.12, emmeans-1.8.5, emoa-0.5-0.1, emulator-1.2-21, energy-1.7-11, ENMeval-2.0.4, entropy-1.3.1, EnvStats-2.7.0, epitools-0.5-10.1, ergm-4.4.0, ergm.count-4.1.1, estimability-1.4.1, evaluate-0.20, EValue-4.1.3, evd-2.3-6.1, Exact-3.2, expm-0.999-7, ExPosition-2.8.23, expsmooth-2.3, extrafont-0.19, extrafontdb-1.0, extRemes-2.1-3, FactoMineR-2.7, FactorCopula-0.9.3, fail-1.3, fansi-1.0.4, farver-2.1.1, fastcluster-1.2.3, fastDummies-1.6.3, fasterize-1.0.4, fastICA-1.2-3, fastmap-1.1.1, fastmatch-1.1-3, fdrtool-1.2.17, feather-0.3.5, ff-4.0.9, fftw-1.0-7, fftwtools-0.9-11, fields-14.1, filehash-2.4-5, finalfit-1.0.6, findpython-1.0.8, fishMod-0.29, fitdistrplus-1.1-8, FKSUM-1.0.1, flashClust-1.01-2, flexclust-1.4-1, flexmix-2.3-19, flextable-0.9.2, fma-2.5, FME-1.3.6.2, fmri-1.9.11, FNN-1.1.3.1, fontawesome-0.5.0, fontBitstreamVera-0.1.1, fontLiberation-0.1.0, fontquiver-0.2.1, forcats-1.0.0, foreach-1.5.2, forecast-8.21, foreign-0.8-84, formatR-1.14, Formula-1.2-5, formula.tools-1.7.1, fossil-0.4.0, fpc-2.2-10, fpp-0.5, fracdiff-1.5-2, fs-1.6.1, furrr-0.3.1, futile.logger-1.4.3, futile.options-1.0.1, future-1.32.0, future.apply-1.10.0, gam-1.22-1, gamlss-5.4-12, gamlss.data-6.0-2, gamlss.dist-6.0-5, gamlss.tr-5.1-7, gamm4-0.2-6, gap-1.5-1, gap.datasets-0.0.5, gapfill-0.9.6-1, gargle-1.3.0, gaussquad-1.0-3, gbm-2.1.8.1, gbRd-0.4-11, gclus-1.3.2, gdalUtilities-1.2.5, gdalUtils-2.0.3.2, gdata-2.18.0.1, gdistance-1.6, gdtools-0.3.3, gee-4.13-25, geeM-0.10.1, geepack-1.3.9, geex-1.1.1, geiger-2.0.10, GeneNet-1.2.16, generics-0.1.3, genoPlotR-0.8.11, GenSA-1.1.8, geojson-0.3.5, geojsonio-0.11.3, geojsonsf-2.0.3, geometries-0.2.2, geometry-0.4.7, gert-1.9.2, getopt-1.20.3, GetoptLong-1.0.5, gfonts-0.2.0, GGally-2.1.2, ggbeeswarm-0.7.1, ggdag-0.2.7, ggExtra-0.10.0, ggfan-0.1.3, ggforce-0.4.1, ggformula-0.10.2, ggfun-0.0.9, ggh4x-0.2.3, ggnetwork-0.5.12, ggplot2-3.4.1, ggplotify-0.1.0, ggpubr-0.6.0, ggraph-2.1.0, ggrepel-0.9.3, ggridges-0.5.4, ggsci-3.0.0, ggsignif-0.6.4, ggstance-0.3.6, ggvenn-0.1.9, ggvis-0.4.8, gh-1.4.0, GillespieSSA-0.6.2, git2r-0.31.0, gitcreds-0.1.2, GJRM-0.2-6.1, glasso-1.11, gld-2.6.6, gllvm-1.4.1, glmmML-1.1.4, glmmTMB-1.1.5, glmnet-4.1-6, GlobalOptions-0.1.2, globals-0.16.2, glue-1.6.2, gmm-1.7, gmodels-2.18.1.1, gmp-0.7-1, gnumeric-0.7-8, goftest-1.2-3, gomms-1.0, googledrive-2.0.0, googlesheets4-1.0.1, gower-1.0.1, GPArotation-2022.10-2, gplots-3.1.3, graphics, graphlayouts-0.8.4, grDevices, grf-2.2.1, grid, gridBase-0.4-7, gridExtra-2.3, gridGraphics-0.5-1, grImport2-0.2-0, grpreg-3.4.0, GSA-1.03.2, gsalib-2.2.1, gsl-2.1-8, gsw-1.1-1, gt-0.8.0, gtable-0.3.1, gtools-3.9.4, gtsummary-1.7.0, GUTS-1.2.3, gWidgets2-1.0-9, gWidgets2tcltk-1.0-8, GxEScanR-2.0.2, h2o-3.40.0.1, hal9001-0.4.3, haldensify-0.2.3, hardhat-1.2.0, harmony-0.1.1, hash-2.2.6.2, haven-2.5.2, hdf5r-1.3.8, hdm-0.3.1, heatmap3-1.1.9, here-1.0.1, hexbin-1.28.2, HGNChelper-0.8.1, HiddenMarkov-1.8-13, highr-0.10, Hmisc-5.0-1, hms-1.1.2, Hmsc-3.0-13, htmlTable-2.4.1, htmltools-0.5.4, htmlwidgets-1.6.1, httpcode-0.3.0, httpuv-1.6.9, httr-1.4.5, httr2-0.2.2, huge-1.3.5, hunspell-3.0.2, hwriter-1.3.2.1, HWxtest-1.1.9, hypergeo-1.2-13, ica-1.0-3, IDPmisc-1.1.20, idr-1.3, ids-1.0.1, ie2misc-0.9.0, igraph-1.4.1, image.binarization-0.1.3, imager-0.42.18, imagerExtra-1.3.2, ineq-0.2-13, influenceR-0.1.0.1, infotheo-1.2.0.1, ini-0.3.1, inline-0.3.19, intergraph-2.0-2, interp-1.1-3, interpretR-0.2.4, intrinsicDimension-1.2.0, inum-1.0-5, ipred-0.9-14, irace-3.5, irlba-2.3.5.1, ismev-1.42, Iso-0.0-18.1, isoband-0.2.7, ISOcodes-2022.09.29, ISOweek-0.6-2, iterators-1.0.14, itertools-0.1-3, JADE-2.0-3, janeaustenr-1.0.0, JBTools-0.7.2.9, jiebaR-0.11, jiebaRD-0.1, jomo-2.7-4, jpeg-0.1-10, jqr-1.3.1, jquerylib-0.1.4, jsonify-1.2.2, jsonlite-1.8.4, jstable-1.0.7, juicyjuice-0.1.0, kde1d-1.0.5, kedd-1.0.3, kernlab-0.9-32, KernSmooth-2.23-20, kinship2-1.9.6, klaR-1.7-1, knitr-1.42, KODAMA-2.4, kohonen-3.0.11, ks-1.14.0, labdsv-2.0-1, labeling-0.4.2, labelled-2.10.0, laeken-0.5.2, lambda.r-1.2.4, LaplacesDemon-16.1.6, lars-1.3, lassosum-0.4.5, later-1.3.0, lattice-0.20-45, latticeExtra-0.6-30, lava-1.7.2.1, lavaan-0.6-15, lazy-1.2-18, lazyeval-0.2.2, LCFdata-2.0, lda-1.4.2, ldbounds-2.0.0, leafem-0.2.0, leaflet-2.1.2, leaflet.providers-1.9.0, leafsync-0.1.0, leaps-3.1, LearnBayes-2.15.1, leiden-0.4.3, lhs-1.1.6, libcoin-1.0-9, lifecycle-1.0.3, limSolve-1.5.6, linkcomm-1.0-14, linprog-0.9-4, liquidSVM-1.2.4, listenv-0.9.0, lme4-1.1-32, LMERConvenienceFunctions-3.0, lmerTest-3.1-3, lmom-2.9, Lmoments-1.3-1, lmtest-0.9-40, lobstr-1.1.2, locfdr-1.1-8, locfit-1.5-9.7, logcondens-2.1.7, logger-0.2.2, logistf-1.24.1, logspline-2.1.19, longitudinal-1.1.13, longmemo-1.1-2, loo-2.5.1, lpSolve-5.6.18, lpSolveAPI-5.5.2.0-17.9, lqa-1.0-3, lsei-1.3-0, lslx-0.6.11, lubridate-1.9.2, lwgeom-0.2-11, magic-1.6-1, magick-2.7.4, magrittr-2.0.3, MALDIquant-1.22, manipulateWidget-0.11.1, mapproj-1.2.11, maps-3.4.1, maptools-1.1-6, markdown-1.5, MASS-7.3-58.3, Matching-4.10-8, MatchIt-4.5.1, mathjaxr-1.6-0, matlab-1.0.4, Matrix-1.5-3, matrixcalc-1.0-6, MatrixModels-0.5-1, matrixStats-0.63.0, maxLik-1.5-2, maxlike-0.1-9, maxnet-0.1.4, mboost-2.9-7, mclogit-0.9.6, mclust-6.0.0, mcmc-0.9-7, MCMCpack-1.6-3, mcmcse-1.5-0, mda-0.5-3, medflex-0.6-7, mediation-4.5.0, memisc-0.99.31.6, memoise-2.0.1, memuse-4.2-3, MESS-0.5.9, metadat-1.2-0, metafor-3.8-1, MetaUtility-2.1.2, methods, mets-1.3.2, mgcv-1.8-42, mgsub-1.7.3, mhsmm-0.4.16, mi-1.1, mice-3.15.0, miceadds-3.16-18, microbenchmark-1.4.9, MIIVsem-0.5.8, mime-0.12, minerva-1.5.10, miniUI-0.1.1.1, minpack.lm-1.2-3, minqa-1.2.5, mirt-1.38.1, misc3d-0.9-1, miscTools-0.6-26, missForest-1.5, mitml-0.4-5, mitools-2.4, mixtools-2.0.0, mlbench-2.1-3, mlegp-3.1.9, MLmetrics-1.1.1, mlogit-1.1-1, mlr-2.19.1, mlrMBO-1.1.5.1, mltools-0.3.5, mnormt-2.1.1, ModelMetrics-1.2.2.2, modelr-0.1.10, modeltools-0.2-23, MODIStsp-2.1.0, momentfit-0.3, moments-0.14.1, MonteCarlo-1.0.6, mosaicCore-0.9.2.1, mpath-0.4-2.23, mRMRe-2.1.2, msm-1.7, mstate-0.3.2, multcomp-1.4-23, multcompView-0.1-8, multicool-0.1-12, multipol-1.0-7, munsell-0.5.0, mvabund-4.2.1, mvnfast-0.2.8, mvtnorm-1.1-3, nabor-0.5.0, naniar-1.0.0, natserv-1.0.0, naturalsort-0.1.3, ncbit-2013.03.29.1, ncdf4-1.21, NCmisc-1.2.0, network-1.18.1, networkDynamic-0.11.3, networkLite-1.0.5, neuralnet-1.44.2, neuRosim-0.2-13, ngspatial-1.2-2, NISTunits-1.0.1, nleqslv-3.3.4, nlme-3.1-162, nloptr-2.0.3, NLP-0.2-1, nlsem-0.8, nnet-7.3-18, nnls-1.4, nonnest2-0.5-5, nor1mix-1.3-0, norm-1.0-10.0, nortest-1.0-4, np-0.60-17, npsurv-0.5-0, numDeriv-2016.8-1.1, oai-0.4.0, oce-1.7-10, OceanView-1.0.6, oddsratio-2.0.1, officer-0.6.2, openair-2.16-0, OpenMx-2.21.1, openssl-2.0.6, openxlsx-4.2.5.2, operator.tools-1.6.3, optextras-2019-12.4, optimParallel-1.0-2, optimr-2019-12.16, optimx-2022-4.30, optmatch-0.10.6, optparse-1.7.3, ordinal-2022.11-16, origami-1.0.7, oro.nifti-0.11.4, orthopolynom-1.0-6.1, osqp-0.6.0.8, outliers-0.15, packrat-0.9.1, pacman-0.5.1, pammtools-0.5.8, pamr-1.56.1, pan-1.6, parallel, parallelDist-0.2.6, parallelly-1.34.0, parallelMap-1.5.1, ParamHelpers-1.14.1, parsedate-1.3.1, party-1.3-13, partykit-1.2-18, pastecs-1.3.21, patchwork-1.1.2, pbapply-1.7-0, pbivnorm-0.6.0, pbkrtest-0.5.2, PCAmatchR-0.3.3, pcaPP-2.0-3, pdp-0.8.1, PearsonDS-1.2.3, pec-2022.05.04, penalized-0.9-52, penfa-0.1.1, peperr-1.4, PermAlgo-1.2, permute-0.9-7, phangorn-2.11.1, pheatmap-1.0.12, phylobase-0.8.10, phytools-1.5-1, pillar-1.8.1, pim-2.0.2, pinfsc50-1.2.0, pixmap-0.4-12, pkgbuild-1.4.0, pkgconfig-2.0.3, pkgdown-2.0.7, pkgload-1.3.2, pkgmaker-0.32.8, plogr-0.2.0, plot3D-1.4, plot3Drgl-1.0.4, plotly-4.10.1, plotmo-3.6.2, plotrix-3.8-2, pls-2.8-1, plyr-1.8.8, PMA-1.2.1, png-0.1-8, PoissonSeq-1.1.2, poLCA-1.6.0.1, polspline-1.1.22, Polychrome-1.5.1, polyclip-1.10-4, polycor-0.8-1, polynom-1.4-1, posterior-1.4.1, ppcor-1.1, prabclus-2.3-2, pracma-2.4.2, praise-1.0.0, PresenceAbsence-1.1.11, preseqR-4.0.0, prettyGraphs-2.1.6, prettyunits-1.1.1, princurve-2.1.6, pROC-1.18.0, processx-3.8.0, prodlim-2019.11.13, profileModel-0.6.1, proftools-0.99-3, profvis-0.3.7, progress-1.2.2, progressr-0.13.0, projpred-2.4.0, promises-1.2.0.1, proto-1.0.0, protolite-2.3.0, proxy-0.4-27, proxyC-0.3.3, pryr-0.1.6, ps-1.7.2, pscl-1.5.5, pspline-1.0-19, psych-2.2.9, Publish-2023.01.17, pulsar-0.3.10, purrr-1.0.1, pvclust-2.2-0, qgam-1.3.4, qgraph-1.9.3, qqman-0.1.8, qrnn-2.0.5, quadprog-1.5-8, quanteda-3.3.0, quantmod-0.4.20, quantreg-5.94, questionr-0.7.8, R.cache-0.16.0, R.matlab-3.7.0, R.methodsS3-1.8.2, R.oo-1.25.0, R.rsp-0.45.0, R.utils-2.12.2, R2WinBUGS-2.1-21, R6-2.5.1, ragg-1.2.5, random-0.2.6, randomForest-4.7-1.1, randomForestSRC-3.2.1, randtoolbox-2.0.4, rangeModelMetadata-0.1.4, ranger-0.14.1, RANN-2.6.1, rapidjsonr-1.2.0, rappdirs-0.3.3, rARPACK-0.11-0, raster-3.6-20, rasterVis-0.51.5, ratelimitr-0.4.1, RBesT-1.6-6, rbibutils-2.2.13, rbison-1.0.0, Rborist-0.3-2, RCAL-2.0, Rcgmin-2022-4.30, RCircos-1.2.2, rcmdcheck-1.4.0, RColorBrewer-1.1-3, Rcpp-1.0.10, RcppArmadillo-0.12.0.1.0, RcppEigen-0.3.3.9.3, RcppGSL-0.3.13, RcppParallel-5.1.7, RcppProgress-0.4.2, RcppRoll-0.3.0, RcppThread-2.1.3, RcppTOML-0.2.2, RCurl-1.98-1.10, rda-1.2-1, Rdpack-2.4, rdrop2-0.8.2.1, readbitmap-0.1.5, reader-1.0.6, readODS-1.8.0, readr-2.1.4, readxl-1.4.2, rebird-1.3.0, recipes-1.0.5, RefFreeEWAS-2.2, registry-0.5-1, regsem-1.9.3, relsurv-2.2-9, rematch-1.0.1, rematch2-2.1.2, remotes-2.4.2, rentrez-1.2.3, renv-0.17.1, reprex-2.0.2, resample-0.6, reshape-0.8.9, reshape2-1.4.4, reticulate-1.28, rex-1.2.1, rgbif-3.7.5, RGCCA-2.1.2, rgdal-1.6-5, rgeos-0.6-2, rgexf-0.16.2, rgl-1.0.1, Rglpk-0.6-4, RhpcBLASctl-0.23-42, ridge-3.3, ridigbio-0.3.6, RInside-0.2.18, rio-0.5.29, riskRegression-2022.11.28, ritis-1.0.0, RItools-0.3-3, rJava-1.0-6, rjson-0.2.21, RJSONIO-1.3-1.8, rlang-1.1.0, rle-0.9.2, rlecuyer-0.3-5, rlemon-0.2.1, rlist-0.4.6.2, rmarkdown-2.20, rmeta-3.0, Rmpfr-0.9-1, rms-6.5-0, RMTstat-0.3.1, rncl-0.8.7, rnetcarto-0.2.6, RNeXML-2.4.11, rngtools-1.5.2, rngWELL-0.10-9, RNifti-1.4.5, robustbase-0.95-0, ROCR-1.0-11, ROI-1.0-0, ROI.plugin.glpk-1.0-0, Rook-1.2, rootSolve-1.8.2.3, roptim-0.1.6, rotl-3.0.14, roxygen2-7.2.3, rpact-3.3.4, rpart-4.1.19, rpf-1.0.11, RPMM-1.25, rprojroot-2.0.3, rrcov-1.7-2, rredlist-0.7.1, rsample-1.1.1, rsconnect-0.8.29, Rserve-1.8-11, RSNNS-0.4-15, Rsolnp-1.16, RSpectra-0.16-1, RSQLite-2.3.0, Rssa-1.0.5, rstan-2.21.8, rstantools-2.3.0, rstatix-0.7.2, rstudioapi-0.14, rtdists-0.11-5, Rtsne-0.16, Rttf2pt1-1.3.12, RUnit-0.4.32, ruv-0.9.7.1, rversions-2.1.2, rvertnet-0.8.2, rvest-1.0.3, rvinecopulib-0.6.3.1.1, Rvmmin-2018-4.17.1, RWeka-0.4-46, RWekajars-3.9.3-2, s2-1.1.2, sampling-2.9, sandwich-3.0-2, sass-0.4.5, SBdecomp-1.2, scales-1.2.1, scam-1.2-13, scatterpie-0.1.8, scatterplot3d-0.3-43, scs-3.2.4, sctransform-0.3.5, SDMTools-1.1-221.2, seewave-2.2.0, segmented-1.6-2, selectr-0.4-2, sem-3.1-15, semPLS-1.0-10, semTools-0.5-6, sendmailR-1.4-0, sensemakr-0.1.4, sentometrics-1.0.0, seqinr-4.2-23, servr-0.25, sessioninfo-1.2.2, setRNG-2022.4-1, sf-1.0-11, sfheaders-0.4.2, sfsmisc-1.1-14, shadowtext-0.1.2, shape-1.4.6, shapefiles-0.7.2, shiny-1.7.4, shinycssloaders-1.0.0, shinydashboard-0.7.2, shinyjs-2.1.0, shinystan-2.6.0, shinythemes-1.2.0, signal-0.7-7, SignifReg-4.3, simex-1.8, SimSeq-1.4.0, SKAT-2.2.5, slam-0.1-50, slider-0.3.0, sm-2.2-5.7.1, smoof-1.6.0.3, smoother-1.1, sn-2.1.0, sna-2.7-1, SNFtool-2.3.1, snow-0.4-4, SnowballC-0.7.0, snowfall-1.84-6.2, SOAR-0.99-11, solrium-1.2.0, som-0.3-5.1, soundecology-1.3.3, sourcetools-0.1.7-1, sp-1.6-0, spaa-0.2.2, spam-2.9-1, spaMM-4.2.1, SparseM-1.81, SPAtest-3.1.2, spatial-7.3-16, spatstat-3.0-3, spatstat.core-2.4-4, spatstat.data-3.0-1, spatstat.explore-3.1-0, spatstat.geom-3.1-0, spatstat.linnet-3.0-6, spatstat.model-3.2-1, spatstat.random-3.1-4, spatstat.sparse-3.0-1, spatstat.utils-3.0-2, spData-2.2.2, splines, splitstackshape-1.4.8, spls-2.2-3, spocc-1.2.1, spThin-0.2.0, SQUAREM-2021.1, stabledist-0.7-1, stabs-0.6-4, StanHeaders-2.21.0-7, stargazer-5.2.3, stars-0.6-0, startupmsg-0.9.6, StatMatch-1.4.1, statmod-1.5.0, statnet-2019.6, statnet.common-4.8.0, stats, stats4, stdReg-3.4.1, stopwords-2.3, stringdist-0.9.10, stringi-1.7.12, stringr-1.5.0, strucchange-1.5-3, styler-1.9.1, subplex-1.8, SuperLearner-2.0-28, SuppDists-1.1-9.7, survey-4.1-1, survival-3.5-5, survivalROC-1.0.3.1, svd-0.5.3, svglite-2.1.1, swagger-3.33.1, symmoments-1.2.1, sys-3.4.1, systemfonts-1.0.4, tableone-0.13.2, tabletools-0.1.0, tau-0.0-24, taxize-0.9.100, tcltk, tcltk2-1.2-11, tclust-1.5-2, TeachingDemos-2.12, tensor-1.5, tensorA-0.36.2, tergm-4.1.1, terra-1.7-18, testit-0.13, testthat-3.1.7, textcat-1.0-8, textplot-0.2.2, textshaping-0.3.6, TFisher-0.2.0, TH.data-1.1-1, threejs-0.3.3, tibble-3.2.0, tictoc-1.1, tidygraph-1.2.3, tidyr-1.3.0, tidyselect-1.2.0, tidytext-0.4.1, tidytree-0.4.2, tidyverse-2.0.0, tiff-0.1-11, timechange-0.2.0, timeDate-4022.108, timereg-2.0.5, tinytex-0.44, tkrplot-0.0-27, tm-0.7-11, tmap-3.3-3, tmaptools-3.1-1, TMB-1.9.2, tmle-1.5.0.2, tmvnsim-1.0-2, tmvtnorm-1.5, tokenizers-0.3.0, tools, topicmodels-0.2-13, TraMineR-2.2-6, tree-1.0-43, triebeard-0.4.1, trimcluster-0.1-5, tripack-1.3-9.1, TruncatedNormal-2.2.2, truncnorm-1.0-8, trust-0.1-8, tseries-0.10-53, tseriesChaos-0.1-13.1, tsna-0.3.5, tsne-0.1-3.1, TTR-0.24.3, tuneR-1.4.3, twang-2.5, tweedie-2.3.5, tweenr-2.0.2, tzdb-0.3.0, ucminf-1.1-4.1, udpipe-0.8.11, umap-0.2.10.0, unbalanced-2.0, unikn-0.8.0, uniqueAtomMat-0.1-3-2, units-0.8-1, unmarked-1.2.5, UpSetR-1.4.0, urca-1.3-3, urlchecker-1.0.1, urltools-1.7.3, uroot-2.1-2, usethis-2.1.6, utf8-1.2.3, utils, uuid-1.1-0, V8-4.2.2, varhandle-2.0.5, vcd-1.4-11, vcfR-1.14.0, vctrs-0.6.0, vegan-2.6-4, VennDiagram-1.7.3, VGAM-1.1-8, VIM-6.2.2, VineCopula-2.4.5, vioplot-0.4.0, vipor-0.4.5, viridis-0.6.2, viridisLite-0.4.1, visdat-0.6.0, visNetwork-2.1.2, vroom-1.6.1, VSURF-1.2.0, waldo-0.4.0, warp-0.2.0, waveslim-1.8.4, wdm-0.2.3, webshot-0.5.4, webutils-1.1, weights-1.0.4, WeightSVM-1.7-11, wellknown-0.7.4, whisker-0.4.1, widgetframe-0.3.1, WikidataQueryServiceR-1.0.0, WikidataR-2.3.3, WikipediR-1.5.0, wikitaxa-0.4.0, withr-2.5.0, wk-0.7.1, word2vec-0.3.4, wordcloud-2.6, worrms-0.4.2, WriteXLS-6.4.0, xfun-0.37, xgboost-1.7.3.1, xlsx-0.6.5, xlsxjars-0.6.1, XML-3.99-0.13, xml2-1.3.3, xopen-1.0.0, xtable-1.8-4, xts-0.13.0, yaImpute-1.0-33, yaml-2.3.7, yulab.utils-0.0.6, zeallot-0.1.0, zip-2.2.2, zoo-1.8-11"}, "R/4.3.2-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "askpass-1.2.0, base, base64enc-0.1-3, brew-1.0-8, brio-1.1.3, bslib-0.5.1, cachem-1.0.8, callr-3.7.3, cli-3.6.1, clipr-0.8.0, commonmark-1.9.0, compiler, cpp11-0.4.6, crayon-1.5.2, credentials-2.0.1, curl-5.1.0, datasets, desc-1.4.2, devtools-2.4.5, diffobj-0.3.5, digest-0.6.33, downlit-0.4.3, ellipsis-0.3.2, evaluate-0.23, fansi-1.0.5, fastmap-1.1.1, fontawesome-0.5.2, fs-1.6.3, gert-2.0.0, gh-1.4.0, gitcreds-0.1.2, glue-1.6.2, graphics, grDevices, grid, highr-0.10, htmltools-0.5.7, htmlwidgets-1.6.2, httpuv-1.6.12, httr-1.4.7, httr2-0.2.3, ini-0.3.1, jquerylib-0.1.4, jsonlite-1.8.7, knitr-1.45, later-1.3.1, lifecycle-1.0.3, magrittr-2.0.3, memoise-2.0.1, methods, mime-0.12, miniUI-0.1.1.1, openssl-2.1.1, parallel, pillar-1.9.0, pkgbuild-1.4.2, pkgconfig-2.0.3, pkgdown-2.0.7, pkgload-1.3.3, praise-1.0.0, prettyunits-1.2.0, processx-3.8.2, profvis-0.3.8, promises-1.2.1, ps-1.7.5, purrr-1.0.2, R6-2.5.1, ragg-1.2.6, rappdirs-0.3.3, rcmdcheck-1.4.0, Rcpp-1.0.11, rematch2-2.1.2, remotes-2.4.2.1, rlang-1.1.2, rmarkdown-2.25, roxygen2-7.2.3, rprojroot-2.0.4, rstudioapi-0.15.0, rversions-2.1.2, sass-0.4.7, sessioninfo-1.2.2, shiny-1.7.5.1, sourcetools-0.1.7-1, splines, stats, stats4, stringi-1.7.12, stringr-1.5.0, sys-3.4.2, systemfonts-1.0.5, tcltk, testthat-3.2.0, textshaping-0.3.7, tibble-3.2.1, tinytex-0.48, tools, urlchecker-1.0.1, usethis-2.2.2, utf8-1.2.4, utils, vctrs-0.6.4, waldo-0.5.2, whisker-0.4.1, withr-2.5.2, xfun-0.41, xml2-1.3.5, xopen-1.0.0, xtable-1.8-4, yaml-2.3.7, zip-2.3.0"}, "R/4.4.1-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "askpass-1.2.0, base, base64enc-0.1-3, brew-1.0-10, brio-1.1.5, bslib-0.7.0, cachem-1.1.0, callr-3.7.6, cli-3.6.3, clipr-0.8.0, commonmark-1.9.1, compiler, cpp11-0.4.7, crayon-1.5.3, credentials-2.0.1, curl-5.2.1, datasets, desc-1.4.3, devtools-2.4.5, diffobj-0.3.5, digest-0.6.36, downlit-0.4.4, ellipsis-0.3.2, evaluate-0.24.0, fansi-1.0.6, fastmap-1.2.0, fontawesome-0.5.2, fs-1.6.4, gert-2.0.1, gh-1.4.1, gitcreds-0.1.2, glue-1.7.0, graphics, grDevices, grid, highr-0.11, htmltools-0.5.8.1, htmlwidgets-1.6.4, httpuv-1.6.15, httr-1.4.7, httr2-1.0.1, ini-0.3.1, jquerylib-0.1.4, jsonlite-1.8.8, knitr-1.47, later-1.3.2, lifecycle-1.0.4, magrittr-2.0.3, memoise-2.0.1, methods, mime-0.12, miniUI-0.1.1.1, openssl-2.2.0, parallel, pillar-1.9.0, pkgbuild-1.4.4, pkgconfig-2.0.3, pkgdown-2.0.9, pkgload-1.3.4, praise-1.0.0, prettyunits-1.2.0, processx-3.8.4, profvis-0.3.8, promises-1.3.0, ps-1.7.6, purrr-1.0.2, R6-2.5.1, ragg-1.3.2, rappdirs-0.3.3, rcmdcheck-1.4.0, Rcpp-1.0.12, rematch2-2.1.2, remotes-2.5.0, rlang-1.1.4, rmarkdown-2.27, roxygen2-7.3.1, rprojroot-2.0.4, rstudioapi-0.16.0, rversions-2.1.2, sass-0.4.9, sessioninfo-1.2.2, shiny-1.8.1.1, sourcetools-0.1.7-1, splines, stats, stats4, stringi-1.8.4, stringr-1.5.1, sys-3.4.2, systemfonts-1.1.0, tcltk, testthat-3.2.1.1, textshaping-0.4.0, tibble-3.2.1, tinytex-0.51, tools, urlchecker-1.0.1, usethis-2.2.3, utf8-1.2.4, utils, vctrs-0.6.5, waldo-0.5.2, whisker-0.4.1, withr-3.0.0, xfun-0.45, xml2-1.3.6, xopen-1.0.1, xtable-1.8-4, yaml-2.3.8, zip-2.3.1"}}, "description": "R is a free software environment for statistical computing and graphics.", "homepage": "https://www.r-project.org/"}, "RapidJSON": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"RapidJSON/1.1.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "RapidJSON/1.1.0-20230928-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "RapidJSON/1.1.0-20240409-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A fast JSON parser/generator for C++ with both SAX/DOM style API", "homepage": "https://rapidjson.org"}, "Raptor": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Raptor/2.0.16-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Set of parsers and serializers that generate Resource Description Framework(RDF) triples by parsing syntaxes or serialize the triples into a syntax.", "homepage": "https://librdf.org/raptor/"}, "Rasqal": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Rasqal/0.9.33-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A library handling RDF query syntaxes, construction and execution", "homepage": "hhttps://librdf.org/rasqal"}, "RAxML": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"RAxML/8.2.13-gompi-2023a-standard": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace"]}, "RAxML/8.2.13-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "RAxML/8.2.13-gompi-2023a-avx2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "RAxML search algorithm for maximum likelihood based inference of phylogenetic trees.", "homepage": "https://github.com/stamatak/standard-RAxML"}, "RDFlib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"RDFlib/7.1.4-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "rdflib-7.1.4"}}, "description": "RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information.", "homepage": "https://github.com/RDFLib/rdflib"}, "RDKit": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"RDKit/2024.03.3-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "RDKit is a collection of cheminformatics and machine-learning software written in C++ and Python.", "homepage": "https://www.rdkit.org"}, "RE2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"RE2/2023-03-01-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "RE2/2023-08-01-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "RE2/2024-03-01-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "RE2 is a fast, safe, thread-friendly alternative to backtracking regularexpression engines like those used in PCRE, Perl, and Python. It is a C++library.", "homepage": "https://github.com/google/re2"}, "re2c": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"re2c/3.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "re2c/3.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "re2c/3.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "re2c is a free and open-source lexer generator for C and C++. Its main goal is generatingfast lexers: at least as fast as their reasonably optimized hand-coded counterparts. Instead of usingtraditional table-driven approach, re2c encodes the generated finite state automata directly in the formof conditional jumps and comparisons.", "homepage": "https://re2c.org"}, "redis-py": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"redis-py/5.0.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "async-timeout-4.0.3, redis-py-5.0.1"}}, "description": "The Python interface to the Redis key-value store.", "homepage": "https://github.com/redis/redis-py"}, "Redis": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Redis/7.2.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Redis is an open source (BSD licensed), in-memory data structure store, used asa database, cache, and message broker. Redis provides data structures such asstrings, hashes, lists, sets, sorted sets with range queries, bitmaps,hyperloglogs, geospatial indexes, and streams. Redis has built-in replication,Lua scripting, LRU eviction, transactions, and different levels of on-diskpersistence, and provides high availability via Redis Sentinel and automaticpartitioning with Redis Cluster.", "homepage": "https://redis.io"}, "Redland": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Redland/1.0.17-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Redland is a set of free software C libraries that provide support for the Resource Description Framework (RDF).", "homepage": "https://librdf.org/raptor"}, "ReFrame": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ReFrame/4.3.3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pip-21.3.1, reframe-4.3.3, wheel-0.37.1"}, "ReFrame/4.6.2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pip-24.0, reframe-4.6.2, setuptools-68.0.0, wheel-0.42.0"}}, "description": "ReFrame is a framework for writing regression tests for HPC systems.", "homepage": "https://github.com/reframe-hpc/reframe"}, "Rivet": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Rivet/3.1.9-gompi-2023a-HepMC3-3.2.6": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Rivet toolkit (Robust Independent Validation of Experiment and Theory)To use your own analysis you must append the path to `RIVET_ANALYSIS_PATH`.", "homepage": "https://gitlab.com/hepcedar/rivet"}, "RMextract": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"RMextract/0.5.1-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "PySocks-1.7.1, rmextract-0.5.1"}}, "description": "Extract TEC, vTEC, Earthmagnetic field and Rotation Measures from GPS and WMM data for radio interferometry observations", "homepage": "https://github.com/lofar-astron/RMextract"}, "ROOT": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ROOT/6.26.10-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ROOT/6.30.06-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The ROOT system provides a set of OO frameworks with all the functionality needed to handle and analyze large amounts of data in a very efficient way.", "homepage": "https://root.cern.ch"}, "rpy2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"rpy2/3.5.15-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "coverage-7.4.3, pytest-cov-4.1.0, rpy2-3.5.15, tzlocal-5.2"}}, "description": "rpy2 is an interface to R running embedded in a Python process.", "homepage": "https://rpy2.github.io"}, "RStudio-Server": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"RStudio-Server/2024.09.0+375-foss-2023b-Java-11-R-4.4.1": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This is the RStudio Server version.RStudio is a set of integrated tools designed to help you be more productive with R.The server can be started with: rserver --server-daemonize=0 --www-port=8787If you need a database config one can be created with: MYTMP=`mktemp -d` && echo -e \"provider=sqlite\\ndirectory=${MYTMP}/sqlite\" > \"${MYTMP}/db.conf\"and then used with: rserver ... --database-config-file=\"${MYTMP}/db.conf", "homepage": "https://www.rstudio.com/"}, "ruamel.yaml": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ruamel.yaml/0.17.32-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "configobj-5.0.8, lz4-4.3.2, ruamel.yaml-0.17.32, ruamel.yaml.base-0.3.2, ruamel.yaml.clib-0.2.7, ruamel.yaml.cmd-0.6.5, ruamel.yaml.convert-0.3.2"}, "ruamel.yaml/0.18.6-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "configobj-5.0.8, lz4-4.3.3, ruamel.yaml-0.18.6, ruamel.yaml.base-0.3.2, ruamel.yaml.clib-0.2.8, ruamel.yaml.cmd-0.6.5, ruamel.yaml.convert-0.3.2, ruamel.yaml.jinja2-0.2.7"}}, "description": "ruamel.yaml is a YAML 1.2 loader/dumper package for Python.", "homepage": "https://sourceforge.net/projects/ruamel-yaml"}, "Ruby": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Ruby/3.2.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "activesupport-5.2.8.1, addressable-2.8.4, arr-pm-0.0.12, backports-3.24.1, bundler-2.4.14, cabin-0.9.0, childprocess-4.1.0, clamp-1.3.2, concurrent-ruby-1.2.2, connection_pool-2.4.1, diff-lcs-1.5.0, ethon-0.16.0, faraday-1.2.0, faraday-net_http-3.0.2, faraday_middleware-1.2.0, ffi-1.15.5, gh-0.18.0, highline-2.1.0, i18n-1.14.1, json-2.6.3, launchy-2.5.2, minitest-5.18.0, multi_json-1.15.0, multipart-post-2.3.0, mustermann-3.0.0, net-http-persistent-2.9.4, net-http-pipeline-1.0.1, public_suffix-5.0.1, pusher-client-0.6.2, rack-2.2.4, rack-protection-3.0.6, rack-test-2.1.0, rspec-3.12.0, rspec-core-3.12.2, rspec-expectations-3.12.3, rspec-mocks-3.12.5, rspec-support-3.12.0, ruby2_keywords-0.0.5, sinatra-3.0.6, thread_safe-0.3.6, tilt-2.2.0, typhoeus-1.4.0, tzinfo-1.1.0, websocket-1.2.9, zeitwerk-2.6.8"}, "Ruby/3.3.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Ruby/3.4.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.", "homepage": "https://www.ruby-lang.org"}, "Rust": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Rust/1.65.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Rust/1.70.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Rust/1.73.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Rust/1.75.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Rust/1.75.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Rust/1.76.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety.", "homepage": "https://www.rust-lang.org"}, "SAGECal": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SAGECal/0.8.4-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SAGECal is a fast, distributed and GPU accelerated radio astronomialcalibration package. The many optimization algorithms in SAGECal areimplemented in a computationally efficient way and can be used in manyother applications.", "homepage": "https://sagecal.sourceforge.net/"}, "Salmon": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Salmon/1.10.3-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimate from RNA-seq data.", "homepage": "https://github.com/COMBINE-lab/salmon"}, "SAMtools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SAMtools/1.17-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "SAMtools/1.18-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SAM Tools provide various utilities for manipulating alignments in the SAM format, including sorting, merging, indexing and generating alignments in a per-position format.", "homepage": "https://www.htslib.org/"}, "ScaLAPACK": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ScaLAPACK/2.2.0-gompi-2022b-fb": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ScaLAPACK/2.2.0-gompi-2023a-fb": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ScaLAPACK/2.2.0-gompi-2023b-fb": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines redesigned for distributed memory MIMD parallel computers.", "homepage": "https://www.netlib.org/scalapack/"}, "scanpy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"scanpy/1.9.8-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "joblib-1.3.2, legacy_api_wrap-1.4, natsort-8.4.0, packaging-23.2, scanpy-1.9.8, session-info-1.0.0, stdlib_list-0.10.0"}}, "description": "Scanpy is a scalable toolkit for analyzing single-cell gene expression data built jointly with anndata. It includes preprocessing, visualization, clustering, trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells.", "homepage": "https://scanpy.readthedocs.io/en/stable/"}, "scCODA": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"scCODA/0.1.9-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "scCODA-0.1.9"}}, "description": "scCODA allows for identification of compositional changes in high-throughput sequencing count data,especially cell compositions from scRNA-seq.", "homepage": "https://github.com/theislab/scCODA"}, "scikit-bio": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"scikit-bio/0.6.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "hdmedians-0.14.2, natsort-8.4.0, scikit-bio-0.6.0"}}, "description": "scikit-bio is an open-source, BSD-licensed Python 3 package providing data structures, algorithmsand educational resources for bioinformatics.", "homepage": "http://scikit-bio.org"}, "scikit-build-core": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"scikit-build-core/0.5.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pyproject-metadata-0.8.0, scikit_build_core-0.5.0"}, "scikit-build-core/0.9.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pyproject-metadata-0.8.0, scikit_build_core-0.9.3"}, "scikit-build-core/0.9.3-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pyproject-metadata-0.8.0, scikit_build_core-0.9.3"}}, "description": "Scikit-build-core is a complete ground-up rewrite of scikit-build on top ofmodern packaging APIs. It provides a bridge between CMake and the Python buildsystem, allowing you to make Python modules with CMake.", "homepage": "https://scikit-build.readthedocs.io/en/latest/"}, "scikit-build": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"scikit-build/0.17.6-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "distro-1.8.0, packaging-23.1, scikit_build-0.17.6"}, "scikit-build/0.17.6-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "distro-1.8.0, packaging-23.1, scikit_build-0.17.6"}}, "description": "Scikit-Build, or skbuild, is an improved build system generatorfor CPython C/C++/Fortran/Cython extensions.", "homepage": "https://scikit-build.readthedocs.io/en/latest"}, "scikit-learn": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"scikit-learn/1.3.1-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "scikit-learn-1.3.1, sklearn-0.0"}, "scikit-learn/1.4.0-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "scikit-learn-1.4.0, sklearn-0.0"}}, "description": "Scikit-learn integrates machine learning algorithms in the tightly-knit scientific Python world,building upon numpy, scipy, and matplotlib. As a machine-learning module,it provides versatile tools for data mining and analysis in any field of science and engineering.It strives to be simple and efficient, accessible to everybody, and reusable in various contexts.", "homepage": "https://scikit-learn.org/stable/index.html"}, "SciPy-bundle": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SciPy-bundle/2023.02-gfbf-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "beniget-0.4.1, Bottleneck-1.3.5, deap-1.3.3, gast-0.5.3, mpmath-1.2.1, numexpr-2.8.4, numpy-1.24.2, pandas-1.5.3, ply-3.11, pythran-0.12.1, scipy-1.10.1"}, "SciPy-bundle/2023.07-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "beniget-0.4.1, Bottleneck-1.3.7, deap-1.4.0, gast-0.5.4, mpmath-1.3.0, numexpr-2.8.4, numpy-1.25.1, pandas-2.0.3, ply-3.11, pythran-0.13.1, scipy-1.11.1, tzdata-2023.3, versioneer-0.29"}, "SciPy-bundle/2023.11-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "beniget-0.4.1, Bottleneck-1.3.7, deap-1.4.1, gast-0.5.4, mpmath-1.3.0, numexpr-2.8.7, numpy-1.26.2, pandas-2.1.3, ply-3.11, pythran-0.14.0, scipy-1.11.4, tzdata-2023.3, versioneer-0.29"}}, "description": "Bundle of Python packages for scientific software", "homepage": "https://python.org/"}, "SciTools-Iris": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SciTools-Iris/3.9.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "antlr4-python3-runtime-4.7.2, cf-units-3.2.0, scitools_iris-3.9.0"}}, "description": "A powerful, format-agnostic, community-driven Python package for analysing andvisualising Earth science data.", "homepage": "https://scitools-iris.readthedocs.io"}, "Score-P": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Score-P/8.4-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Score-P measurement infrastructure is a highly scalable and easy-to-use tool suite for profiling, event tracing, and online analysis of HPC applications.", "homepage": "https://www.score-p.org"}, "SCOTCH": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SCOTCH/7.0.3-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "SCOTCH/7.0.3-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "SCOTCH/7.0.4-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Software package and libraries for sequential and parallel graph partitioning,static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph partitioning.", "homepage": "https://www.labri.fr/perso/pelegrin/scotch/"}, "SDL2": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SDL2/2.26.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "SDL2/2.28.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "SDL2/2.28.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SDL: Simple DirectMedia Layer, a cross-platform multimedia library", "homepage": "https://www.libsdl.org/"}, "Seaborn": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Seaborn/0.13.2-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Seaborn is a Python visualization library based on matplotlib. It provides a high-level interface for drawing attractive statistical graphics.", "homepage": "https://seaborn.pydata.org/"}, "SEPP": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SEPP/4.5.1-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SATe-enabled Phylogenetic Placement - addresses the problem of phylogeneticplacement of short reads into reference alignments and trees.", "homepage": "https://github.com/smirarab/sepp"}, "setuptools-rust": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"setuptools-rust/1.6.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "semantic_version-2.10.0, setuptools-rust-1.6.0, typing_extensions-4.6.3"}, "setuptools-rust/1.8.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "semantic_version-2.10.0, setuptools-rust-1.8.0, typing_extensions-4.8.0"}}, "description": "setuptools-rust is a plugin for setuptools to build Rust Python extensionsimplemented with PyO3 or rust-cpython.", "homepage": "https://github.com/PyO3/setuptools-rust"}, "setuptools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"setuptools/64.0.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "setuptools/80.9.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "packaging-25.0, setuptools-80.9.0"}}, "description": "Easily download, build, install, upgrade, and uninstall Python packages", "homepage": "https://pypi.org/project/setuptools"}, "Shapely": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Shapely/2.0.1-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects.It is based on the widely deployed GEOS (the engine of PostGIS) and JTS (from which GEOS is ported) libraries.", "homepage": "https://github.com/Toblerity/Shapely"}, "Siesta": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Siesta/5.2.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SIESTA is both a method and its computer program implementation, to perform efficient electronicstructure calculations and ab initio molecular dynamics simulations of molecules and solids.", "homepage": "https://siesta-project.org/siesta/About/overview.html"}, "Simple-DFTD3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Simple-DFTD3/1.2.1-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Simple-DFTD3/1.2.1-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Reimplementation of the D3 dispersion correction. The s-dftd3 project aims toprovide a user-friendly and uniform interface to the D3 dispersion model andfor the calculation of DFT-D3 dispersion corrections.", "homepage": "https://dftd3.readthedocs.io"}, "SIONlib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SIONlib/1.7.7-GCCcore-13.2.0-tools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SIONlib is a scalable I/O library for parallel access to task-local files. The library not only supports writing and reading binary data to or from several thousands of processors into a single or a small number of physical files, but also provides global open and close functions to access SIONlib files in parallel. This package provides a stripped-down installation of SIONlib for use with performance tools (e.g., Score-P), with renamed symbols to avoid conflicts when an application using SIONlib itself is linked against a tool requiring a different SIONlib version.", "homepage": "https://www.fz-juelich.de/ias/jsc/EN/Expertise/Support/Software/SIONlib/_node.html"}, "SIP": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SIP/6.8.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SIP is a tool that makes it very easy to create Python bindings for C and C++ libraries.", "homepage": "http://www.riverbankcomputing.com/software/sip/"}, "siscone": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"siscone/3.0.6-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Hadron Seedless Infrared-Safe Cone jet algorithm", "homepage": "https://siscone.hepforge.org/"}, "SLEPc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SLEPc/3.20.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SLEPc (Scalable Library for Eigenvalue Problem Computations) is a software library for the solution of large scale sparse eigenvalue problems on parallel computers. It is an extension of PETSc and can be used for either standard or generalized eigenproblems, with real or complex arithmetic. It can also be used for computing a partial SVD of a large, sparse, rectangular matrix, and to solve quadratic eigenvalue problems.", "homepage": "https://slepc.upv.es"}, "SlurmViewer": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SlurmViewer/1.0.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "asyncssh-2.18.0, plotext-5.2.8, slurm-viewer-1.0.1, textual-0.85.2, textual-plotext-0.2.1"}}, "description": "View the status of a Slurm cluster, including nodes and queue.", "homepage": "https://gitlab.com/lkeb/slurm_viewer"}, "snakemake": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"snakemake/8.4.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "argparse-dataclass-2.0.0, conda-inject-1.3.1, ConfigArgParse-1.7, connection-pool-0.0.3, datrie-0.8.2, dpath-2.1.6, fastjsonschema-2.19.1, humanfriendly-10.0, immutables-0.20, jupyter-core-5.7.1, nbformat-5.9.2, plac-1.4.2, reretry-0.11.8, smart-open-6.4.0, snakemake-8.4.2, snakemake-executor-plugin-cluster-generic-1.0.7, snakemake-executor-plugin-cluster-sync-0.1.3, snakemake-executor-plugin-flux-0.1.0, snakemake-executor-plugin-slurm-0.2.1, snakemake-executor-plugin-slurm-jobstep-0.1.10, snakemake-interface-common-1.15.2, snakemake-interface-executor-plugins-8.2.0, snakemake-interface-storage-plugins-3.0.0, stopit-1.1.2, throttler-1.2.2, toposort-1.10, yte-1.5.4"}, "snakemake/8.28.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "argparse-dataclass-2.0.0, conda-inject-1.3.2, ConfigArgParse-1.7, connection-pool-0.0.3, datrie-0.8.2, dpath-2.2.0, fastjsonschema-2.19.1, humanfriendly-10.0, immutables-0.21, jupyter-core-5.7.2, nbformat-5.10.4, plac-1.4.3, reretry-0.11.8, smart-open-7.1.0, snakemake-8.28.0, snakemake-executor-plugin-cluster-generic-1.0.9, snakemake-executor-plugin-cluster-sync-0.1.4, snakemake-executor-plugin-flux-0.1.1, snakemake-executor-plugin-slurm-0.12.0, snakemake-executor-plugin-slurm-jobstep-0.2.1, snakemake-interface-common-1.17.4, snakemake-interface-executor-plugins-9.3.3, snakemake-interface-report-plugins-1.1.0, snakemake-interface-storage-plugins-3.3.0, stopit-1.1.2, throttler-1.2.2, toposort-1.10, wrapt-1.16.0, yte-1.5.5"}}, "description": "The Snakemake workflow management system is a tool to create reproducible and scalable data analyses.", "homepage": "https://snakemake.readthedocs.io"}, "snappy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"snappy/1.1.9-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "snappy/1.1.10-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "snappy/1.1.10-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Snappy is a compression/decompression library. It does not aimfor maximum compression, or compatibility with any other compression library;instead, it aims for very high speeds and reasonable compression.", "homepage": "https://github.com/google/snappy"}, "SOCI": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SOCI/4.0.3-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SOCI is a database access library for C++ that makes the illusion of embedding SQL queries in the regular C++ code, staying entirely within the Standard C++.", "homepage": "http://soci.sourceforge.net/"}, "Solids4foam": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Solids4foam/2.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A toolbox for performing solid mechanics and fluid-solid interactions in OpenFOAM.", "homepage": "https://www.solids4foam.com/"}, "spglib-python": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"spglib-python/2.0.2-gfbf-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "spglib-python/2.1.0-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pyproject-metadata-0.7.1, spglib-2.1.0"}}, "description": "Spglib for Python. Spglib is a library for finding and handling crystal symmetries written in C.", "homepage": "https://pypi.python.org/pypi/spglib"}, "SQLAlchemy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SQLAlchemy/2.0.25-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "alembic-1.13.1, async-timeout-4.0.3, asyncpg-0.29.0, greenlet-3.0.3, SQLAlchemy-2.0.25"}, "SQLAlchemy/2.0.29-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "alembic-1.13.1, async-timeout-4.0.3, asyncpg-0.29.0, SQLAlchemy-2.0.29"}}, "description": "SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that givesapplication developers the full power and flexibility of SQL. SQLAlchemyprovides a full suite of well known enterprise-level persistence patterns,designed for efficient and high-performing database access, adapted into asimple and Pythonic domain language.", "homepage": "https://www.sqlalchemy.org/"}, "SQLite": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SQLite/3.39.4-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "SQLite/3.42.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "SQLite/3.43.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SQLite: SQL Database Engine in a C Library", "homepage": "https://www.sqlite.org/"}, "STAR": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"STAR/2.7.11b-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "STAR aligns RNA-seq reads to a reference genome using uncompressed suffix arrays.", "homepage": "https://github.com/alexdobin/STAR"}, "statsmodels": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"statsmodels/0.14.1-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "patsy-0.5.6, statsmodels-0.14.1"}, "statsmodels/0.14.1-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "patsy-0.5.6, statsmodels-0.14.1"}}, "description": "Statsmodels is a Python module that allows users to explore data, estimate statistical models,and perform statistical tests.", "homepage": "https://www.statsmodels.org/"}, "Subread": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Subread/2.1.1-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "High performance read alignment, quantification and mutation discovery", "homepage": "https://subread.sourceforge.net/"}, "SuiteSparse": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SuiteSparse/7.1.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "SuiteSparse/7.7.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SuiteSparse is a collection of libraries to manipulate sparse matrices.", "homepage": "https://faculty.cse.tamu.edu/davis/suitesparse.html"}, "SUNDIALS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SUNDIALS/6.6.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SUNDIALS: SUite of Nonlinear and DIfferential/ALgebraic Equation Solvers", "homepage": "https://computing.llnl.gov/projects/sundials"}, "SuperLU_DIST": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SuperLU_DIST/8.1.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "SuperLU_DIST/8.2.1-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations on high performance machines.", "homepage": "https://crd-legacy.lbl.gov/~xiaoye/SuperLU/"}, "SWIG": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"SWIG/4.1.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "SWIG/4.1.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages.", "homepage": "http://www.swig.org/"}, "sympy": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"sympy/1.12-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "sympy/1.12-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python and does not require any external libraries.", "homepage": "https://sympy.org/"}, "Szip": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Szip/2.1.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Szip/2.1.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Szip/2.1.1-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Szip compression software, providing lossless compression of scientific data", "homepage": "https://www.hdfgroup.org/doc_resource/SZIP/"}, "tbb": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"tbb/2021.10.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "tbb/2021.11.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "tbb/2021.13.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Intel(R) Threading Building Blocks (Intel(R) TBB) lets you easily write parallel C++ programs that take full advantage of multicore performance, that are portable, composable and have future-proof scalability.", "homepage": "https://github.com/oneapi-src/oneTBB"}, "tblite": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"tblite/0.4.0-gfbf-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "tblite-0.4.0"}}, "description": "Light-weight tight-binding framework", "homepage": "https://github.com/tblite/tblite"}, "Tcl": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Tcl/8.6.12-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Tcl/8.6.13-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Tcl/8.6.13-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more.", "homepage": "https://www.tcl.tk/"}, "tcsh": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"tcsh/6.24.07-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C shell (csh). It is a command language interpreter usable both as an interactive login shell and a shell script command processor. It includes a command-line editor, programmable word completion, spelling correction, a history mechanism, job control and a C-like syntax.", "homepage": "https://www.tcsh.org"}, "tensorboard": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"tensorboard/2.15.1-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "absl-py-2.1.0, cachetools-5.3.2, google-auth-2.26.2, google-auth-oauthlib-1.2.0, gviz-api-1.10.0, Markdown-3.5.2, oauthlib-3.2.2, pyasn1_modules-0.3.0, requests-oauthlib-1.3.1, rsa-4.9, tensorboard-2.15.1, tensorboard-plugin-profile-2.15.1, tensorboard_data_server-0.7.2, Werkzeug-3.0.1"}}, "description": "TensorBoard is a suite of web applications for inspecting andunderstanding your TensorFlow runs and graphs.", "homepage": "https://github.com/tensorflow/tensorboard"}, "tensorflow-probability": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"tensorflow-probability/0.20.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "cloudpickle-3.0.0, tensorflow-probability-0.20.0"}}, "description": "TensorFlow Probability (TFP) is a library for probabilistic reasoning and statistical analysis.", "homepage": "https://www.tensorflow.org/probability"}, "TensorFlow": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"TensorFlow/2.13.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "absl-py-1.4.0, astor-0.8.1, astunparse-1.6.3, cachetools-5.3.1, google-auth-2.22.0, google-auth-oauthlib-1.0.0, google-pasta-0.2.0, grpcio-1.57.0, gviz-api-1.10.0, keras-2.13.1, Markdown-3.4.4, oauthlib-3.2.2, opt-einsum-3.3.0, portpicker-1.5.2, pyasn1-modules-0.3.0, requests-oauthlib-1.3.1, rsa-4.9, tblib-2.0.0, tensorboard-2.13.0, tensorboard-data-server-0.7.1, tensorboard-plugin-profile-2.13.1, tensorboard-plugin-wit-1.8.1, TensorFlow-2.13.0, tensorflow-estimator-2.13.0, termcolor-2.3.0, Werkzeug-2.3.7, wrapt-1.15.0"}}, "description": "An open-source software library for Machine Intelligence", "homepage": "https://www.tensorflow.org/"}, "test-drive": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"test-drive/0.5.0-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "This project offers a lightweight, procedural unit testing framework based on nothing but standard Fortran.", "homepage": "https://github.com/fortran-lang/test-drive"}, "time": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"time/1.9-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The `time' command runs another program, then displays information about the resources used by that program, collected by the system while the program was running.", "homepage": "https://www.gnu.org/software/time/"}, "Tk": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Tk/8.6.12-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Tk/8.6.13-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Tk/8.6.13-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages.", "homepage": "https://www.tcl.tk/"}, "Tkinter": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Tkinter/3.10.8-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Tkinter/3.11.3-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Tkinter/3.11.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Tkinter module, built with the Python buildsystem", "homepage": "https://python.org/"}, "tmux": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"tmux/3.3a-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "tmux is a terminal multiplexer: it enables a number ofterminals to be created, accessed, and controlled from a single screen. tmuxmay be detached from a screen and continue running in the background, thenlater reattached.", "homepage": "https://github.com/tmux/tmux/"}, "toil-cwl": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"toil-cwl/8.2.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "addict-2.4.0, bleach-6.2.0, blessed-1.21.0, boltons-25.0.0, conda-package-streaming-0.11.0, configargparse-1.7.1, docker-7.1.0, enlighten-1.14.1, galaxy-tool-util-24.2.3, galaxy-util-24.2.3, prefixed-0.9.0, prompt_toolkit-3.0.51, PyPubSub-4.0.3, repoze.lru-0.7, Routes-2.5.1, toil-8.2.0, zipstream-new-1.1.8, zstandard-0.23.0"}}, "description": "A scalable, efficient, cross-platform (Linux/macOS) and easy-to-use workflow engine in pure Python.This installation contains toil, with the cwl extras.", "homepage": "https://github.com/DataBiosphere/toil"}, "Tombo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Tombo/1.5.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "mappy-2.28, ont-tombo-1.5.1, pyfaidx-0.5.8"}}, "description": "Tombo is a suite of tools primarily for the identification of modified nucleotides from raw nanopore sequencing data.", "homepage": "https://github.com/nanoporetech/tombo"}, "TOML-Fortran": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"TOML-Fortran/0.4.2-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "TOML-Fortran/0.4.2-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "TOML parser for Fortran projects", "homepage": "https://github.com/toml-f/toml-f"}, "tornado": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"tornado/6.3.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Tornado is a Python web framework and asynchronous networking library.", "homepage": "https://github.com/tornadoweb/tornado"}, "tqdm": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"tqdm/4.64.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "tqdm/4.66.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "tqdm/4.66.2-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A fast, extensible progress bar for Python and CLI", "homepage": "https://github.com/tqdm/tqdm"}, "Transrate": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Transrate/1.0.3-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Transrate is software for de-novo transcriptome assembly quality analysis. It examines your assembly in detail and compares it to experimental evidence such as the sequencing reads, reporting quality scores for contigs and assemblies. This allows you to choose between assemblers and parameters, filter out the bad contigs from an assembly, and help decide when to stop trying to improve the assembly.", "homepage": "https://hibberdlab.com/transrate"}, "Trimmomatic": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Trimmomatic/0.39-Java-11": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Trimmomatic performs a variety of useful trimming tasks for illumina paired-end and single ended data.The selection of trimming steps and their associated parameters are supplied on the command line.", "homepage": "http://www.usadellab.org/cms/?page=trimmomatic"}, "typing-extensions": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"typing-extensions/4.9.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "typing-extensions/4.10.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Typing Extensions - Backported and Experimental Type Hints for Python", "homepage": "https://github.com/python/typing_extensions"}, "UCC": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"UCC/1.1.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "UCC/1.2.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "UCC/1.2.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "UCC (Unified Collective Communication) is a collectivecommunication operations API and library that is flexible, complete, and feature-rich for current and emerging programming models and runtimes.", "homepage": "https://www.openucx.org/"}, "UCX": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"UCX/1.13.1-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "UCX/1.14.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "UCX/1.15.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Unified Communication XAn open-source production grade communication framework for data centricand high-performance applications", "homepage": "https://www.openucx.org/"}, "UDUNITS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"UDUNITS/2.2.28-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "UDUNITS/2.2.28-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "UDUNITS/2.2.28-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "UDUNITS supports conversion of unit specifications between formatted and binary forms, arithmetic manipulation of units, and conversion of values between compatible scales of measurement.", "homepage": "https://www.unidata.ucar.edu/software/udunits/"}, "umap-learn": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"umap-learn/0.5.5-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pynndescent-0.5.11, umap-learn-0.5.5"}}, "description": "Uniform Manifold Approximation and Projection (UMAP) is a dimension reduction techniquethat can be used for visualisation similarly to t-SNE, but also for general non-lineardimension reduction.", "homepage": "https://umap-learn.readthedocs.io/en/latest/"}, "uncertainties": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"uncertainties/3.1.7-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives", "homepage": "http://uncertainties-python-package.readthedocs.io"}, "unifdef": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"unifdef/2.12-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "unifdef - selectively remove C preprocessor conditionalsThe unifdef utility selectively processes conditional C preprocessorand the additional text that they delimit, while otherwise leaving thefile alone.", "homepage": "https://github.com/fanf2/unifdef"}, "unixODBC": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"unixODBC/2.3.12-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "unixODBC provides a uniform interface betweenapplication and database driver", "homepage": "https://www.unixodbc.org"}, "UnZip": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"UnZip/6.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "UnZip/6.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "UnZip/6.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "UnZip is an extraction utility for archives compressedin .zip format (also called \"zipfiles\"). Although highly compatible bothwith PKWARE's PKZIP and PKUNZIP utilities for MS-DOS and with Info-ZIP'sown Zip program, our primary objectives have been portability andnon-MSDOS functionality.", "homepage": "http://www.info-zip.org/UnZip.html"}, "utf8proc": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"utf8proc/2.8.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "utf8proc/2.8.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "utf8proc/2.9.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "utf8proc is a small, clean C library that provides Unicode normalization, case-folding, and other operations for data in the UTF-8 encoding.", "homepage": "https://github.com/JuliaStrings/utf8proc"}, "Valgrind": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Valgrind/3.21.0-gompi-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Valgrind/3.21.0-gompi-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Valgrind/3.23.0-gompi-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Valgrind: Debugging and profiling tools", "homepage": "https://valgrind.org"}, "VCFtools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"VCFtools/0.1.16-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The aim of VCFtools is to provide easily accessible methods for working with complex genetic variation data in the form of VCF files.", "homepage": "https://vcftools.github.io"}, "VeloxChem": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"VeloxChem/1.0-rc4-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "geometric-1.1, VeloxChem-1.0-rc4"}}, "description": "VeloxChem [RLV+20] is a Python-based open source quantum chemistry software forcontemporary and future hardware architectures. It features interactive program access throughJupyter notebooks as well as massively parallel calculations in high-performancecomputing (HPC) environments.", "homepage": "https://veloxchem.org/docs/intro.html"}, "Vim": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Vim/9.1.0004-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set.", "homepage": "http://www.vim.org"}, "virtualenv": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"virtualenv/20.23.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "distlib-0.3.6, filelock-3.12.2, platformdirs-3.8.0, virtualenv-20.23.1"}, "virtualenv/20.24.6-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "distlib-0.3.7, filelock-3.13.0, platformdirs-3.11.0, virtualenv-20.24.6"}}, "description": "A tool for creating isolated virtual python environments.", "homepage": "https://github.com/pypa/virtualenv"}, "Voro++": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Voro++/0.4.6-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Voro++/0.4.6-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Voro++ is a software library for carrying out three-dimensional computations of the Voronoitessellation. A distinguishing feature of the Voro++ library is that it carries out cell-based calculations,computing the Voronoi cell for each particle individually. It is particularly well-suited for applications thatrely on cell-based statistics, where features of Voronoi cells (eg. volume, centroid, number of faces) can be usedto analyze a system of particles.", "homepage": "http://math.lbl.gov/voro++/"}, "VSEARCH": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"VSEARCH/2.30.0-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "VSEARCH supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, rereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering, conversion and merging of paired-end reads.", "homepage": "https://github.com/torognes/vsearch"}, "VTK": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"VTK/9.3.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "VTK/9.3.0-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Visualization Toolkit (VTK) is an open-source, freely available software system for 3D computer graphics, image processing and visualization. VTK consists of a C++ class library and several interpreted interface layers including Tcl/Tk, Java, and Python. VTK supports a wide variety of visualization algorithms including: scalar, vector, tensor, texture, and volumetric methods; and advanced modeling techniques such as: implicit modeling, polygon reduction, mesh smoothing, cutting, contouring, and Delaunay triangulation.", "homepage": "https://www.vtk.org"}, "waLBerla": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"waLBerla/6.1-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "waLBerla/6.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Widely applicable Lattics-Boltzmann from Erlangen is a block-structured high-performance framework for multiphysics simulations", "homepage": "https://walberla.net/index.html"}, "Wayland": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Wayland/1.22.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Wayland/1.22.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Wayland is a project to define a protocol for a compositor to talk to its clients as well as a library implementation of the protocol. The compositor can be a standalone display server running on Linux kernel modesetting and evdev input devices, an X application, or a wayland client itself. The clients can be traditional applications, X servers (rootless or fullscreen) or other display servers.", "homepage": "https://wayland.freedesktop.org/"}, "Waylandpp": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Waylandpp/1.0.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Wayland is an object oriented display protocol, whichfeatures request and events. Requests can be seen as method calls oncertain objects, whereas events can be seen as signals of an object.This makes the Wayland protocol a perfect candidate for a C++ binding.The goal of this library is to create such a C++ binding for Waylandusing the most modern C++ technology currently available, providingan easy to use C++ API to Wayland.", "homepage": "https://github.com/NilsBrause/waylandpp"}, "WCSLIB": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"WCSLIB/7.11-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The FITS \"World Coordinate System\" (WCS) standard defines keywordsand usage that provide for the description of astronomical coordinate systems in aFITS image header.", "homepage": "https://www.atnf.csiro.au/people/mcalabre/WCS/"}, "WebKitGTK+": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"WebKitGTK+/2.41.4-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "WebKitGTK+ is a full-featured port of the WebKitrendering engine, suitable for projects requiring any kind of webintegration, from hybrid HTML/CSS applications to full-fledged webbrowsers. It offers WebKit's full functionality and is useful in a widerange of systems from desktop computers to embedded systems like phones,tablets, and televisions.", "homepage": "https://webkitgtk.org/"}, "websockify": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"websockify/0.13.0-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "jwcrypto-1.5.6, websockify-0.13.0"}}, "description": "WebSockets support for any application/server", "homepage": "https://github.com/novnc/websockify"}, "wget": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"wget/1.21.4-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "wget/1.24.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc.", "homepage": "https://www.gnu.org/software/wget"}, "WhatsHap": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"WhatsHap/2.1-foss-2022b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "pulp-2.8.0, WhatsHap-2.1, xopen-1.7.0"}, "WhatsHap/2.2-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "PuLP-2.8.0, whatshap-2.2, xopen-1.7.0"}}, "description": "WhatsHap is a software for phasing genomic variants using DNAsequencing reads, also called read-based phasing or haplotype assembly. It isespecially suitable for long reads, but works also well with short reads.", "homepage": "https://whatshap.readthedocs.io"}, "wpebackend-fdo": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"wpebackend-fdo/1.15.90-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "WPE WebKit allows embedders to create simple and performantsystems based on Web platform technologies. It is a WebKit port designed withflexibility and hardware acceleration in mind, leveraging common 3D graphicsAPIs for best performance.", "homepage": "https://wpewebkit.org/"}, "wradlib": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"wradlib/2.0.3-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "cmweather-0.3.2, deprecation-2.1.0, lat_lon_parser-1.3.0, wradlib-2.0.3, xarray-datatree-0.0.13, xmltodict-0.13.0, xradar-0.5.1"}}, "description": "The wradlib project has been initiated in order to facilitate the use of weatherradar data as well as to provide a common platform for research on newalgorithms.", "homepage": "https://docs.wradlib.org/"}, "wrapt": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"wrapt/1.15.0-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "wrapt-1.15.0"}, "wrapt/1.16.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The aim of the wrapt module is to provide a transparent objectproxy for Python, which can be used as the basis for the construction offunction wrappers and decorator functions.", "homepage": "https://pypi.org/project/wrapt/"}, "WRF": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"WRF/4.4.1-foss-2022b-dmpar": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The Weather Research and Forecasting (WRF) Model is a next-generation mesoscale numerical weather prediction system designed to serve both operational forecasting and atmospheric research needs.", "homepage": "https://www.wrf-model.org"}, "WSClean": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"WSClean/3.4-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "WSClean/3.5-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "WSClean (w-stacking clean) is a fast generic widefield imager.It implements several gridding algorithms and offers fully-automated multi-scalemulti-frequency deconvolution.", "homepage": "https://wsclean.readthedocs.io/"}, "wxPython": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"wxPython/4.2.1-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Wraps the wxWidgets C++ toolkit and provides access to the user interface portions of the wxWidgetsAPI, enabling Python applications to have a native GUI on Windows, Macs or Unix systems, with a native look and feeland requiring very little (if any) platform specific code.", "homepage": "https://www.wxpython.org/"}, "wxWidgets": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"wxWidgets/3.2.2.1-GCC-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "wxWidgets/3.2.2.1-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "wxWidgets/3.2.6-GCC-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "wxWidgets is a C++ library that lets developers createapplications for Windows, Mac OS X, Linux and other platforms with asingle code base. It has popular language bindings for Python, Perl,Ruby and many other languages, and unlike other cross-platform toolkits,wxWidgets gives applications a truly native look and feel because ituses the platform's native API rather than emulating the GUI.", "homepage": "https://www.wxwidgets.org"}, "X11": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"X11/20221110-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "X11/20230603-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "X11/20231019-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The X Window System (X11) is a windowing system for bitmap displays", "homepage": "https://www.x.org"}, "x264": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"x264/20230226-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "x264/20230226-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "x264/20231019-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "x264 is a free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format, and is released under the terms of the GNU GPL.", "homepage": "https://www.videolan.org/developers/x264.html"}, "x265": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"x265/3.5-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "x265/3.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "x265/3.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "x265 is a free software library and application for encoding video streams into the H.265 AVC compression format, and is released under the terms of the GNU GPL.", "homepage": "https://x265.org/"}, "xarray": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"xarray/2023.9.0-gfbf-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "xarray-2023.9.0"}}, "description": "xarray (formerly xray) is an open source project and Python package that aims to bring the labeled data power of pandas to the physical sciences, by providing N-dimensional variants of the core pandas data structures.", "homepage": "https://github.com/pydata/xarray"}, "Xerces-C++": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Xerces-C++/3.2.4-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Xerces-C++/3.2.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Xerces-C++/3.2.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Xerces-C++ is a validating XML parser written in a portablesubset of C++. Xerces-C++ makes it easy to give your application the ability toread and write XML data. A shared library is provided for parsing, generating,manipulating, and validating XML documents using the DOM, SAX, and SAX2APIs.", "homepage": "https://xerces.apache.org/xerces-c/"}, "xESMF": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"xESMF/0.8.6-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "cf_xarray-0.9.3, cftime-1.6.2, sparse-0.14.0, xesmf-0.8.6"}}, "description": "xESMF: Universal Regridder for Geospatial Data", "homepage": "https://xesmf.readthedocs.io"}, "XML-LibXML": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"XML-LibXML/2.0208-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Alien::Base-2.80, Alien::Build::Plugin::Download::GitLab-0.01, Alien::Libxml2-0.19, File::chdir-0.1011, XML::LibXML-2.0208"}, "XML-LibXML/2.0209-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "Alien::Base-2.80, Alien::Build::Plugin::Download::GitLab-0.01, Alien::Libxml2-0.19, File::chdir-0.1011, XML::LibXML-2.0209"}}, "description": "Perl binding for libxml2", "homepage": "https://metacpan.org/pod/distribution/XML-LibXML/LibXML.pod"}, "xmlf90": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"xmlf90/1.6.3-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "A fast XML parser and generator in Fortran", "homepage": "https://gitlab.com/siesta-project/libraries/xmlf90"}, "xorg-macros": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"xorg-macros/1.19.3-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "xorg-macros/1.20.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "xorg-macros/1.20.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "X.org macros utilities.", "homepage": "https://gitlab.freedesktop.org/xorg/util/macros"}, "xprop": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"xprop/1.2.6-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "The xprop utility is for displaying window and font properties in an X server. One window or font is selected using the command line arguments or possibly in the case of a window, by clicking on the desired window. A list of properties is then given, possibly with formatting information.", "homepage": "https://www.x.org/wiki/"}, "Xvfb": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Xvfb/21.1.6-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Xvfb/21.1.8-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Xvfb/21.1.9-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Xvfb is an X server that can run on machines with no display hardware and no physical input devices. It emulates a dumb framebuffer using virtual memory.", "homepage": "https://www.x.org/releases/X11R7.6/doc/man/man1/Xvfb.1.xhtml"}, "xxd": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"xxd/9.0.2112-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "xxd/9.1.0307-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "xxd is part of the VIM package and this will only install xxd, not vim!xxd converts to/from hexdumps of binary files.", "homepage": "https://www.vim.org"}, "xxHash": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"xxHash/0.8.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "xxHash is an extremely fast non-cryptographic hash algorithm, working at RAM speed limit.", "homepage": "https://cyan4973.github.io/xxHash"}, "yacrd": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"yacrd/1.0.0-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Yet Another Chimeric Read Detector.", "homepage": "https://github.com/natir/yacrd"}, "yaml-cpp": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"yaml-cpp/0.8.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec", "homepage": "https://github.com/jbeder/yaml-cpp"}, "yell": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"yell/2.2.2-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Yell - Your Extensible Logging Library is a comprehensive logging replacement for Ruby.", "homepage": "https://github.com/rudionrails/yell"}, "yelp-tools": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"yelp-tools/42.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "yelp-tools is a collection of scripts and build utilities to help create,manage, and publish documentation for Yelp and the web. Most of the heavylifting is done by packages like yelp-xsl and itstool. This package justwraps things up in a developer-friendly way.", "homepage": "https://gitlab.gnome.org/GNOME/yelp-tools"}, "yelp-xsl": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"yelp-xsl/42.1-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "yelp-xsl is a collection of programs and data files to help you build, maintain, and distribute documentation. It provides XSLT stylesheets that can be built upon for help viewers and publishing systems. These stylesheets output JavaScript and CSS content, and reference images provided by yelp-xsl. This package also redistributes copies of the jQuery and jQuery.Syntax JavaScript libraries.", "homepage": "https://gitlab.gnome.org/GNOME/yelp-xslg"}, "YODA": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"YODA/1.9.9-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Yet more Objects for (High Energy Physics) Data Analysis", "homepage": "https://yoda.hepforge.org/"}, "Z3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Z3/4.12.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Z3/4.12.2-GCCcore-12.3.0-Python-3.11.3": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "z3-solver-4.12.2.0"}, "Z3/4.12.2-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "extensions": "z3-solver-4.12.2.0"}}, "description": "Z3 is a theorem prover from Microsoft Research with support for bitvectors,booleans, arrays, floating point numbers, strings, and other data types. Thismodule includes z3-solver, the Python interface of Z3.", "homepage": "https://github.com/Z3Prover/z3"}, "ZeroMQ": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ZeroMQ/4.3.4-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ZeroMQ/4.3.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ZeroMQ looks like an embeddable networking library but acts like a concurrency framework. It gives you sockets that carry atomic messages across various transports like in-process, inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fanout, pub-sub, task distribution, and request-reply. It's fast enough to be the fabric for clustered products. Its asynchronous I/O model gives you scalable multicore applications, built as asynchronous message-processing tasks. It has a score of language APIs and runs on most operating systems.", "homepage": "https://www.zeromq.org/"}, "Zip": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Zip/3.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Zip/3.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Zip is a compression and file packaging/archive utility.Although highly compatible both with PKWARE's PKZIP and PKUNZIPutilities for MS-DOS and with Info-ZIP's own UnZip, our primary objectiveshave been portability and other-than-MSDOS functionality", "homepage": "http://www.info-zip.org/Zip.html"}, "Zoltan": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Zoltan/3.901-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Zoltan Dynamic Load Balancing and Graph Algorithm Toolkit", "homepage": "https://sandialabs.github.io/Zoltan/"}, "zstd": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"zstd/1.5.2-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "zstd/1.5.5-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "zstd/1.5.5-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/a64fx", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_n1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/neoverse_v1", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/nvidia/grace", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Zstandard is a real-time compression algorithm, providing high compression ratios. It offers a very wide range of compression/speed trade-off, while being backed by a very fast decoder. It also offers a special mode for small data, called dictionary compression, and can create dictionaries from any sample set.", "homepage": "https://facebook.github.io/zstd"}, "libxsmm": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"libxsmm/1.17-GCC-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "LIBXSMM is a library for small dense and small sparse matrix-matrix multiplicationstargeting Intel Architecture (x86).", "homepage": "https://github.com/hfp/libxsmm"}, "ScaFaCoS": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"ScaFaCoS/1.0.4-foss-2023a": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "ScaFaCoS/1.0.4-foss-2023b": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "ScaFaCoS is a library of scalable fast coulomb solvers.", "homepage": "http://www.scafacos.de/"}, "Yasm": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"], "versions": {"Yasm/1.3.0-GCCcore-12.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Yasm/1.3.0-GCCcore-12.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}, "Yasm/1.3.0-GCCcore-13.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen4", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/cascadelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/icelake", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/sapphirerapids", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/skylake_avx512"]}}, "description": "Yasm: Complete rewrite of the NASM assembler with BSD license", "homepage": "https://www.tortall.net/projects/yasm/"}}, "time_generated": "Wed, 11 Feb 2026 at 13:39:36 UTC"} \ No newline at end of file diff --git a/docs/available_software/detail/AITW-microstructures.md b/docs/available_software/detail/AITW-microstructures.md new file mode 100644 index 0000000000..e028eb04c8 --- /dev/null +++ b/docs/available_software/detail/AITW-microstructures.md @@ -0,0 +1,87 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'AI-TranspWood - Generate realistic microstructure models of wood (birch, + spruce, etc.) from a set of + + given parameters. This is a port of the original MATLAB code to Python. + + ' + license: Not confirmed + name: AITW-microstructures + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.0.0'']' + url: https://www.ai-transpwood-project.eu/ +--- +# AITW-microstructures + + +AI-TranspWood - Generate realistic microstructure models of wood (birch, spruce, etc.) from a set of +given parameters. This is a port of the original MATLAB code to Python. + + +homepage: [https://www.ai-transpwood-project.eu/](https://www.ai-transpwood-project.eu/) + +## Available installations + + +|AITW-microstructures version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`AITW-microstructures/1.0.0-foss-2023a`| + +## Extensions + +Overview of extensions included in AITW-microstructures installations + + +### AITW-microstructures + + +|`AITW-microstructures` version|AITW-microstructures modules that include it| +| --- | --- | +|1.0.0|`AITW-microstructures/1.0.0-foss-2023a`| + +### nptyping + + +|`nptyping` version|AITW-microstructures modules that include it| +| --- | --- | +|2.5.0|`AITW-microstructures/1.0.0-foss-2023a`| + +### pynrrd + + +|`pynrrd` version|AITW-microstructures modules that include it| +| --- | --- | +|1.0.0|`AITW-microstructures/1.0.0-foss-2023a`| + +### textual + + +|`textual` version|AITW-microstructures modules that include it| +| --- | --- | +|0.61.0|`AITW-microstructures/1.0.0-foss-2023a`| + +### trogon + + +|`trogon` version|AITW-microstructures modules that include it| +| --- | --- | +|0.6.0|`AITW-microstructures/1.0.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/AITW-stiffness.md b/docs/available_software/detail/AITW-stiffness.md new file mode 100644 index 0000000000..a972760fcb --- /dev/null +++ b/docs/available_software/detail/AITW-stiffness.md @@ -0,0 +1,59 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'AI-TranspWood - Neural network surrogate model for computing macroscopic + stiffness parameters of + + wood fibers from given microscopic parameters. + + ' + license: Not confirmed + name: AITW-stiffness + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.0.0'']' + url: https://www.ai-transpwood-project.eu/ +--- +# AITW-stiffness + + +AI-TranspWood - Neural network surrogate model for computing macroscopic stiffness parameters of +wood fibers from given microscopic parameters. + + +homepage: [https://www.ai-transpwood-project.eu/](https://www.ai-transpwood-project.eu/) + +## Available installations + + +|AITW-stiffness version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`AITW-stiffness/1.0.0-foss-2023a`| + +## Extensions + +Overview of extensions included in AITW-stiffness installations + + +### AITW-stiffness + + +|`AITW-stiffness` version|AITW-stiffness modules that include it| +| --- | --- | +|1.0.0|`AITW-stiffness/1.0.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/AITW-viscosity.md b/docs/available_software/detail/AITW-viscosity.md new file mode 100644 index 0000000000..889780bf6c --- /dev/null +++ b/docs/available_software/detail/AITW-viscosity.md @@ -0,0 +1,74 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'AI-TranspWood - AiiDA workchain to compute the shear viscosity of + molecular liquids, + + starting from a SMILES string of a molecule and using GROMACS to perform the molecular + dynamics simulations. + + ' + license: Not confirmed + name: AITW-viscosity + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.0.0'']' + url: https://www.ai-transpwood-project.eu/ +--- +# AITW-viscosity + + +AI-TranspWood - AiiDA workchain to compute the shear viscosity of molecular liquids, +starting from a SMILES string of a molecule and using GROMACS to perform the molecular dynamics simulations. + + +homepage: [https://www.ai-transpwood-project.eu/](https://www.ai-transpwood-project.eu/) + +## Available installations + + +|AITW-viscosity version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`AITW-viscosity/1.0.0-foss-2023a`| + +## Extensions + +Overview of extensions included in AITW-viscosity installations + + +### AITW-viscosity + + +|`AITW-viscosity` version|AITW-viscosity modules that include it| +| --- | --- | +|1.0.0|`AITW-viscosity/1.0.0-foss-2023a`| + +### textual + + +|`textual` version|AITW-viscosity modules that include it| +| --- | --- | +|0.61.0|`AITW-viscosity/1.0.0-foss-2023a`| + +### trogon + + +|`trogon` version|AITW-viscosity modules that include it| +| --- | --- | +|0.6.0|`AITW-viscosity/1.0.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ALL.md b/docs/available_software/detail/ALL.md index 108d270cfc..c0c1c73692 100644 --- a/docs/available_software/detail/ALL.md +++ b/docs/available_software/detail/ALL.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication description: "A Load Balancing Library (ALL) aims to provide an easy way to include\ - \ dynamicdomain-based load balancing into particle based simulation codes. The\ - \ libraryis developed in the Simulation Laboratory Molecular Systems of the J\xFC\ - lichSupercomputing Centre at Forschungszentrum J\xFClich." + \ dynamic\ndomain-based load balancing into particle based simulation codes. The\ + \ library\nis developed in the Simulation Laboratory Molecular Systems of the\ + \ J\xFClich\nSupercomputing Centre at Forschungszentrum J\xFClich." license: Not confirmed name: ALL offers: @@ -27,30 +25,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ALL/0.9.2-foss-2023a'']' + softwareVersion: '[''0.9.2'']' url: https://gitlab.jsc.fz-juelich.de/SLMS/loadbalancing --- +# ALL -ALL -=== +A Load Balancing Library (ALL) aims to provide an easy way to include dynamic +domain-based load balancing into particle based simulation codes. The library +is developed in the Simulation Laboratory Molecular Systems of the Jülich +Supercomputing Centre at Forschungszentrum Jülich. -A Load Balancing Library (ALL) aims to provide an easy way to include dynamicdomain-based load balancing into particle based simulation codes. The libraryis developed in the Simulation Laboratory Molecular Systems of the JülichSupercomputing Centre at Forschungszentrum Jülich. +homepage: [https://gitlab.jsc.fz-juelich.de/SLMS/loadbalancing](https://gitlab.jsc.fz-juelich.de/SLMS/loadbalancing) -https://gitlab.jsc.fz-juelich.de/SLMS/loadbalancing -# Available modules +## Available installations -The overview below shows which ALL installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ALL, load one of these modules using a `module load` command like: - -```shell -module load ALL/0.9.2-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ALL/0.9.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ALL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ALL/0.9.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ANTLR.md b/docs/available_software/detail/ANTLR.md index 94b4d15ceb..29faa3442e 100644 --- a/docs/available_software/detail/ANTLR.md +++ b/docs/available_software/detail/ANTLR.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a - language tool that provides a framework for constructing recognizers, compilers, - and translators from grammatical descriptions containing Java, C#, C++, or Python - actions. + description: "ANTLR, ANother Tool for Language Recognition, (formerly PCCTS)\n is\ + \ a language tool that provides a framework for constructing recognizers,\n compilers,\ + \ and translators from grammatical descriptions containing\n Java, C#, C++, or\ + \ Python actions." license: Not confirmed name: ANTLR offers: @@ -27,30 +25,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ANTLR/2.7.7-GCCcore-12.3.0-Java-11'']' + softwareVersion: '[''2.7.7'']' url: https://www.antlr2.org/ --- +# ANTLR -ANTLR -===== +ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) + is a language tool that provides a framework for constructing recognizers, + compilers, and translators from grammatical descriptions containing + Java, C#, C++, or Python actions. -ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a language tool that provides a framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions. +homepage: [https://www.antlr2.org/](https://www.antlr2.org/) -https://www.antlr2.org/ -# Available modules +## Available installations -The overview below shows which ANTLR installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ANTLR, load one of these modules using a `module load` command like: - -```shell -module load ANTLR/2.7.7-GCCcore-12.3.0-Java-11 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ANTLR/2.7.7-GCCcore-12.3.0-Java-11|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ANTLR version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.7.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ANTLR/2.7.7-GCCcore-12.3.0-Java-11`| \ No newline at end of file diff --git a/docs/available_software/detail/AOCL-BLAS.md b/docs/available_software/detail/AOCL-BLAS.md new file mode 100644 index 0000000000..e532ba5430 --- /dev/null +++ b/docs/available_software/detail/AOCL-BLAS.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "AOCL-BLAS is AMD's optimized version of\n BLAS targeted\ + \ for AMD EPYC and Ryzen CPUs." + license: Not confirmed + name: AOCL-BLAS + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''5.1'', ''5.0'']' + url: https://github.com/amd/blis +--- +# AOCL-BLAS + + +AOCL-BLAS is AMD's optimized version of + BLAS targeted for AMD EPYC and Ryzen CPUs. + +homepage: [https://github.com/amd/blis](https://github.com/amd/blis) + +## Available installations + + +|AOCL-BLAS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.1|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`AOCL-BLAS/5.1-GCC-14.3.0`| +|5.1|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`AOCL-BLAS/5.1-llvm-compilers-20.1.8`| +|5.0|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`AOCL-BLAS/5.0-GCC-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/AOFlagger.md b/docs/available_software/detail/AOFlagger.md index d07c9be8e0..31cbe51b82 100644 --- a/docs/available_software/detail/AOFlagger.md +++ b/docs/available_software/detail/AOFlagger.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The AOFlagger is a tool that can find and remove radio-frequency interference - (RFI)in radio astronomical observations. It can make use of Lua scripts to make - flagging strategies flexible,and the tools are applicable to a wide set of telescopes. + description: 'The AOFlagger is a tool that can find and remove radio-frequency interference + (RFI) + + in radio astronomical observations. It can make use of Lua scripts to make flagging + strategies flexible, + + and the tools are applicable to a wide set of telescopes.' license: Not confirmed name: AOFlagger offers: @@ -26,30 +28,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''AOFlagger/3.4.0-foss-2023b'']' + softwareVersion: '[''3.4.0'']' url: https://aoflagger.readthedocs.io/ --- - -AOFlagger -========= - - -The AOFlagger is a tool that can find and remove radio-frequency interference (RFI)in radio astronomical observations. It can make use of Lua scripts to make flagging strategies flexible,and the tools are applicable to a wide set of telescopes. - -https://aoflagger.readthedocs.io/ -# Available modules +# AOFlagger -The overview below shows which AOFlagger installations are available per target architecture in EESSI, ordered based on software version (new to old). +The AOFlagger is a tool that can find and remove radio-frequency interference (RFI) +in radio astronomical observations. It can make use of Lua scripts to make flagging strategies flexible, +and the tools are applicable to a wide set of telescopes. -To start using AOFlagger, load one of these modules using a `module load` command like: +homepage: [https://aoflagger.readthedocs.io/](https://aoflagger.readthedocs.io/) -```shell -module load AOFlagger/3.4.0-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|AOFlagger/3.4.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|AOFlagger version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`AOFlagger/3.4.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/ASE.md b/docs/available_software/detail/ASE.md index 69d41a6618..221905d276 100644 --- a/docs/available_software/detail/ASE.md +++ b/docs/available_software/detail/ASE.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: ASE is a python package providing an open source Atomic Simulation - Environment in the Python scripting language.From version 3.20.1 we also include - the ase-ext package, it contains optional reimplementationsin C of functions in - ASE. ASE uses it automatically when installed. + description: "ASE is a python package providing an open source Atomic Simulation\ + \ Environment\n in the Python scripting language.\n\nFrom version 3.20.1 we also\ + \ include the ase-ext package, it contains optional reimplementations\nin C of\ + \ functions in ASE. ASE uses it automatically when installed." license: Not confirmed name: ASE offers: @@ -27,44 +25,60 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ASE/3.22.1-gfbf-2022b'', ''ASE/3.22.1-gfbf-2023a'']' + softwareVersion: '[''3.25.0'', ''3.22.1'']' url: https://wiki.fysik.dtu.dk/ase --- +# ASE -ASE -=== +ASE is a python package providing an open source Atomic Simulation Environment + in the Python scripting language. -ASE is a python package providing an open source Atomic Simulation Environment in the Python scripting language.From version 3.20.1 we also include the ase-ext package, it contains optional reimplementationsin C of functions in ASE. ASE uses it automatically when installed. +From version 3.20.1 we also include the ase-ext package, it contains optional reimplementations +in C of functions in ASE. ASE uses it automatically when installed. -https://wiki.fysik.dtu.dk/ase -# Available modules +homepage: [https://wiki.fysik.dtu.dk/ase](https://wiki.fysik.dtu.dk/ase) +## Available installations -The overview below shows which ASE installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using ASE, load one of these modules using a `module load` command like: +|ASE version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.25.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ASE/3.25.0-gfbf-2025a`| +|3.22.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ASE/3.22.1-gfbf-2023a`| +|3.22.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ASE/3.22.1-gfbf-2022b`| -```shell -module load ASE/3.22.1-gfbf-2023a -``` +## Extensions -*(This data was automatically generated on {{ generated_time }})* +Overview of extensions included in ASE installations -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ASE/3.22.1-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ASE/3.22.1-gfbf-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### ase -### ASE/3.22.1-gfbf-2023a -This is a list of extensions included in the module: +|`ase` version|ASE modules that include it| +| --- | --- | +|3.25.0|`ASE/3.25.0-gfbf-2025a`| +|3.22.1|`ASE/3.22.1-gfbf-2023a`
`ASE/3.22.1-gfbf-2022b`| -ase-3.22.1, ase-ext-20.9.0, pytest-mock-3.11.1 +### ase-ext -### ASE/3.22.1-gfbf-2022b -This is a list of extensions included in the module: +|`ase-ext` version|ASE modules that include it| +| --- | --- | +|20.9.0|`ASE/3.25.0-gfbf-2025a`
`ASE/3.22.1-gfbf-2023a`
`ASE/3.22.1-gfbf-2022b`| -ase-3.22.1, ase-ext-20.9.0, pytest-mock-3.8.2 \ No newline at end of file +### pytest-mock + + +|`pytest-mock` version|ASE modules that include it| +| --- | --- | +|3.11.1|`ASE/3.22.1-gfbf-2023a`| +|3.8.2|`ASE/3.22.1-gfbf-2022b`| + +### pytest_mock + + +|`pytest_mock` version|ASE modules that include it| +| --- | --- | +|3.14.1|`ASE/3.25.0-gfbf-2025a`| \ No newline at end of file diff --git a/docs/available_software/detail/ATK.md b/docs/available_software/detail/ATK.md index 071f3dcfc2..47a5c8a448 100644 --- a/docs/available_software/detail/ATK.md +++ b/docs/available_software/detail/ATK.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: ATK provides the set of accessibility interfaces that are implemented - by other toolkits and applications. Using the ATK interfaces, accessibility tools - have full access to view and control running applications. + description: "\n ATK provides the set of accessibility interfaces that are implemented\ + \ by other\n toolkits and applications. Using the ATK interfaces, accessibility\ + \ tools have\n full access to view and control running applications.\n" license: Not confirmed name: ATK offers: @@ -26,33 +24,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ATK/2.38.0-GCCcore-12.2.0'', ''ATK/2.38.0-GCCcore-12.3.0'', - ''ATK/2.38.0-GCCcore-13.2.0'']' + softwareVersion: '[''2.38.0'']' url: https://developer.gnome.org/atk/ --- +# ATK -ATK -=== -ATK provides the set of accessibility interfaces that are implemented by other toolkits and applications. Using the ATK interfaces, accessibility tools have full access to view and control running applications. + ATK provides the set of accessibility interfaces that are implemented by other + toolkits and applications. Using the ATK interfaces, accessibility tools have + full access to view and control running applications. -https://developer.gnome.org/atk/ -# Available modules +homepage: [https://developer.gnome.org/atk/](https://developer.gnome.org/atk/) -The overview below shows which ATK installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using ATK, load one of these modules using a `module load` command like: -```shell -module load ATK/2.38.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ATK/2.38.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ATK/2.38.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ATK/2.38.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ATK version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ATK/2.38.0-GCCcore-14.3.0`| +|2.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ATK/2.38.0-GCCcore-13.3.0`| +|2.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ATK/2.38.0-GCCcore-13.2.0`| +|2.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ATK/2.38.0-GCCcore-12.3.0`| +|2.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ATK/2.38.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Abseil.md b/docs/available_software/detail/Abseil.md index 098f824e3f..7ea2852282 100644 --- a/docs/available_software/detail/Abseil.md +++ b/docs/available_software/detail/Abseil.md @@ -1,14 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Abseil is an open-source collection of C++ library code designed to - augment theC++ standard library. The Abseil library code is collected from Google's - ownC++ code base, has been extensively tested and used in production, and is thesame - code we depend on in our daily coding lives. + description: 'Abseil is an open-source collection of C++ library code designed to + augment the + + C++ standard library. The Abseil library code is collected from Google''s own + + C++ code base, has been extensively tested and used in production, and is the + + same code we depend on in our daily coding lives.' license: Not confirmed name: Abseil offers: @@ -27,33 +29,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Abseil/20230125.2-GCCcore-12.2.0'', ''Abseil/20230125.3-GCCcore-12.3.0'', - ''Abseil/20240116.1-GCCcore-13.2.0'']' + softwareVersion: '[''20240722.0'', ''20240116.1'', ''20230125.3'', ''20230125.2'']' url: https://abseil.io/ --- - -Abseil -====== - - -Abseil is an open-source collection of C++ library code designed to augment theC++ standard library. The Abseil library code is collected from Google's ownC++ code base, has been extensively tested and used in production, and is thesame code we depend on in our daily coding lives. - -https://abseil.io/ -# Available modules +# Abseil -The overview below shows which Abseil installations are available per target architecture in EESSI, ordered based on software version (new to old). +Abseil is an open-source collection of C++ library code designed to augment the +C++ standard library. The Abseil library code is collected from Google's own +C++ code base, has been extensively tested and used in production, and is the +same code we depend on in our daily coding lives. -To start using Abseil, load one of these modules using a `module load` command like: +homepage: [https://abseil.io/](https://abseil.io/) -```shell -module load Abseil/20240116.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Abseil/20240116.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Abseil/20230125.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Abseil/20230125.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Abseil version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|20240722.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Abseil/20240722.0-GCCcore-13.3.0`| +|20240116.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Abseil/20240116.1-GCCcore-13.2.0`| +|20230125.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Abseil/20230125.3-GCCcore-12.3.0`| +|20230125.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Abseil/20230125.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/AmberTools.md b/docs/available_software/detail/AmberTools.md index f407e3ba2b..a66d7208e4 100644 --- a/docs/available_software/detail/AmberTools.md +++ b/docs/available_software/detail/AmberTools.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: AmberTools consists of several independently developed packages that - work well by themselves, and with Amber itself. The suite can also be used to - carry out complete molecular dynamics simulations, with either explicit water - or generalized Born solvent models. + description: "AmberTools consists of several independently developed packages that\ + \ work well by themselves,\n and with Amber itself. The suite can also be used\ + \ to carry out complete molecular dynamics simulations,\n with either explicit\ + \ water or generalized Born solvent models." license: Not confirmed name: AmberTools offers: @@ -27,30 +25,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''AmberTools/23.6-foss-2023a'']' + softwareVersion: '[''25.2'', ''23.6'']' url: https://ambermd.org/ --- +# AmberTools -AmberTools -========== +AmberTools consists of several independently developed packages that work well by themselves, + and with Amber itself. The suite can also be used to carry out complete molecular dynamics simulations, + with either explicit water or generalized Born solvent models. -AmberTools consists of several independently developed packages that work well by themselves, and with Amber itself. The suite can also be used to carry out complete molecular dynamics simulations, with either explicit water or generalized Born solvent models. +homepage: [https://ambermd.org/](https://ambermd.org/) -https://ambermd.org/ -# Available modules +## Available installations -The overview below shows which AmberTools installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using AmberTools, load one of these modules using a `module load` command like: - -```shell -module load AmberTools/23.6-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|AmberTools/23.6-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|AmberTools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|25.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`AmberTools/25.2-foss-2025a`| +|23.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`AmberTools/23.6-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Archive-Zip.md b/docs/available_software/detail/Archive-Zip.md index 5bbdbd36a4..4e6f425f47 100644 --- a/docs/available_software/detail/Archive-Zip.md +++ b/docs/available_software/detail/Archive-Zip.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Archive-Zip/1.68-GCCcore-12.2.0'']' + softwareVersion: '[''1.68'']' url: https://metacpan.org/pod/Archive::Zip --- - -Archive-Zip -=========== +# Archive-Zip Provide an interface to ZIP archive files. -https://metacpan.org/pod/Archive::Zip -# Available modules - - -The overview below shows which Archive-Zip installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Archive-Zip, load one of these modules using a `module load` command like: +homepage: [https://metacpan.org/pod/Archive::Zip](https://metacpan.org/pod/Archive::Zip) -```shell -module load Archive-Zip/1.68-GCCcore-12.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Archive-Zip/1.68-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Archive-Zip version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.68|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Archive-Zip/1.68-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Armadillo.md b/docs/available_software/detail/Armadillo.md index 3c690c05d2..dd1be5e0e5 100644 --- a/docs/available_software/detail/Armadillo.md +++ b/docs/available_software/detail/Armadillo.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Armadillo is an open-source C++ linear algebra library (matrix maths) - aiming towards a good balance between speed and ease of use. Integer, floating - point and complex numbers are supported, as well as a subset of trigonometric - and statistics functions. + description: "Armadillo is an open-source C++ linear algebra library (matrix maths)\ + \ aiming towards\n a good balance between speed and ease of use. Integer, floating\ + \ point and complex numbers are supported,\n as well as a subset of trigonometric\ + \ and statistics functions." license: Not confirmed name: Armadillo offers: @@ -27,33 +25,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Armadillo/11.4.3-foss-2022b'', ''Armadillo/12.6.2-foss-2023a'', - ''Armadillo/12.8.0-foss-2023b'']' + softwareVersion: '[''15.0.1'', ''14.0.3'', ''12.8.0'', ''12.6.2'', ''11.4.3'']' url: https://arma.sourceforge.net/ --- +# Armadillo -Armadillo -========= +Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards + a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, + as well as a subset of trigonometric and statistics functions. -Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as well as a subset of trigonometric and statistics functions. +homepage: [https://arma.sourceforge.net/](https://arma.sourceforge.net/) -https://arma.sourceforge.net/ -# Available modules +## Available installations -The overview below shows which Armadillo installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Armadillo, load one of these modules using a `module load` command like: - -```shell -module load Armadillo/12.8.0-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Armadillo/12.8.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Armadillo/12.6.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Armadillo/11.4.3-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Armadillo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|15.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Armadillo/15.0.1-foss-2025b`| +|14.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Armadillo/14.0.3-foss-2024a`| +|12.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Armadillo/12.8.0-foss-2023b`| +|12.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Armadillo/12.6.2-foss-2023a`| +|11.4.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Armadillo/11.4.3-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/Arrow.md b/docs/available_software/detail/Arrow.md index 43a7b91c06..ec669a3224 100644 --- a/docs/available_software/detail/Arrow.md +++ b/docs/available_software/detail/Arrow.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Apache Arrow (incl. PyArrow Python bindings), a cross-language development - platform for in-memory data. + description: "Apache Arrow (incl. PyArrow Python bindings), a cross-language development\ + \ platform\n for in-memory data." license: Not confirmed name: Arrow offers: @@ -25,45 +23,37 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Arrow/11.0.0-gfbf-2022b'', ''Arrow/14.0.1-gfbf-2023a'', ''Arrow/16.1.0-gfbf-2023b'']' + softwareVersion: '[''17.0.0'', ''16.1.0'', ''14.0.1'', ''11.0.0'']' url: https://arrow.apache.org --- +# Arrow -Arrow -===== +Apache Arrow (incl. PyArrow Python bindings), a cross-language development platform + for in-memory data. -Apache Arrow (incl. PyArrow Python bindings), a cross-language development platform for in-memory data. +homepage: [https://arrow.apache.org](https://arrow.apache.org) -https://arrow.apache.org -# Available modules +## Available installations -The overview below shows which Arrow installations are available per target architecture in EESSI, ordered based on software version (new to old). +|Arrow version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|17.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Arrow/17.0.0-gfbf-2024a`| +|16.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Arrow/16.1.0-gfbf-2023b`| +|14.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Arrow/14.0.1-gfbf-2023a`| +|11.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Arrow/11.0.0-gfbf-2022b`| -To start using Arrow, load one of these modules using a `module load` command like: +## Extensions -```shell -module load Arrow/16.1.0-gfbf-2023b -``` +Overview of extensions included in Arrow installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Arrow/16.1.0-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Arrow/14.0.1-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Arrow/11.0.0-gfbf-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### pyarrow -### Arrow/16.1.0-gfbf-2023b - -This is a list of extensions included in the module: - -pyarrow-16.1.0 - -### Arrow/14.0.1-gfbf-2023a - -This is a list of extensions included in the module: - -pyarrow-14.0.1 \ No newline at end of file +|`pyarrow` version|Arrow modules that include it| +| --- | --- | +|17.0.0|`Arrow/17.0.0-gfbf-2024a`| +|16.1.0|`Arrow/16.1.0-gfbf-2023b`| +|14.0.1|`Arrow/14.0.1-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ArviZ.md b/docs/available_software/detail/ArviZ.md index 2aade973a3..fc7c99e6fa 100644 --- a/docs/available_software/detail/ArviZ.md +++ b/docs/available_software/detail/ArviZ.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,38 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ArviZ/0.16.1-foss-2023a'']' + softwareVersion: '[''0.16.1'']' url: https://github.com/arviz-devs/arviz --- - -ArviZ -===== +# ArviZ Exploratory analysis of Bayesian models with Python -https://github.com/arviz-devs/arviz -# Available modules +homepage: [https://github.com/arviz-devs/arviz](https://github.com/arviz-devs/arviz) + +## Available installations + +|ArviZ version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.16.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ArviZ/0.16.1-foss-2023a`| -The overview below shows which ArviZ installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using ArviZ, load one of these modules using a `module load` command like: +Overview of extensions included in ArviZ installations -```shell -module load ArviZ/0.16.1-foss-2023a -``` -*(This data was automatically generated on {{ generated_time }})* +### ArviZ -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ArviZ/0.16.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`ArviZ` version|ArviZ modules that include it| +| --- | --- | +|0.16.1|`ArviZ/0.16.1-foss-2023a`| -### ArviZ/0.16.1-foss-2023a +### xarray-einstats -This is a list of extensions included in the module: -ArviZ-0.16.1, xarray-einstats-0.6.0 \ No newline at end of file +|`xarray-einstats` version|ArviZ modules that include it| +| --- | --- | +|0.6.0|`ArviZ/0.16.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Autoconf.md b/docs/available_software/detail/Autoconf.md new file mode 100644 index 0000000000..5a19acdd59 --- /dev/null +++ b/docs/available_software/detail/Autoconf.md @@ -0,0 +1,54 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "\n Autoconf is an extensible package of M4 macros that produce shell\ + \ scripts\n to automatically configure software source code packages. These scripts\ + \ can\n adapt the packages to many kinds of UNIX-like systems without manual user\n\ + \ intervention. Autoconf creates a configuration script for a package from a\n\ + \ template file that lists the operating system features that the package can\n\ + \ use, in the form of M4 macro calls.\n" + license: Not confirmed + name: Autoconf + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.72'']' + url: https://www.gnu.org/software/autoconf/ +--- +# Autoconf + + + + Autoconf is an extensible package of M4 macros that produce shell scripts + to automatically configure software source code packages. These scripts can + adapt the packages to many kinds of UNIX-like systems without manual user + intervention. Autoconf creates a configuration script for a package from a + template file that lists the operating system features that the package can + use, in the form of M4 macro calls. + + +homepage: [https://www.gnu.org/software/autoconf/](https://www.gnu.org/software/autoconf/) + +## Available installations + + +|Autoconf version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.72|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Autoconf/2.72-GCCcore-14.3.0`| +|2.72|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Autoconf/2.72-GCCcore-14.2.0`| +|2.72|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Autoconf/2.72-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Automake.md b/docs/available_software/detail/Automake.md new file mode 100644 index 0000000000..fafb3dd5a3 --- /dev/null +++ b/docs/available_software/detail/Automake.md @@ -0,0 +1,42 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Automake: GNU Standards-compliant Makefile generator' + license: Not confirmed + name: Automake + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.18'', ''1.17'', ''1.16.5'']' + url: https://www.gnu.org/software/automake/automake.html +--- +# Automake + + +Automake: GNU Standards-compliant Makefile generator + +homepage: [https://www.gnu.org/software/automake/automake.html](https://www.gnu.org/software/automake/automake.html) + +## Available installations + + +|Automake version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Automake/1.18-GCCcore-14.3.0`| +|1.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Automake/1.17-GCCcore-14.2.0`| +|1.16.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Automake/1.16.5-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Autotools.md b/docs/available_software/detail/Autotools.md new file mode 100644 index 0000000000..ee1be04bea --- /dev/null +++ b/docs/available_software/detail/Autotools.md @@ -0,0 +1,46 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "\n This bundle collect the standard GNU build tools: Autoconf, Automake\n\ + \ and libtool\n" + license: Not confirmed + name: Autotools + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''20250527'', ''20240712'', ''20231222'']' + url: https://autotools.io +--- +# Autotools + + + + This bundle collect the standard GNU build tools: Autoconf, Automake + and libtool + + +homepage: [https://autotools.io](https://autotools.io) + +## Available installations + + +|Autotools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|20250527|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Autotools/20250527-GCCcore-14.3.0`| +|20240712|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Autotools/20240712-GCCcore-14.2.0`| +|20231222|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Autotools/20231222-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/BCFtools.md b/docs/available_software/detail/BCFtools.md index 5720c7cb54..1018788b45 100644 --- a/docs/available_software/detail/BCFtools.md +++ b/docs/available_software/detail/BCFtools.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Samtools is a suite of programs for interacting with high-throughput - sequencing data. BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising - SNP and short indel sequence variants + description: "Samtools is a suite of programs for interacting with high-throughput\ + \ sequencing data.\n BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising\ + \ SNP and short indel sequence\n variants" license: Not confirmed name: BCFtools offers: @@ -26,31 +24,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''BCFtools/1.17-GCC-12.2.0'', ''BCFtools/1.18-GCC-12.3.0'']' + softwareVersion: '[''1.22'', ''1.18'', ''1.17'']' url: https://www.htslib.org/ --- +# BCFtools -BCFtools -======== +Samtools is a suite of programs for interacting with high-throughput sequencing data. + BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising SNP and short indel sequence + variants -Samtools is a suite of programs for interacting with high-throughput sequencing data. BCFtools - Reading/writing BCF2/VCF/gVCF files and calling/filtering/summarising SNP and short indel sequence variants +homepage: [https://www.htslib.org/](https://www.htslib.org/) -https://www.htslib.org/ -# Available modules +## Available installations -The overview below shows which BCFtools installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using BCFtools, load one of these modules using a `module load` command like: - -```shell -module load BCFtools/1.18-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|BCFtools/1.18-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|BCFtools/1.17-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|BCFtools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.22|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BCFtools/1.22-GCC-14.3.0`| +|1.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BCFtools/1.18-GCC-12.3.0`| +|1.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BCFtools/1.17-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/BLAST+.md b/docs/available_software/detail/BLAST+.md index 8c7700715e..4e91d407c8 100644 --- a/docs/available_software/detail/BLAST+.md +++ b/docs/available_software/detail/BLAST+.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Basic Local Alignment Search Tool, or BLAST, is an algorithm for comparing - primary biological sequence information, such as the amino-acid sequences of different - proteins or the nucleotides of DNA sequences. + description: "Basic Local Alignment Search Tool, or BLAST, is an algorithm\n for\ + \ comparing primary biological sequence information, such as the amino-acid\n\ + \ sequences of different proteins or the nucleotides of DNA sequences." license: Not confirmed name: BLAST+ offers: @@ -26,31 +24,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''BLAST+/2.14.0-gompi-2022b'', ''BLAST+/2.14.1-gompi-2023a'']' + softwareVersion: '[''2.17.0'', ''2.14.1'', ''2.14.0'']' url: https://blast.ncbi.nlm.nih.gov/ --- +# BLAST+ -BLAST+ -====== +Basic Local Alignment Search Tool, or BLAST, is an algorithm + for comparing primary biological sequence information, such as the amino-acid + sequences of different proteins or the nucleotides of DNA sequences. -Basic Local Alignment Search Tool, or BLAST, is an algorithm for comparing primary biological sequence information, such as the amino-acid sequences of different proteins or the nucleotides of DNA sequences. +homepage: [https://blast.ncbi.nlm.nih.gov/](https://blast.ncbi.nlm.nih.gov/) -https://blast.ncbi.nlm.nih.gov/ -# Available modules +## Available installations -The overview below shows which BLAST+ installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using BLAST+, load one of these modules using a `module load` command like: - -```shell -module load BLAST+/2.14.1-gompi-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|BLAST+/2.14.1-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|BLAST+/2.14.0-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|BLAST+ version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.17.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BLAST+/2.17.0-gompi-2025a`| +|2.14.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BLAST+/2.14.1-gompi-2023a`| +|2.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BLAST+/2.14.0-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/BLIS.md b/docs/available_software/detail/BLIS.md index b76099e923..fd8d47bc77 100644 --- a/docs/available_software/detail/BLIS.md +++ b/docs/available_software/detail/BLIS.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: BLIS is a portable software framework for instantiating high-performanceBLAS-like - dense linear algebra libraries. + description: 'BLIS is a portable software framework for instantiating high-performance + + BLAS-like dense linear algebra libraries.' license: Not confirmed name: BLIS offers: @@ -25,32 +24,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''BLIS/0.9.0-GCC-12.2.0'', ''BLIS/0.9.0-GCC-12.3.0'', ''BLIS/0.9.0-GCC-13.2.0'']' + softwareVersion: '[''2.0'', ''1.1'', ''1.0'', ''0.9.0'']' url: https://github.com/flame/blis/ --- - -BLIS -==== - - -BLIS is a portable software framework for instantiating high-performanceBLAS-like dense linear algebra libraries. - -https://github.com/flame/blis/ -# Available modules +# BLIS -The overview below shows which BLIS installations are available per target architecture in EESSI, ordered based on software version (new to old). +BLIS is a portable software framework for instantiating high-performance +BLAS-like dense linear algebra libraries. -To start using BLIS, load one of these modules using a `module load` command like: +homepage: [https://github.com/flame/blis/](https://github.com/flame/blis/) -```shell -module load BLIS/0.9.0-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|BLIS/0.9.0-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|BLIS/0.9.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|BLIS/0.9.0-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|BLIS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BLIS/2.0-GCC-14.3.0`| +|2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BLIS/2.0-llvm-compilers-20.1.8`| +|1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BLIS/1.1-GCC-14.2.0`| +|1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BLIS/1.0-GCC-13.3.0`| +|0.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BLIS/0.9.0-GCC-13.2.0`| +|0.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BLIS/0.9.0-GCC-12.3.0`| +|0.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BLIS/0.9.0-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/BWA.md b/docs/available_software/detail/BWA.md index 11482dac66..13cd37a3b7 100644 --- a/docs/available_software/detail/BWA.md +++ b/docs/available_software/detail/BWA.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Burrows-Wheeler Aligner (BWA) is an efficient program that aligns relatively - short nucleotide sequences against a long reference sequence such as the human - genome. + description: "\n Burrows-Wheeler Aligner (BWA) is an efficient program that aligns\ + \ relatively\n short nucleotide sequences against a long reference sequence such\ + \ as the human\n genome.\n" license: Not confirmed name: BWA offers: @@ -26,33 +24,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''BWA/0.7.17-20220923-GCCcore-12.3.0'', ''BWA/0.7.18-GCCcore-12.3.0'', - ''BWA/0.7.18-GCCcore-13.2.0'']' + softwareVersion: '[''0.7.19'', ''0.7.18'', ''0.7.17-20220923'']' url: http://bio-bwa.sourceforge.net/ --- +# BWA -BWA -=== -Burrows-Wheeler Aligner (BWA) is an efficient program that aligns relatively short nucleotide sequences against a long reference sequence such as the human genome. + Burrows-Wheeler Aligner (BWA) is an efficient program that aligns relatively + short nucleotide sequences against a long reference sequence such as the human + genome. -http://bio-bwa.sourceforge.net/ -# Available modules +homepage: [http://bio-bwa.sourceforge.net/](http://bio-bwa.sourceforge.net/) -The overview below shows which BWA installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using BWA, load one of these modules using a `module load` command like: -```shell -module load BWA/0.7.18-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|BWA/0.7.18-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|BWA/0.7.18-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|BWA/0.7.17-20220923-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|BWA version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.7.19|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BWA/0.7.19-GCCcore-14.3.0`| +|0.7.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BWA/0.7.18-GCCcore-13.2.0`| +|0.7.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BWA/0.7.18-GCCcore-12.3.0`| +|0.7.17-20220923|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BWA/0.7.17-20220923-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/BamTools.md b/docs/available_software/detail/BamTools.md index 16e4a51eac..18682b2b5e 100644 --- a/docs/available_software/detail/BamTools.md +++ b/docs/available_software/detail/BamTools.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''BamTools/2.5.2-GCC-12.2.0'']' + softwareVersion: '[''2.5.2'']' url: https://github.com/pezmaster31/bamtools --- - -BamTools -======== +# BamTools BamTools provides both a programmer's API and an end-user's toolkit for handling BAM files. -https://github.com/pezmaster31/bamtools -# Available modules - - -The overview below shows which BamTools installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using BamTools, load one of these modules using a `module load` command like: +homepage: [https://github.com/pezmaster31/bamtools](https://github.com/pezmaster31/bamtools) -```shell -module load BamTools/2.5.2-GCC-12.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|BamTools/2.5.2-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|BamTools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BamTools/2.5.2-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Bazel.md b/docs/available_software/detail/Bazel.md index 7a55a127a3..c405548151 100644 --- a/docs/available_software/detail/Bazel.md +++ b/docs/available_software/detail/Bazel.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Bazel is a build tool that builds code quickly and reliably.It is used - to build the majority of Google's software. + description: 'Bazel is a build tool that builds code quickly and reliably. + + It is used to build the majority of Google''s software.' license: Not confirmed name: Bazel offers: @@ -25,31 +24,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Bazel/6.1.0-GCCcore-12.3.0'', ''Bazel/6.3.1-GCCcore-12.3.0'']' + softwareVersion: '[''6.3.1'', ''6.1.0'']' url: https://bazel.io/ --- - -Bazel -===== - - -Bazel is a build tool that builds code quickly and reliably.It is used to build the majority of Google's software. - -https://bazel.io/ -# Available modules +# Bazel -The overview below shows which Bazel installations are available per target architecture in EESSI, ordered based on software version (new to old). +Bazel is a build tool that builds code quickly and reliably. +It is used to build the majority of Google's software. -To start using Bazel, load one of these modules using a `module load` command like: +homepage: [https://bazel.io/](https://bazel.io/) -```shell -module load Bazel/6.3.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Bazel/6.3.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Bazel/6.1.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Bazel version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Bazel/6.3.1-GCCcore-12.3.0`| +|6.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Bazel/6.1.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/BeautifulSoup.md b/docs/available_software/detail/BeautifulSoup.md index 3e20120799..bb93018701 100644 --- a/docs/available_software/detail/BeautifulSoup.md +++ b/docs/available_software/detail/BeautifulSoup.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,37 +23,48 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''BeautifulSoup/4.12.2-GCCcore-12.3.0'']' + softwareVersion: '[''4.14.2'', ''4.13.4'', ''4.12.3'', ''4.12.2'']' url: https://www.crummy.com/software/BeautifulSoup --- - -BeautifulSoup -============= +# BeautifulSoup Beautiful Soup is a Python library designed for quick turnaround projects like screen-scraping. -https://www.crummy.com/software/BeautifulSoup -# Available modules +homepage: [https://www.crummy.com/software/BeautifulSoup](https://www.crummy.com/software/BeautifulSoup) + +## Available installations + +|BeautifulSoup version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.14.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BeautifulSoup/4.14.2-GCCcore-14.3.0`| +|4.13.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BeautifulSoup/4.13.4-GCCcore-14.2.0`| +|4.12.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BeautifulSoup/4.12.3-GCCcore-13.3.0`| +|4.12.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BeautifulSoup/4.12.2-GCCcore-13.2.0`| +|4.12.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BeautifulSoup/4.12.2-GCCcore-12.3.0`| -The overview below shows which BeautifulSoup installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using BeautifulSoup, load one of these modules using a `module load` command like: +Overview of extensions included in BeautifulSoup installations -```shell -module load BeautifulSoup/4.12.2-GCCcore-12.3.0 -``` -*(This data was automatically generated on {{ generated_time }})* +### BeautifulSoup -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|BeautifulSoup/4.12.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`BeautifulSoup` version|BeautifulSoup modules that include it| +| --- | --- | +|4.14.2|`BeautifulSoup/4.14.2-GCCcore-14.3.0`| +|4.13.4|`BeautifulSoup/4.13.4-GCCcore-14.2.0`| +|4.12.3|`BeautifulSoup/4.12.3-GCCcore-13.3.0`| +|4.12.2|`BeautifulSoup/4.12.2-GCCcore-13.2.0`
`BeautifulSoup/4.12.2-GCCcore-12.3.0`| -### BeautifulSoup/4.12.2-GCCcore-12.3.0 +### soupsieve -This is a list of extensions included in the module: -BeautifulSoup-4.12.2, soupsieve-2.4.1 \ No newline at end of file +|`soupsieve` version|BeautifulSoup modules that include it| +| --- | --- | +|2.8|`BeautifulSoup/4.14.2-GCCcore-14.3.0`| +|2.7|`BeautifulSoup/4.13.4-GCCcore-14.2.0`| +|2.5|`BeautifulSoup/4.12.3-GCCcore-13.3.0`
`BeautifulSoup/4.12.2-GCCcore-13.2.0`| +|2.4.1|`BeautifulSoup/4.12.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Bio-DB-HTS.md b/docs/available_software/detail/Bio-DB-HTS.md index a8e14c908a..5c0dae8998 100644 --- a/docs/available_software/detail/Bio-DB-HTS.md +++ b/docs/available_software/detail/Bio-DB-HTS.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Bio-DB-HTS/3.01-GCC-12.2.0'']' + softwareVersion: '[''3.01'']' url: https://metacpan.org/release/Bio-DB-HTS --- - -Bio-DB-HTS -========== +# Bio-DB-HTS Read files using HTSlib including BAM/CRAM, Tabix and BCF database files -https://metacpan.org/release/Bio-DB-HTS -# Available modules - - -The overview below shows which Bio-DB-HTS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Bio-DB-HTS, load one of these modules using a `module load` command like: +homepage: [https://metacpan.org/release/Bio-DB-HTS](https://metacpan.org/release/Bio-DB-HTS) -```shell -module load Bio-DB-HTS/3.01-GCC-12.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Bio-DB-HTS/3.01-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Bio-DB-HTS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.01|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Bio-DB-HTS/3.01-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Bio-SearchIO-hmmer.md b/docs/available_software/detail/Bio-SearchIO-hmmer.md index ba2ca6a027..d52f60a6bd 100644 --- a/docs/available_software/detail/Bio-SearchIO-hmmer.md +++ b/docs/available_software/detail/Bio-SearchIO-hmmer.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Code to parse output from hmmsearch, hmmscan, phmmer and nhmmer, compatiblewith - both version 2 and version 3 of the HMMER package from http://hmmer.org. + description: 'Code to parse output from hmmsearch, hmmscan, phmmer and nhmmer, compatible + + with both version 2 and version 3 of the HMMER package from http://hmmer.org.' license: Not confirmed name: Bio-SearchIO-hmmer offers: @@ -25,30 +24,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Bio-SearchIO-hmmer/1.7.3-GCC-12.2.0'']' + softwareVersion: '[''1.7.3'']' url: https://metacpan.org/pod/Bio::SearchIO::hmmer3 --- - -Bio-SearchIO-hmmer -================== - - -Code to parse output from hmmsearch, hmmscan, phmmer and nhmmer, compatiblewith both version 2 and version 3 of the HMMER package from http://hmmer.org. - -https://metacpan.org/pod/Bio::SearchIO::hmmer3 -# Available modules +# Bio-SearchIO-hmmer -The overview below shows which Bio-SearchIO-hmmer installations are available per target architecture in EESSI, ordered based on software version (new to old). +Code to parse output from hmmsearch, hmmscan, phmmer and nhmmer, compatible +with both version 2 and version 3 of the HMMER package from http://hmmer.org. -To start using Bio-SearchIO-hmmer, load one of these modules using a `module load` command like: +homepage: [https://metacpan.org/pod/Bio::SearchIO::hmmer3](https://metacpan.org/pod/Bio::SearchIO::hmmer3) -```shell -module load Bio-SearchIO-hmmer/1.7.3-GCC-12.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Bio-SearchIO-hmmer/1.7.3-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Bio-SearchIO-hmmer version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Bio-SearchIO-hmmer/1.7.3-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/BioPerl.md b/docs/available_software/detail/BioPerl.md index bae6493038..e50b495402 100644 --- a/docs/available_software/detail/BioPerl.md +++ b/docs/available_software/detail/BioPerl.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Bioperl is the product of a community effort to produce Perl code which - is useful in biology. Examples include Sequence objects, Alignment objects and - database searching objects. + description: "Bioperl is the product of a community effort to produce Perl code\ + \ which is useful in biology.\n Examples include Sequence objects, Alignment objects\ + \ and database searching objects." license: Not confirmed name: BioPerl offers: @@ -26,44 +24,48 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''BioPerl/1.7.8-GCCcore-12.2.0'', ''BioPerl/1.7.8-GCCcore-12.3.0'']' - url: https://bioperl.org/ + softwareVersion: '[''1.7.8'']' + url: http://www.bioperl.org/ --- +# BioPerl -BioPerl -======= +Bioperl is the product of a community effort to produce Perl code which is useful in biology. + Examples include Sequence objects, Alignment objects and database searching objects. -Bioperl is the product of a community effort to produce Perl code which is useful in biology. Examples include Sequence objects, Alignment objects and database searching objects. +homepage: [http://www.bioperl.org/](http://www.bioperl.org/) -https://bioperl.org/ -# Available modules +## Available installations -The overview below shows which BioPerl installations are available per target architecture in EESSI, ordered based on software version (new to old). +|BioPerl version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`BioPerl/1.7.8-GCCcore-14.2.0`| +|1.7.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BioPerl/1.7.8-GCCcore-12.3.0`| +|1.7.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`BioPerl/1.7.8-GCCcore-12.2.0`| -To start using BioPerl, load one of these modules using a `module load` command like: +## Extensions -```shell -module load BioPerl/1.7.8-GCCcore-12.3.0 -``` +Overview of extensions included in BioPerl installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|BioPerl/1.7.8-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|BioPerl/1.7.8-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### Bio::Procedural -### BioPerl/1.7.8-GCCcore-12.3.0 +|`Bio::Procedural` version|BioPerl modules that include it| +| --- | --- | +|1.7.4|`BioPerl/1.7.8-GCCcore-14.2.0`
`BioPerl/1.7.8-GCCcore-12.3.0`
`BioPerl/1.7.8-GCCcore-12.2.0`| -This is a list of extensions included in the module: +### BioPerl -Bio::Procedural-1.7.4, BioPerl-1.7.8, XML::Writer-0.900 -### BioPerl/1.7.8-GCCcore-12.2.0 +|`BioPerl` version|BioPerl modules that include it| +| --- | --- | +|1.7.8|`BioPerl/1.7.8-GCCcore-14.2.0`
`BioPerl/1.7.8-GCCcore-12.3.0`
`BioPerl/1.7.8-GCCcore-12.2.0`| -This is a list of extensions included in the module: +### XML::Writer -Bio::Procedural-1.7.4, BioPerl-1.7.8, XML::Writer-0.900 \ No newline at end of file + +|`XML::Writer` version|BioPerl modules that include it| +| --- | --- | +|0.900|`BioPerl/1.7.8-GCCcore-14.2.0`
`BioPerl/1.7.8-GCCcore-12.3.0`
`BioPerl/1.7.8-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Biopython.md b/docs/available_software/detail/Biopython.md index 7a6bf3c74d..5bb1b82f51 100644 --- a/docs/available_software/detail/Biopython.md +++ b/docs/available_software/detail/Biopython.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Biopython is a set of freely available tools for biological computation - written in Python by an international team of developers. It is a distributed - collaborative effort to develop Python libraries and applications which address - the needs of current and future work in bioinformatics. + description: "Biopython is a set of freely available tools for biological\n computation\ + \ written in Python by an international team of developers. It is\n a distributed\ + \ collaborative effort to develop Python libraries and\n applications which address\ + \ the needs of current and future work in\n bioinformatics. " license: Not confirmed name: Biopython offers: @@ -27,31 +25,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Biopython/1.81-foss-2022b'', ''Biopython/1.83-foss-2023a'']' + softwareVersion: '[''1.85'', ''1.83'', ''1.81'']' url: https://www.biopython.org --- +# Biopython -Biopython -========= +Biopython is a set of freely available tools for biological + computation written in Python by an international team of developers. It is + a distributed collaborative effort to develop Python libraries and + applications which address the needs of current and future work in + bioinformatics. -Biopython is a set of freely available tools for biological computation written in Python by an international team of developers. It is a distributed collaborative effort to develop Python libraries and applications which address the needs of current and future work in bioinformatics. +homepage: [https://www.biopython.org](https://www.biopython.org) -https://www.biopython.org -# Available modules +## Available installations -The overview below shows which Biopython installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Biopython, load one of these modules using a `module load` command like: - -```shell -module load Biopython/1.83-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Biopython/1.83-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Biopython/1.81-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Biopython version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.85|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Biopython/1.85-gfbf-2025a`| +|1.83|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Biopython/1.83-foss-2023a`| +|1.81|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Biopython/1.81-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/Bison.md b/docs/available_software/detail/Bison.md index 9926c673f4..63d8c52417 100644 --- a/docs/available_software/detail/Bison.md +++ b/docs/available_software/detail/Bison.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Bison is a general-purpose parser generator that converts an annotated - context-free grammar into a deterministic LR or generalized LR (GLR) parser employing - LALR(1) parser tables. + description: "Bison is a general-purpose parser generator that converts an annotated\ + \ context-free grammar\n into a deterministic LR or generalized LR (GLR) parser\ + \ employing LALR(1) parser tables." license: Not confirmed name: Bison offers: @@ -26,33 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Bison/3.8.2-GCCcore-12.2.0'', ''Bison/3.8.2-GCCcore-12.3.0'', - ''Bison/3.8.2-GCCcore-13.2.0'']' + softwareVersion: '[''3.8.2'']' url: https://www.gnu.org/software/bison --- +# Bison -Bison -===== +Bison is a general-purpose parser generator that converts an annotated context-free grammar + into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables. -Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or generalized LR (GLR) parser employing LALR(1) parser tables. +homepage: [https://www.gnu.org/software/bison](https://www.gnu.org/software/bison) -https://www.gnu.org/software/bison -# Available modules +## Available installations -The overview below shows which Bison installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Bison, load one of these modules using a `module load` command like: - -```shell -module load Bison/3.8.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Bison/3.8.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Bison/3.8.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Bison/3.8.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Bison version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Bison/3.8.2-GCCcore-14.3.0`| +|3.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Bison/3.8.2-GCCcore-14.2.0`| +|3.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Bison/3.8.2-GCCcore-13.3.0`| +|3.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Bison/3.8.2-GCCcore-13.2.0`| +|3.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Bison/3.8.2-GCCcore-12.3.0`| +|3.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Bison/3.8.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Blosc.md b/docs/available_software/detail/Blosc.md index 54a522ae02..dfe81a0c4b 100644 --- a/docs/available_software/detail/Blosc.md +++ b/docs/available_software/detail/Blosc.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Blosc/1.21.5-GCCcore-13.2.0'']' + softwareVersion: '[''1.21.5'']' url: https://www.blosc.org/ --- - -Blosc -===== +# Blosc Blosc, an extremely fast, multi-threaded, meta-compressor library -https://www.blosc.org/ -# Available modules - - -The overview below shows which Blosc installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Blosc, load one of these modules using a `module load` command like: +homepage: [https://www.blosc.org/](https://www.blosc.org/) -```shell -module load Blosc/1.21.5-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Blosc/1.21.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Blosc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.21.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Blosc/1.21.5-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Blosc2.md b/docs/available_software/detail/Blosc2.md index 0cc4175a06..114556b762 100644 --- a/docs/available_software/detail/Blosc2.md +++ b/docs/available_software/detail/Blosc2.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Blosc2/2.13.2-GCCcore-13.2.0'']' + softwareVersion: '[''2.13.2'']' url: https://www.blosc.org/ --- - -Blosc2 -====== +# Blosc2 Blosc, an extremely fast, multi-threaded, meta-compressor library -https://www.blosc.org/ -# Available modules - - -The overview below shows which Blosc2 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Blosc2, load one of these modules using a `module load` command like: +homepage: [https://www.blosc.org/](https://www.blosc.org/) -```shell -module load Blosc2/2.13.2-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Blosc2/2.13.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Blosc2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.13.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Blosc2/2.13.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Boost.MPI.md b/docs/available_software/detail/Boost.MPI.md index 79009c5607..7bca787527 100644 --- a/docs/available_software/detail/Boost.MPI.md +++ b/docs/available_software/detail/Boost.MPI.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Boost.MPI/1.81.0-gompi-2022b'', ''Boost.MPI/1.82.0-gompi-2023a'', - ''Boost.MPI/1.83.0-gompi-2023b'']' + softwareVersion: '[''1.88.0'', ''1.83.0'', ''1.82.0'', ''1.81.0'']' url: https://www.boost.org/ --- - -Boost.MPI -========= +# Boost.MPI Boost provides free peer-reviewed portable C++ source libraries. -https://www.boost.org/ -# Available modules - - -The overview below shows which Boost.MPI installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Boost.MPI, load one of these modules using a `module load` command like: +homepage: [https://www.boost.org/](https://www.boost.org/) -```shell -module load Boost.MPI/1.83.0-gompi-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Boost.MPI/1.83.0-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Boost.MPI/1.82.0-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Boost.MPI/1.81.0-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Boost.MPI version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.88.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Boost.MPI/1.88.0-gompi-2025a`| +|1.83.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Boost.MPI/1.83.0-gompi-2023b`| +|1.82.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Boost.MPI/1.82.0-gompi-2023a`| +|1.81.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Boost.MPI/1.81.0-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/Boost.Python-NumPy.md b/docs/available_software/detail/Boost.Python-NumPy.md index efee55c05f..58c0b49f6f 100644 --- a/docs/available_software/detail/Boost.Python-NumPy.md +++ b/docs/available_software/detail/Boost.Python-NumPy.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Boost.Python is a C++ library which enables seamless interoperability - between C++ and the Python programming language. + description: "Boost.Python is a C++ library which enables seamless interoperability\ + \ between C++\n and the Python programming language." license: Not confirmed name: Boost.Python-NumPy offers: @@ -25,30 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Boost.Python-NumPy/1.83.0-gfbf-2023b'']' + softwareVersion: '[''1.88.0'', ''1.83.0'']' url: https://boostorg.github.io/python --- +# Boost.Python-NumPy -Boost.Python-NumPy -================== +Boost.Python is a C++ library which enables seamless interoperability between C++ + and the Python programming language. -Boost.Python is a C++ library which enables seamless interoperability between C++ and the Python programming language. +homepage: [https://boostorg.github.io/python](https://boostorg.github.io/python) -https://boostorg.github.io/python -# Available modules +## Available installations -The overview below shows which Boost.Python-NumPy installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Boost.Python-NumPy, load one of these modules using a `module load` command like: - -```shell -module load Boost.Python-NumPy/1.83.0-gfbf-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Boost.Python-NumPy/1.83.0-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Boost.Python-NumPy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.88.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Boost.Python-NumPy/1.88.0-gfbf-2025a`| +|1.83.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Boost.Python-NumPy/1.83.0-gfbf-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/Boost.Python.md b/docs/available_software/detail/Boost.Python.md index 2310fed126..cb5e4cccb1 100644 --- a/docs/available_software/detail/Boost.Python.md +++ b/docs/available_software/detail/Boost.Python.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Boost.Python is a C++ library which enables seamless interoperability - between C++ and the Python programming language. + description: "Boost.Python is a C++ library which enables seamless interoperability\ + \ between C++\n and the Python programming language." license: Not confirmed name: Boost.Python offers: @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Boost.Python/1.82.0-GCC-12.3.0'', ''Boost.Python/1.83.0-GCC-13.2.0'']' + softwareVersion: '[''1.83.0'', ''1.82.0'']' url: https://boostorg.github.io/python --- +# Boost.Python -Boost.Python -============ +Boost.Python is a C++ library which enables seamless interoperability between C++ + and the Python programming language. -Boost.Python is a C++ library which enables seamless interoperability between C++ and the Python programming language. +homepage: [https://boostorg.github.io/python](https://boostorg.github.io/python) -https://boostorg.github.io/python -# Available modules +## Available installations -The overview below shows which Boost.Python installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Boost.Python, load one of these modules using a `module load` command like: - -```shell -module load Boost.Python/1.83.0-GCC-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Boost.Python/1.83.0-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Boost.Python/1.82.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Boost.Python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.83.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Boost.Python/1.83.0-GCC-13.2.0`| +|1.82.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Boost.Python/1.82.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Boost.md b/docs/available_software/detail/Boost.md index 683319c41a..7bd1eede3a 100644 --- a/docs/available_software/detail/Boost.md +++ b/docs/available_software/detail/Boost.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,32 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Boost/1.81.0-GCC-12.2.0'', ''Boost/1.82.0-GCC-12.3.0'', ''Boost/1.83.0-GCC-13.2.0'']' + softwareVersion: '[''1.88.0'', ''1.85.0'', ''1.83.0'', ''1.82.0'', ''1.81.0'']' url: https://www.boost.org/ --- - -Boost -===== +# Boost Boost provides free peer-reviewed portable C++ source libraries. -https://www.boost.org/ -# Available modules - - -The overview below shows which Boost installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Boost, load one of these modules using a `module load` command like: +homepage: [https://www.boost.org/](https://www.boost.org/) -```shell -module load Boost/1.83.0-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Boost/1.83.0-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Boost/1.82.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Boost/1.81.0-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Boost version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.88.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Boost/1.88.0-GCC-14.3.0`| +|1.88.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Boost/1.88.0-GCC-14.2.0`| +|1.85.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Boost/1.85.0-GCC-13.3.0`| +|1.83.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Boost/1.83.0-GCC-13.2.0`| +|1.82.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Boost/1.82.0-GCC-12.3.0`| +|1.81.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Boost/1.81.0-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Bowtie2.md b/docs/available_software/detail/Bowtie2.md index a6909295f2..efa16dbc94 100644 --- a/docs/available_software/detail/Bowtie2.md +++ b/docs/available_software/detail/Bowtie2.md @@ -1,17 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing - reads to long reference sequences. It is particularly good at aligning reads of - about 50 up to 100s or 1,000s of characters, and particularly good at aligning - to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the genome with - an FM Index to keep its memory footprint small: for the human genome, its memory - footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end - alignment modes.' + description: " Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing\ + \ reads\n to long reference sequences. It is particularly good at aligning reads\ + \ of about 50 up to 100s or 1,000s\n of characters, and particularly good at aligning\ + \ to relatively long (e.g. mammalian) genomes.\n Bowtie 2 indexes the genome with\ + \ an FM Index to keep its memory footprint small: for the human genome,\n its\ + \ memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local,\ + \ and paired-end alignment modes." license: Not confirmed name: Bowtie2 offers: @@ -30,30 +28,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Bowtie2/2.5.1-GCC-12.2.0'']' + softwareVersion: '[''2.5.1'']' url: https://bowtie-bio.sourceforge.net/bowtie2/index.shtml --- +# Bowtie2 -Bowtie2 -======= + Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads + to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s + of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. + Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, + its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes. -Bowtie 2 is an ultrafast and memory-efficient tool for aligning sequencing reads to long reference sequences. It is particularly good at aligning reads of about 50 up to 100s or 1,000s of characters, and particularly good at aligning to relatively long (e.g. mammalian) genomes. Bowtie 2 indexes the genome with an FM Index to keep its memory footprint small: for the human genome, its memory footprint is typically around 3.2 GB. Bowtie 2 supports gapped, local, and paired-end alignment modes. +homepage: [https://bowtie-bio.sourceforge.net/bowtie2/index.shtml](https://bowtie-bio.sourceforge.net/bowtie2/index.shtml) -https://bowtie-bio.sourceforge.net/bowtie2/index.shtml -# Available modules +## Available installations -The overview below shows which Bowtie2 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Bowtie2, load one of these modules using a `module load` command like: - -```shell -module load Bowtie2/2.5.1-GCC-12.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Bowtie2/2.5.1-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Bowtie2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Bowtie2/2.5.1-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Brotli.md b/docs/available_software/detail/Brotli.md index 9171985bf0..18711ca12c 100644 --- a/docs/available_software/detail/Brotli.md +++ b/docs/available_software/detail/Brotli.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Brotli is a generic-purpose lossless compression algorithm that compresses - data using a combination of a modern variant of the LZ77 algorithm, Huffman coding - and 2nd order context modeling, with a compression ratio comparable to the best - currently available general-purpose compression methods. It is similar in speed - with deflate but offers more dense compression.The specification of the Brotli - Compressed Data Format is defined in RFC 7932. + description: "Brotli is a generic-purpose lossless compression algorithm that compresses\ + \ data using a combination\n of a modern variant of the LZ77 algorithm, Huffman\ + \ coding and 2nd order context modeling, with a compression ratio\n comparable\ + \ to the best currently available general-purpose compression methods. It is similar\ + \ in speed with deflate\n but offers more dense compression.\nThe specification\ + \ of the Brotli Compressed Data Format is defined in RFC 7932." license: Not confirmed name: Brotli offers: @@ -29,33 +27,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Brotli/1.0.9-GCCcore-12.2.0'', ''Brotli/1.0.9-GCCcore-12.3.0'', - ''Brotli/1.1.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.1.0'', ''1.0.9'']' url: https://github.com/google/brotli --- +# Brotli -Brotli -====== +Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination + of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio + comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate + but offers more dense compression. +The specification of the Brotli Compressed Data Format is defined in RFC 7932. -Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression.The specification of the Brotli Compressed Data Format is defined in RFC 7932. +homepage: [https://github.com/google/brotli](https://github.com/google/brotli) -https://github.com/google/brotli -# Available modules +## Available installations -The overview below shows which Brotli installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Brotli, load one of these modules using a `module load` command like: - -```shell -module load Brotli/1.1.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Brotli/1.1.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Brotli/1.0.9-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Brotli/1.0.9-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Brotli version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Brotli/1.1.0-GCCcore-14.3.0`| +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Brotli/1.1.0-GCCcore-14.2.0`| +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Brotli/1.1.0-GCCcore-13.3.0`| +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Brotli/1.1.0-GCCcore-13.2.0`| +|1.0.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Brotli/1.0.9-GCCcore-12.3.0`| +|1.0.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Brotli/1.0.9-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Brunsli.md b/docs/available_software/detail/Brunsli.md index 1f8cc86b2f..d0bc541eb3 100644 --- a/docs/available_software/detail/Brunsli.md +++ b/docs/available_software/detail/Brunsli.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Brunsli/0.1-GCCcore-12.2.0'', ''Brunsli/0.1-GCCcore-12.3.0'', - ''Brunsli/0.1-GCCcore-13.2.0'']' + softwareVersion: '[''0.1'']' url: https://github.com/google/brunsli/ --- - -Brunsli -======= +# Brunsli Brunsli is a lossless JPEG repacking library. -https://github.com/google/brunsli/ -# Available modules - - -The overview below shows which Brunsli installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Brunsli, load one of these modules using a `module load` command like: +homepage: [https://github.com/google/brunsli/](https://github.com/google/brunsli/) -```shell -module load Brunsli/0.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Brunsli/0.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Brunsli/0.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Brunsli/0.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Brunsli version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Brunsli/0.1-GCCcore-13.3.0`| +|0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Brunsli/0.1-GCCcore-13.2.0`| +|0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Brunsli/0.1-GCCcore-12.3.0`| +|0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Brunsli/0.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/CD-HIT.md b/docs/available_software/detail/CD-HIT.md index aea4b84c6f..3c127b48e3 100644 --- a/docs/available_software/detail/CD-HIT.md +++ b/docs/available_software/detail/CD-HIT.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: CD-HIT is a very widely used program for clustering and comparing - protein or nucleotide sequences. + description: " CD-HIT is a very widely used program for clustering and \n comparing\ + \ protein or nucleotide sequences." license: Not confirmed name: CD-HIT offers: @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CD-HIT/4.8.1-GCC-12.2.0'']' + softwareVersion: '[''4.8.1'']' url: http://weizhongli-lab.org/cd-hit/ --- +# CD-HIT -CD-HIT -====== + CD-HIT is a very widely used program for clustering and + comparing protein or nucleotide sequences. -CD-HIT is a very widely used program for clustering and comparing protein or nucleotide sequences. +homepage: [http://weizhongli-lab.org/cd-hit/](http://weizhongli-lab.org/cd-hit/) -http://weizhongli-lab.org/cd-hit/ -# Available modules +## Available installations -The overview below shows which CD-HIT installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using CD-HIT, load one of these modules using a `module load` command like: - -```shell -module load CD-HIT/4.8.1-GCC-12.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CD-HIT/4.8.1-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CD-HIT version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CD-HIT/4.8.1-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/CDO.md b/docs/available_software/detail/CDO.md index f15ac833ad..6f82aafeee 100644 --- a/docs/available_software/detail/CDO.md +++ b/docs/available_software/detail/CDO.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,31 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CDO/2.2.2-gompi-2023a'', ''CDO/2.2.2-gompi-2023b'']' + softwareVersion: '[''2.2.2'']' url: https://code.zmaw.de/projects/cdo --- - -CDO -=== +# CDO CDO is a collection of command line Operators to manipulate and analyse Climate and NWP model Data. -https://code.zmaw.de/projects/cdo -# Available modules - - -The overview below shows which CDO installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using CDO, load one of these modules using a `module load` command like: +homepage: [https://code.zmaw.de/projects/cdo](https://code.zmaw.de/projects/cdo) -```shell -module load CDO/2.2.2-gompi-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CDO/2.2.2-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|CDO/2.2.2-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CDO version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CDO/2.2.2-gompi-2023b`| +|2.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CDO/2.2.2-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/CFITSIO.md b/docs/available_software/detail/CFITSIO.md index 1e9595c48e..c8828c4df9 100644 --- a/docs/available_software/detail/CFITSIO.md +++ b/docs/available_software/detail/CFITSIO.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: CFITSIO is a library of C and Fortran subroutines for reading and writing - data files inFITS (Flexible Image Transport System) data format. + description: 'CFITSIO is a library of C and Fortran subroutines for reading and + writing data files in + + FITS (Flexible Image Transport System) data format.' license: Not confirmed name: CFITSIO offers: @@ -25,33 +25,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CFITSIO/4.2.0-GCCcore-12.2.0'', ''CFITSIO/4.3.0-GCCcore-12.3.0'', - ''CFITSIO/4.3.1-GCCcore-13.2.0'']' + softwareVersion: '[''4.4.1'', ''4.3.1'', ''4.3.0'', ''4.2.0'']' url: https://heasarc.gsfc.nasa.gov/fitsio/ --- - -CFITSIO -======= - - -CFITSIO is a library of C and Fortran subroutines for reading and writing data files inFITS (Flexible Image Transport System) data format. - -https://heasarc.gsfc.nasa.gov/fitsio/ -# Available modules +# CFITSIO -The overview below shows which CFITSIO installations are available per target architecture in EESSI, ordered based on software version (new to old). +CFITSIO is a library of C and Fortran subroutines for reading and writing data files in +FITS (Flexible Image Transport System) data format. -To start using CFITSIO, load one of these modules using a `module load` command like: +homepage: [https://heasarc.gsfc.nasa.gov/fitsio/](https://heasarc.gsfc.nasa.gov/fitsio/) -```shell -module load CFITSIO/4.3.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CFITSIO/4.3.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|CFITSIO/4.3.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|CFITSIO/4.2.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CFITSIO version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`CFITSIO/4.4.1-GCCcore-13.3.0`| +|4.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CFITSIO/4.3.1-GCCcore-13.2.0`| +|4.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CFITSIO/4.3.0-GCCcore-12.3.0`| +|4.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CFITSIO/4.2.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/CGAL.md b/docs/available_software/detail/CGAL.md index e8e2d2d733..2e04f510b7 100644 --- a/docs/available_software/detail/CGAL.md +++ b/docs/available_software/detail/CGAL.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The goal of the CGAL Open Source Project is to provide easy access - to efficient and reliable geometric algorithms in the form of a C++ library. + description: "The goal of the CGAL Open Source Project is to provide easy access\ + \ to efficient\n and reliable geometric algorithms in the form of a C++ library." license: Not confirmed name: CGAL offers: @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CGAL/5.5.2-GCCcore-12.2.0'', ''CGAL/5.6-GCCcore-12.3.0'']' + softwareVersion: '[''5.6'', ''5.5.2'']' url: https://www.cgal.org/ --- +# CGAL -CGAL -==== +The goal of the CGAL Open Source Project is to provide easy access to efficient + and reliable geometric algorithms in the form of a C++ library. -The goal of the CGAL Open Source Project is to provide easy access to efficient and reliable geometric algorithms in the form of a C++ library. +homepage: [https://www.cgal.org/](https://www.cgal.org/) -https://www.cgal.org/ -# Available modules +## Available installations -The overview below shows which CGAL installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using CGAL, load one of these modules using a `module load` command like: - -```shell -module load CGAL/5.6-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CGAL/5.6-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|CGAL/5.5.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CGAL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CGAL/5.6-GCCcore-12.3.0`| +|5.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CGAL/5.5.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/CMake.md b/docs/available_software/detail/CMake.md index 298b32f4e2..7c72652a90 100644 --- a/docs/available_software/detail/CMake.md +++ b/docs/available_software/detail/CMake.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: CMake, the cross-platform, open-source build system. CMake is a family - of tools designed to build, test and package software. + description: "\n CMake, the cross-platform, open-source build system. CMake is\ + \ a family of\n tools designed to build, test and package software.\n" license: Not confirmed name: CMake offers: @@ -25,34 +23,30 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CMake/3.18.4'', ''CMake/3.24.3-GCCcore-12.2.0'', ''CMake/3.26.3-GCCcore-12.3.0'', - ''CMake/3.27.6-GCCcore-13.2.0'']' + softwareVersion: '[''4.0.3'', ''3.31.8'', ''3.31.3'', ''3.29.3'', ''3.27.6'', ''3.26.3'', + ''3.24.3'', ''3.18.4'']' url: https://www.cmake.org --- +# CMake -CMake -===== -CMake, the cross-platform, open-source build system. CMake is a family of tools designed to build, test and package software. + CMake, the cross-platform, open-source build system. CMake is a family of + tools designed to build, test and package software. -https://www.cmake.org -# Available modules +homepage: [https://www.cmake.org](https://www.cmake.org) -The overview below shows which CMake installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using CMake, load one of these modules using a `module load` command like: -```shell -module load CMake/3.27.6-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CMake/3.27.6-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|CMake/3.26.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|CMake/3.24.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|CMake/3.18.4|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CMake version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`CMake/4.0.3-GCCcore-14.3.0`| +|3.31.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`CMake/3.31.8-GCCcore-14.3.0`| +|3.31.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`CMake/3.31.3-GCCcore-14.2.0`| +|3.29.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`CMake/3.29.3-GCCcore-13.3.0`| +|3.27.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CMake/3.27.6-GCCcore-13.2.0`| +|3.26.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CMake/3.26.3-GCCcore-12.3.0`| +|3.24.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CMake/3.24.3-GCCcore-12.2.0`| +|3.18.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CMake/3.18.4`| \ No newline at end of file diff --git a/docs/available_software/detail/CP2K.md b/docs/available_software/detail/CP2K.md index ff931daf2d..8f043f33ac 100644 --- a/docs/available_software/detail/CP2K.md +++ b/docs/available_software/detail/CP2K.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: CP2K is a freely available (GPL) program, written in Fortran 95, to - perform atomistic and molecular simulations of solid state, liquid, molecular - and biological systems. It provides a general framework for different methods - such as e.g. density functional theory (DFT) using a mixed Gaussian and plane - waves approach (GPW), and classical pair and many-body potentials. + description: "CP2K is a freely available (GPL) program, written in Fortran 95, to\ + \ perform atomistic and molecular\n simulations of solid state, liquid, molecular\ + \ and biological systems. It provides a general framework for different\n methods\ + \ such as e.g. density functional theory (DFT) using a mixed Gaussian and plane\ + \ waves approach (GPW), and\n classical pair and many-body potentials. " license: Not confirmed name: CP2K offers: @@ -28,30 +26,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CP2K/2023.1-foss-2023a'']' + softwareVersion: '[''2023.1'']' url: https://www.cp2k.org/ --- +# CP2K -CP2K -==== +CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular + simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different + methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and + classical pair and many-body potentials. -CP2K is a freely available (GPL) program, written in Fortran 95, to perform atomistic and molecular simulations of solid state, liquid, molecular and biological systems. It provides a general framework for different methods such as e.g. density functional theory (DFT) using a mixed Gaussian and plane waves approach (GPW), and classical pair and many-body potentials. +homepage: [https://www.cp2k.org/](https://www.cp2k.org/) -https://www.cp2k.org/ -# Available modules +## Available installations -The overview below shows which CP2K installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using CP2K, load one of these modules using a `module load` command like: - -```shell -module load CP2K/2023.1-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CP2K/2023.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CP2K version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2023.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CP2K/2023.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/CUDA-Samples.md b/docs/available_software/detail/CUDA-Samples.md new file mode 100644 index 0000000000..35072a2c72 --- /dev/null +++ b/docs/available_software/detail/CUDA-Samples.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Samples for CUDA Developers which demonstrates features in CUDA Toolkit + license: Not confirmed + name: CUDA-Samples + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''12.1'']' + url: https://github.com/NVIDIA/cuda-samples +--- +# CUDA-Samples + + +Samples for CUDA Developers which demonstrates features in CUDA Toolkit + +homepage: [https://github.com/NVIDIA/cuda-samples](https://github.com/NVIDIA/cuda-samples) + +## Available installations + + +|CUDA-Samples version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|12.1|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`CUDA-Samples/12.1-GCC-12.3.0-CUDA-12.1.1`| \ No newline at end of file diff --git a/docs/available_software/detail/CUnit.md b/docs/available_software/detail/CUnit.md index 9829d86941..e591bef6b9 100644 --- a/docs/available_software/detail/CUnit.md +++ b/docs/available_software/detail/CUnit.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CUnit/2.1-3-GCCcore-12.3.0'']' + softwareVersion: '[''2.1-3'']' url: https://sourceforge.net/projects/cunit/ --- - -CUnit -===== +# CUnit Automated testing framework for C. -https://sourceforge.net/projects/cunit/ -# Available modules - - -The overview below shows which CUnit installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using CUnit, load one of these modules using a `module load` command like: +homepage: [https://sourceforge.net/projects/cunit/](https://sourceforge.net/projects/cunit/) -```shell -module load CUnit/2.1-3-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CUnit/2.1-3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CUnit version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1-3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CUnit/2.1-3-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/CapnProto.md b/docs/available_software/detail/CapnProto.md index a0c625b94a..ec58c6adb2 100644 --- a/docs/available_software/detail/CapnProto.md +++ b/docs/available_software/detail/CapnProto.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,31 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CapnProto/0.10.3-GCCcore-12.2.0'', ''CapnProto/1.0.1-GCCcore-12.3.0'']' + softwareVersion: '[''1.0.1'', ''0.10.3'']' url: https://capnproto.org --- - -CapnProto -========= +# CapnProto Cap’n Proto is an insanely fast data interchange format and capability-based RPC system. -https://capnproto.org -# Available modules - - -The overview below shows which CapnProto installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using CapnProto, load one of these modules using a `module load` command like: +homepage: [https://capnproto.org](https://capnproto.org) -```shell -module load CapnProto/1.0.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CapnProto/1.0.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|CapnProto/0.10.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CapnProto version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CapnProto/1.0.1-GCCcore-12.3.0`| +|0.10.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CapnProto/0.10.3-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Cartopy.md b/docs/available_software/detail/Cartopy.md index ae3d69acc5..c524d13877 100644 --- a/docs/available_software/detail/Cartopy.md +++ b/docs/available_software/detail/Cartopy.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,37 +23,59 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Cartopy/0.22.0-foss-2023a'']' + softwareVersion: '[''0.22.0'']' url: https://scitools.org.uk/cartopy/docs/latest/ --- - -Cartopy -======= +# Cartopy Cartopy is a Python package designed to make drawing maps for data analysis and visualisation easy. -https://scitools.org.uk/cartopy/docs/latest/ -# Available modules +homepage: [https://scitools.org.uk/cartopy/docs/latest/](https://scitools.org.uk/cartopy/docs/latest/) + +## Available installations + + +|Cartopy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.22.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Cartopy/0.22.0-foss-2023a`| + +## Extensions + +Overview of extensions included in Cartopy installations + + +### Cartopy + + +|`Cartopy` version|Cartopy modules that include it| +| --- | --- | +|0.22.0|`Cartopy/0.22.0-foss-2023a`| + +### OWSLib + +|`OWSLib` version|Cartopy modules that include it| +| --- | --- | +|0.29.3|`Cartopy/0.22.0-foss-2023a`| -The overview below shows which Cartopy installations are available per target architecture in EESSI, ordered based on software version (new to old). +### pyepsg -To start using Cartopy, load one of these modules using a `module load` command like: -```shell -module load Cartopy/0.22.0-foss-2023a -``` +|`pyepsg` version|Cartopy modules that include it| +| --- | --- | +|0.4.0|`Cartopy/0.22.0-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### pykdtree -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Cartopy/0.22.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`pykdtree` version|Cartopy modules that include it| +| --- | --- | +|1.3.10|`Cartopy/0.22.0-foss-2023a`| -### Cartopy/0.22.0-foss-2023a +### pyshp -This is a list of extensions included in the module: -Cartopy-0.22.0, OWSLib-0.29.3, pyepsg-0.4.0, pykdtree-1.3.10, pyshp-2.3.1 \ No newline at end of file +|`pyshp` version|Cartopy modules that include it| +| --- | --- | +|2.3.1|`Cartopy/0.22.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Cassiopeia.md b/docs/available_software/detail/Cassiopeia.md index fa5d6a7fb5..8f795f47de 100644 --- a/docs/available_software/detail/Cassiopeia.md +++ b/docs/available_software/detail/Cassiopeia.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,206 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Cassiopeia/2.0.0-foss-2023a'']' + softwareVersion: '[''2.0.0'']' url: https://github.com/YosefLab/Cassiopeia --- - -Cassiopeia -========== +# Cassiopeia A Package for Cas9-Enabled Single Cell Lineage Tracing Tree Reconstruction. -https://github.com/YosefLab/Cassiopeia -# Available modules +homepage: [https://github.com/YosefLab/Cassiopeia](https://github.com/YosefLab/Cassiopeia) + +## Available installations + + +|Cassiopeia version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Cassiopeia/2.0.0-foss-2023a`| + +## Extensions + +Overview of extensions included in Cassiopeia installations + + +### bleach + + +|`bleach` version|Cassiopeia modules that include it| +| --- | --- | +|6.1.0|`Cassiopeia/2.0.0-foss-2023a`| + +### Cassiopeia + + +|`Cassiopeia` version|Cassiopeia modules that include it| +| --- | --- | +|2.0.0|`Cassiopeia/2.0.0-foss-2023a`| + +### comm + + +|`comm` version|Cassiopeia modules that include it| +| --- | --- | +|0.2.2|`Cassiopeia/2.0.0-foss-2023a`| + +### defusedxml + + +|`defusedxml` version|Cassiopeia modules that include it| +| --- | --- | +|0.7.1|`Cassiopeia/2.0.0-foss-2023a`| + +### deprecation + + +|`deprecation` version|Cassiopeia modules that include it| +| --- | --- | +|2.1.0|`Cassiopeia/2.0.0-foss-2023a`| + +### fastjsonschema + + +|`fastjsonschema` version|Cassiopeia modules that include it| +| --- | --- | +|2.19.1|`Cassiopeia/2.0.0-foss-2023a`| + +### hits + + +|`hits` version|Cassiopeia modules that include it| +| --- | --- | +|0.4.0|`Cassiopeia/2.0.0-foss-2023a`| + +### ipywidgets + + +|`ipywidgets` version|Cassiopeia modules that include it| +| --- | --- | +|8.1.2|`Cassiopeia/2.0.0-foss-2023a`| + +### itolapi + + +|`itolapi` version|Cassiopeia modules that include it| +| --- | --- | +|4.1.4|`Cassiopeia/2.0.0-foss-2023a`| + +### jupyter_client + + +|`jupyter_client` version|Cassiopeia modules that include it| +| --- | --- | +|8.6.1|`Cassiopeia/2.0.0-foss-2023a`| + +### jupyter_core + + +|`jupyter_core` version|Cassiopeia modules that include it| +| --- | --- | +|5.7.2|`Cassiopeia/2.0.0-foss-2023a`| + +### jupyter_packaging + + +|`jupyter_packaging` version|Cassiopeia modules that include it| +| --- | --- | +|0.12.3|`Cassiopeia/2.0.0-foss-2023a`| + +### jupyterlab_pygments + + +|`jupyterlab_pygments` version|Cassiopeia modules that include it| +| --- | --- | +|0.3.0|`Cassiopeia/2.0.0-foss-2023a`| + +### jupyterlab_widgets + + +|`jupyterlab_widgets` version|Cassiopeia modules that include it| +| --- | --- | +|3.0.10|`Cassiopeia/2.0.0-foss-2023a`| + +### Levenshtein + + +|`Levenshtein` version|Cassiopeia modules that include it| +| --- | --- | +|0.22.0|`Cassiopeia/2.0.0-foss-2023a`| + +### mistune + + +|`mistune` version|Cassiopeia modules that include it| +| --- | --- | +|3.0.2|`Cassiopeia/2.0.0-foss-2023a`| + +### nbclient + + +|`nbclient` version|Cassiopeia modules that include it| +| --- | --- | +|0.10.0|`Cassiopeia/2.0.0-foss-2023a`| + +### nbconvert + + +|`nbconvert` version|Cassiopeia modules that include it| +| --- | --- | +|7.16.3|`Cassiopeia/2.0.0-foss-2023a`| + +### nbformat + + +|`nbformat` version|Cassiopeia modules that include it| +| --- | --- | +|5.10.3|`Cassiopeia/2.0.0-foss-2023a`| + +### ngs-tools + + +|`ngs-tools` version|Cassiopeia modules that include it| +| --- | --- | +|1.8.5|`Cassiopeia/2.0.0-foss-2023a`| + +### pandocfilters + + +|`pandocfilters` version|Cassiopeia modules that include it| +| --- | --- | +|1.5.1|`Cassiopeia/2.0.0-foss-2023a`| + +### python-Levenshtein + + +|`python-Levenshtein` version|Cassiopeia modules that include it| +| --- | --- | +|0.22.0|`Cassiopeia/2.0.0-foss-2023a`| + +### shortuuid + +|`shortuuid` version|Cassiopeia modules that include it| +| --- | --- | +|1.0.13|`Cassiopeia/2.0.0-foss-2023a`| -The overview below shows which Cassiopeia installations are available per target architecture in EESSI, ordered based on software version (new to old). +### tinycss2 -To start using Cassiopeia, load one of these modules using a `module load` command like: -```shell -module load Cassiopeia/2.0.0-foss-2023a -``` +|`tinycss2` version|Cassiopeia modules that include it| +| --- | --- | +|1.2.1|`Cassiopeia/2.0.0-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### traitlets -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Cassiopeia/2.0.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`traitlets` version|Cassiopeia modules that include it| +| --- | --- | +|5.14.2|`Cassiopeia/2.0.0-foss-2023a`| -### Cassiopeia/2.0.0-foss-2023a +### widgetsnbextension -This is a list of extensions included in the module: -bleach-6.1.0, Cassiopeia-2.0.0, comm-0.2.2, defusedxml-0.7.1, deprecation-2.1.0, fastjsonschema-2.19.1, hits-0.4.0, ipywidgets-8.1.2, itolapi-4.1.4, jupyter_client-8.6.1, jupyter_core-5.7.2, jupyter_packaging-0.12.3, jupyterlab_pygments-0.3.0, jupyterlab_widgets-3.0.10, Levenshtein-0.22.0, mistune-3.0.2, nbclient-0.10.0, nbconvert-7.16.3, nbformat-5.10.3, ngs-tools-1.8.5, pandocfilters-1.5.1, python-Levenshtein-0.22.0, shortuuid-1.0.13, tinycss2-1.2.1, traitlets-5.14.2, widgetsnbextension-4.0.10 \ No newline at end of file +|`widgetsnbextension` version|Cassiopeia modules that include it| +| --- | --- | +|4.0.10|`Cassiopeia/2.0.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Catch2.md b/docs/available_software/detail/Catch2.md index 55243526ca..243f7456d1 100644 --- a/docs/available_software/detail/Catch2.md +++ b/docs/available_software/detail/Catch2.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A modern, C++-native, header-only, test framework for unit-tests, TDD - and BDD - using C++11, C++14, C++17 and later + description: "A modern, C++-native, header-only,\n test framework for unit-tests,\ + \ TDD and BDD\n - using C++11, C++14, C++17 and later\n" license: Not confirmed name: Catch2 offers: @@ -25,33 +23,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Catch2/2.13.9-GCCcore-12.2.0'', ''Catch2/2.13.9-GCCcore-12.3.0'', - ''Catch2/2.13.9-GCCcore-13.2.0'']' + softwareVersion: '[''3.8.1'', ''2.13.10'', ''2.13.9'']' url: https://github.com/catchorg/Catch2 --- +# Catch2 -Catch2 -====== +A modern, C++-native, header-only, + test framework for unit-tests, TDD and BDD + - using C++11, C++14, C++17 and later -A modern, C++-native, header-only, test framework for unit-tests, TDD and BDD - using C++11, C++14, C++17 and later -https://github.com/catchorg/Catch2 -# Available modules +homepage: [https://github.com/catchorg/Catch2](https://github.com/catchorg/Catch2) +## Available installations -The overview below shows which Catch2 installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using Catch2, load one of these modules using a `module load` command like: - -```shell -module load Catch2/2.13.9-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Catch2/2.13.9-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Catch2/2.13.9-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Catch2/2.13.9-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Catch2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Catch2/3.8.1-GCCcore-14.2.0`| +|2.13.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Catch2/2.13.10-GCCcore-14.3.0`| +|2.13.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Catch2/2.13.10-GCCcore-14.2.0`| +|2.13.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Catch2/2.13.10-GCCcore-13.3.0`| +|2.13.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Catch2/2.13.9-GCCcore-13.2.0`| +|2.13.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Catch2/2.13.9-GCCcore-12.3.0`| +|2.13.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Catch2/2.13.9-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Cbc.md b/docs/available_software/detail/Cbc.md index 3c511486a8..a893dc6a9b 100644 --- a/docs/available_software/detail/Cbc.md +++ b/docs/available_software/detail/Cbc.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Cbc (Coin-or branch and cut) is an open-source mixed integer linear - programmingsolver written in C++. It can be used as a callable library or using - astand-alone executable. + description: 'Cbc (Coin-or branch and cut) is an open-source mixed integer linear + programming + + solver written in C++. It can be used as a callable library or using a + + stand-alone executable.' license: Not confirmed name: Cbc offers: @@ -26,31 +27,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Cbc/2.10.11-foss-2023a'', ''Cbc/2.10.11-foss-2023b'']' + softwareVersion: '[''2.10.12'', ''2.10.11'']' url: https://github.com/coin-or/Cbc --- - -Cbc -=== - - -Cbc (Coin-or branch and cut) is an open-source mixed integer linear programmingsolver written in C++. It can be used as a callable library or using astand-alone executable. - -https://github.com/coin-or/Cbc -# Available modules +# Cbc -The overview below shows which Cbc installations are available per target architecture in EESSI, ordered based on software version (new to old). +Cbc (Coin-or branch and cut) is an open-source mixed integer linear programming +solver written in C++. It can be used as a callable library or using a +stand-alone executable. -To start using Cbc, load one of these modules using a `module load` command like: +homepage: [https://github.com/coin-or/Cbc](https://github.com/coin-or/Cbc) -```shell -module load Cbc/2.10.11-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Cbc/2.10.11-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Cbc/2.10.11-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Cbc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.10.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Cbc/2.10.12-foss-2024a`| +|2.10.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Cbc/2.10.11-foss-2023b`| +|2.10.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Cbc/2.10.11-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Cereal.md b/docs/available_software/detail/Cereal.md index 0ae39535ff..5097769178 100644 --- a/docs/available_software/detail/Cereal.md +++ b/docs/available_software/detail/Cereal.md @@ -1,15 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: cereal is a header-only C++11 serialization library. cereal takes arbitrary - data types and reversiblyturns them into different representations, such as compact - binary encodings, XML, or JSON. cereal was designed to befast, light-weight, and - easy to extend - it has no external dependencies and can be easily bundled with - other code orused standalone. + description: 'cereal is a header-only C++11 serialization library. cereal takes + arbitrary data types and reversibly + + turns them into different representations, such as compact binary encodings, XML, + or JSON. cereal was designed to be + + fast, light-weight, and easy to extend - it has no external dependencies and can + be easily bundled with other code or + + used standalone.' license: Not confirmed name: Cereal offers: @@ -28,30 +31,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Cereal/1.3.2'']' + softwareVersion: '[''1.3.2'']' url: https://uscilab.github.io/cereal/ --- - -Cereal -====== - - -cereal is a header-only C++11 serialization library. cereal takes arbitrary data types and reversiblyturns them into different representations, such as compact binary encodings, XML, or JSON. cereal was designed to befast, light-weight, and easy to extend - it has no external dependencies and can be easily bundled with other code orused standalone. - -https://uscilab.github.io/cereal/ -# Available modules +# Cereal -The overview below shows which Cereal installations are available per target architecture in EESSI, ordered based on software version (new to old). +cereal is a header-only C++11 serialization library. cereal takes arbitrary data types and reversibly +turns them into different representations, such as compact binary encodings, XML, or JSON. cereal was designed to be +fast, light-weight, and easy to extend - it has no external dependencies and can be easily bundled with other code or +used standalone. -To start using Cereal, load one of these modules using a `module load` command like: +homepage: [https://uscilab.github.io/cereal/](https://uscilab.github.io/cereal/) -```shell -module load Cereal/1.3.2 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Cereal/1.3.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Cereal version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Cereal/1.3.2`| \ No newline at end of file diff --git a/docs/available_software/detail/Cgl.md b/docs/available_software/detail/Cgl.md index 80e7b71211..0f406fa286 100644 --- a/docs/available_software/detail/Cgl.md +++ b/docs/available_software/detail/Cgl.md @@ -1,15 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The COIN-OR Cut Generation Library (Cgl) is a collection of cut generators - thatcan be used with other COIN-OR packages that make use of cuts, such as, amongothers, - the linear solver Clp or the mixed integer linear programming solversCbc or BCP. - Cgl uses the abstract class OsiSolverInterface (see Osi) to use orcommunicate - with a solver. It does not directly call a solver. + description: 'The COIN-OR Cut Generation Library (Cgl) is a collection of cut generators + that + + can be used with other COIN-OR packages that make use of cuts, such as, among + + others, the linear solver Clp or the mixed integer linear programming solvers + + Cbc or BCP. Cgl uses the abstract class OsiSolverInterface (see Osi) to use or + + communicate with a solver. It does not directly call a solver.' license: Not confirmed name: Cgl offers: @@ -28,31 +31,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Cgl/0.60.8-foss-2023a'', ''Cgl/0.60.8-foss-2023b'']' + softwareVersion: '[''0.60.8'']' url: https://github.com/coin-or/Cgl --- - -Cgl -=== - - -The COIN-OR Cut Generation Library (Cgl) is a collection of cut generators thatcan be used with other COIN-OR packages that make use of cuts, such as, amongothers, the linear solver Clp or the mixed integer linear programming solversCbc or BCP. Cgl uses the abstract class OsiSolverInterface (see Osi) to use orcommunicate with a solver. It does not directly call a solver. - -https://github.com/coin-or/Cgl -# Available modules +# Cgl -The overview below shows which Cgl installations are available per target architecture in EESSI, ordered based on software version (new to old). +The COIN-OR Cut Generation Library (Cgl) is a collection of cut generators that +can be used with other COIN-OR packages that make use of cuts, such as, among +others, the linear solver Clp or the mixed integer linear programming solvers +Cbc or BCP. Cgl uses the abstract class OsiSolverInterface (see Osi) to use or +communicate with a solver. It does not directly call a solver. -To start using Cgl, load one of these modules using a `module load` command like: +homepage: [https://github.com/coin-or/Cgl](https://github.com/coin-or/Cgl) -```shell -module load Cgl/0.60.8-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Cgl/0.60.8-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Cgl/0.60.8-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Cgl version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.60.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Cgl/0.60.8-foss-2024a`| +|0.60.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Cgl/0.60.8-foss-2023b`| +|0.60.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Cgl/0.60.8-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Check.md b/docs/available_software/detail/Check.md new file mode 100644 index 0000000000..6f7d2b1ccc --- /dev/null +++ b/docs/available_software/detail/Check.md @@ -0,0 +1,59 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' + + Check is a unit testing framework for C. It features a simple interface for + + defining unit tests, putting little in the way of the developer. Tests are + + run in a separate address space, so both assertion failures and code errors + + that cause segmentation faults or other signals can be caught. Test results + + are reportable in the following: Subunit, TAP, XML, and a generic logging + + format.' + license: Not confirmed + name: Check + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.15.2'']' + url: https://libcheck.github.io/check/ +--- +# Check + + + +Check is a unit testing framework for C. It features a simple interface for +defining unit tests, putting little in the way of the developer. Tests are +run in a separate address space, so both assertion failures and code errors +that cause segmentation faults or other signals can be caught. Test results +are reportable in the following: Subunit, TAP, XML, and a generic logging +format. + +homepage: [https://libcheck.github.io/check/](https://libcheck.github.io/check/) + +## Available installations + + +|Check version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.15.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Check/0.15.2-GCCcore-14.3.0`| +|0.15.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Check/0.15.2-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Clp.md b/docs/available_software/detail/Clp.md index 7755c0ad31..5765fd6823 100644 --- a/docs/available_software/detail/Clp.md +++ b/docs/available_software/detail/Clp.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Clp (Coin-or linear programming) is an open-source linear programming - solver.It is primarily meant to be used as a callable library, but a basic,stand-alone - executable version is also available. + description: 'Clp (Coin-or linear programming) is an open-source linear programming + solver. + + It is primarily meant to be used as a callable library, but a basic, + + stand-alone executable version is also available.' license: Not confirmed name: Clp offers: @@ -26,31 +27,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Clp/1.17.9-foss-2023a'', ''Clp/1.17.9-foss-2023b'']' + softwareVersion: '[''1.17.10'', ''1.17.9'']' url: https://github.com/coin-or/Clp --- - -Clp -=== - - -Clp (Coin-or linear programming) is an open-source linear programming solver.It is primarily meant to be used as a callable library, but a basic,stand-alone executable version is also available. - -https://github.com/coin-or/Clp -# Available modules +# Clp -The overview below shows which Clp installations are available per target architecture in EESSI, ordered based on software version (new to old). +Clp (Coin-or linear programming) is an open-source linear programming solver. +It is primarily meant to be used as a callable library, but a basic, +stand-alone executable version is also available. -To start using Clp, load one of these modules using a `module load` command like: +homepage: [https://github.com/coin-or/Clp](https://github.com/coin-or/Clp) -```shell -module load Clp/1.17.9-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Clp/1.17.9-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Clp/1.17.9-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Clp version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.17.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Clp/1.17.10-foss-2024a`| +|1.17.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Clp/1.17.9-foss-2023b`| +|1.17.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Clp/1.17.9-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/CoinUtils.md b/docs/available_software/detail/CoinUtils.md index 9b49de0ea0..63e58a3965 100644 --- a/docs/available_software/detail/CoinUtils.md +++ b/docs/available_software/detail/CoinUtils.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: CoinUtils (Coin-OR Utilities) is an open-source collection of classes - andfunctions that are generally useful to more than one COIN-OR project. + description: 'CoinUtils (Coin-OR Utilities) is an open-source collection of classes + and + + functions that are generally useful to more than one COIN-OR project.' license: Not confirmed name: CoinUtils offers: @@ -25,31 +25,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CoinUtils/2.11.10-GCC-12.3.0'', ''CoinUtils/2.11.10-GCC-13.2.0'']' + softwareVersion: '[''2.11.12'', ''2.11.10'']' url: https://github.com/coin-or/CoinUtils --- - -CoinUtils -========= - - -CoinUtils (Coin-OR Utilities) is an open-source collection of classes andfunctions that are generally useful to more than one COIN-OR project. - -https://github.com/coin-or/CoinUtils -# Available modules +# CoinUtils -The overview below shows which CoinUtils installations are available per target architecture in EESSI, ordered based on software version (new to old). +CoinUtils (Coin-OR Utilities) is an open-source collection of classes and +functions that are generally useful to more than one COIN-OR project. -To start using CoinUtils, load one of these modules using a `module load` command like: +homepage: [https://github.com/coin-or/CoinUtils](https://github.com/coin-or/CoinUtils) -```shell -module load CoinUtils/2.11.10-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CoinUtils/2.11.10-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|CoinUtils/2.11.10-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CoinUtils version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.11.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`CoinUtils/2.11.12-GCC-13.3.0`| +|2.11.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CoinUtils/2.11.10-GCC-13.2.0`| +|2.11.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CoinUtils/2.11.10-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/CoordgenLibs.md b/docs/available_software/detail/CoordgenLibs.md index 8628011d2e..35b8c6c719 100644 --- a/docs/available_software/detail/CoordgenLibs.md +++ b/docs/available_software/detail/CoordgenLibs.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CoordgenLibs/3.0.2-gompi-2023a'']' + softwareVersion: '[''3.0.2'']' url: https://github.com/schrodinger/coordgenlibs --- - -CoordgenLibs -============ +# CoordgenLibs Schrodinger-developed 2D Coordinate Generation -https://github.com/schrodinger/coordgenlibs -# Available modules - - -The overview below shows which CoordgenLibs installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using CoordgenLibs, load one of these modules using a `module load` command like: +homepage: [https://github.com/schrodinger/coordgenlibs](https://github.com/schrodinger/coordgenlibs) -```shell -module load CoordgenLibs/3.0.2-gompi-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CoordgenLibs/3.0.2-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CoordgenLibs version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CoordgenLibs/3.0.2-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Critic2.md b/docs/available_software/detail/Critic2.md index 7f39a3fdd2..2961d27f92 100644 --- a/docs/available_software/detail/Critic2.md +++ b/docs/available_software/detail/Critic2.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Critic2 is a program for the analysis of quantum mechanicalcalculation - results in molecules and periodic solids. + description: 'Critic2 is a program for the analysis of quantum mechanical + + calculation results in molecules and periodic solids.' license: Not confirmed name: Critic2 offers: @@ -25,30 +24,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Critic2/1.2-foss-2023a'']' + softwareVersion: '[''1.2'']' url: https://aoterodelaroza.github.io/critic2/ --- - -Critic2 -======= - - -Critic2 is a program for the analysis of quantum mechanicalcalculation results in molecules and periodic solids. - -https://aoterodelaroza.github.io/critic2/ -# Available modules +# Critic2 -The overview below shows which Critic2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +Critic2 is a program for the analysis of quantum mechanical +calculation results in molecules and periodic solids. -To start using Critic2, load one of these modules using a `module load` command like: +homepage: [https://aoterodelaroza.github.io/critic2/](https://aoterodelaroza.github.io/critic2/) -```shell -module load Critic2/1.2-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Critic2/1.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Critic2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Critic2/1.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/CubeLib.md b/docs/available_software/detail/CubeLib.md index 40543381c7..1269597594 100644 --- a/docs/available_software/detail/CubeLib.md +++ b/docs/available_software/detail/CubeLib.md @@ -1,17 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Cube, which is used as performance report explorer for Scalasca and - Score-P, is a generic tool for displaying a multi-dimensional performance space - consisting of the dimensions (i) performance metric, (ii) call path, and (iii) - system resource. Each dimension can be represented as a tree, where non-leaf nodes - of the tree can be collapsed or expanded to achieve the desired level of granularity. - This module provides the Cube general purpose C++ library component and command-line - tools. + description: "\n Cube, which is used as performance report explorer for Scalasca\ + \ and Score-P,\n is a generic tool for displaying a multi-dimensional performance\ + \ space\n consisting of the dimensions (i) performance metric, (ii) call path,\ + \ and\n (iii) system resource. Each dimension can be represented as a tree, where\n\ + \ non-leaf nodes of the tree can be collapsed or expanded to achieve the\n desired\ + \ level of granularity.\n\n This module provides the Cube general purpose C++\ + \ library component and\n command-line tools.\n" license: Not confirmed name: CubeLib offers: @@ -30,30 +28,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CubeLib/4.8.2-GCCcore-13.2.0'']' + softwareVersion: '[''4.9.1'', ''4.9'', ''4.8.2'']' url: https://www.scalasca.org/software/cube-4.x/download.html --- +# CubeLib -CubeLib -======= -Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. This module provides the Cube general purpose C++ library component and command-line tools. + Cube, which is used as performance report explorer for Scalasca and Score-P, + is a generic tool for displaying a multi-dimensional performance space + consisting of the dimensions (i) performance metric, (ii) call path, and + (iii) system resource. Each dimension can be represented as a tree, where + non-leaf nodes of the tree can be collapsed or expanded to achieve the + desired level of granularity. -https://www.scalasca.org/software/cube-4.x/download.html -# Available modules + This module provides the Cube general purpose C++ library component and + command-line tools. -The overview below shows which CubeLib installations are available per target architecture in EESSI, ordered based on software version (new to old). +homepage: [https://www.scalasca.org/software/cube-4.x/download.html](https://www.scalasca.org/software/cube-4.x/download.html) -To start using CubeLib, load one of these modules using a `module load` command like: +## Available installations -```shell -module load CubeLib/4.8.2-GCCcore-13.2.0 -``` -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CubeLib/4.8.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CubeLib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`CubeLib/4.9.1-GCCcore-14.3.0`| +|4.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`CubeLib/4.9-GCCcore-14.2.0`| +|4.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CubeLib/4.8.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/CubeWriter.md b/docs/available_software/detail/CubeWriter.md index af493c74ac..a12eba57e2 100644 --- a/docs/available_software/detail/CubeWriter.md +++ b/docs/available_software/detail/CubeWriter.md @@ -1,16 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Cube, which is used as performance report explorer for Scalasca and - Score-P, is a generic tool for displaying a multi-dimensional performance space - consisting of the dimensions (i) performance metric, (ii) call path, and (iii) - system resource. Each dimension can be represented as a tree, where non-leaf nodes - of the tree can be collapsed or expanded to achieve the desired level of granularity. - This module provides the Cube high-performance C writer library component. + description: "\n Cube, which is used as performance report explorer for Scalasca\ + \ and Score-P,\n is a generic tool for displaying a multi-dimensional performance\ + \ space\n consisting of the dimensions (i) performance metric, (ii) call path,\ + \ and\n (iii) system resource. Each dimension can be represented as a tree, where\n\ + \ non-leaf nodes of the tree can be collapsed or expanded to achieve the\n desired\ + \ level of granularity.\n\n This module provides the Cube high-performance C writer\ + \ library component.\n" license: Not confirmed name: CubeWriter offers: @@ -29,30 +28,30 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''CubeWriter/4.8.2-GCCcore-13.2.0'']' + softwareVersion: '[''4.9.1'', ''4.9'', ''4.8.2'']' url: https://www.scalasca.org/software/cube-4.x/download.html --- +# CubeWriter -CubeWriter -========== -Cube, which is used as performance report explorer for Scalasca and Score-P, is a generic tool for displaying a multi-dimensional performance space consisting of the dimensions (i) performance metric, (ii) call path, and (iii) system resource. Each dimension can be represented as a tree, where non-leaf nodes of the tree can be collapsed or expanded to achieve the desired level of granularity. This module provides the Cube high-performance C writer library component. + Cube, which is used as performance report explorer for Scalasca and Score-P, + is a generic tool for displaying a multi-dimensional performance space + consisting of the dimensions (i) performance metric, (ii) call path, and + (iii) system resource. Each dimension can be represented as a tree, where + non-leaf nodes of the tree can be collapsed or expanded to achieve the + desired level of granularity. -https://www.scalasca.org/software/cube-4.x/download.html -# Available modules + This module provides the Cube high-performance C writer library component. -The overview below shows which CubeWriter installations are available per target architecture in EESSI, ordered based on software version (new to old). +homepage: [https://www.scalasca.org/software/cube-4.x/download.html](https://www.scalasca.org/software/cube-4.x/download.html) -To start using CubeWriter, load one of these modules using a `module load` command like: +## Available installations -```shell -module load CubeWriter/4.8.2-GCCcore-13.2.0 -``` -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|CubeWriter/4.8.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|CubeWriter version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`CubeWriter/4.9.1-GCCcore-14.3.0`| +|4.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`CubeWriter/4.9-GCCcore-14.2.0`| +|4.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`CubeWriter/4.8.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Cython.md b/docs/available_software/detail/Cython.md index 1761558270..2e61f13f25 100644 --- a/docs/available_software/detail/Cython.md +++ b/docs/available_software/detail/Cython.md @@ -1,12 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Cython is an optimising static compiler for both the Python programminglanguage - and the extended Cython programming language (based on Pyrex). + description: ' + + Cython is an optimising static compiler for both the Python programming + + language and the extended Cython programming language (based on Pyrex). + + ' license: Not confirmed name: Cython offers: @@ -25,31 +28,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Cython/3.0.8-GCCcore-12.3.0'', ''Cython/3.0.10-GCCcore-13.2.0'']' + softwareVersion: '[''3.2.4'', ''3.1.2'', ''3.1.1'', ''3.0.10'', ''3.0.8'']' url: https://cython.org/ --- +# Cython -Cython -====== - - -Cython is an optimising static compiler for both the Python programminglanguage and the extended Cython programming language (based on Pyrex). -https://cython.org/ -# Available modules +Cython is an optimising static compiler for both the Python programming +language and the extended Cython programming language (based on Pyrex). -The overview below shows which Cython installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using Cython, load one of these modules using a `module load` command like: +homepage: [https://cython.org/](https://cython.org/) -```shell -module load Cython/3.0.10-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Cython/3.0.10-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Cython/3.0.8-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Cython version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Cython/3.2.4-GCCcore-14.3.0`| +|3.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Cython/3.1.2-GCCcore-14.3.0`| +|3.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Cython/3.1.1-GCCcore-14.2.0`| +|3.0.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Cython/3.0.10-GCCcore-13.3.0`| +|3.0.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Cython/3.0.10-GCCcore-13.2.0`| +|3.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Cython/3.0.8-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/DB.md b/docs/available_software/detail/DB.md index 77fd86bfc8..6b00a006a2 100644 --- a/docs/available_software/detail/DB.md +++ b/docs/available_software/detail/DB.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Berkeley DB enables the development of custom data management solutions, - without the overhead traditionally associated with such custom projects. + description: "Berkeley DB enables the development of custom data management\n solutions,\ + \ without the overhead traditionally associated with such custom\n projects." license: Not confirmed name: DB offers: @@ -25,31 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''DB/18.1.40-GCCcore-12.2.0'', ''DB/18.1.40-GCCcore-12.3.0'']' + softwareVersion: '[''18.1.40'']' url: https://www.oracle.com/technetwork/products/berkeleydb --- +# DB -DB -== +Berkeley DB enables the development of custom data management + solutions, without the overhead traditionally associated with such custom + projects. -Berkeley DB enables the development of custom data management solutions, without the overhead traditionally associated with such custom projects. +homepage: [https://www.oracle.com/technetwork/products/berkeleydb](https://www.oracle.com/technetwork/products/berkeleydb) -https://www.oracle.com/technetwork/products/berkeleydb -# Available modules +## Available installations -The overview below shows which DB installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using DB, load one of these modules using a `module load` command like: - -```shell -module load DB/18.1.40-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|DB/18.1.40-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|DB/18.1.40-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|DB version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|18.1.40|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`DB/18.1.40-GCCcore-14.2.0`| +|18.1.40|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`DB/18.1.40-GCCcore-12.3.0`| +|18.1.40|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`DB/18.1.40-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/DB_File.md b/docs/available_software/detail/DB_File.md index 7942ff0833..deab9b275e 100644 --- a/docs/available_software/detail/DB_File.md +++ b/docs/available_software/detail/DB_File.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''DB_File/1.859-GCCcore-12.3.0'']' + softwareVersion: '[''1.859'']' url: https://perldoc.perl.org/DB_File.html --- - -DB_File -======= +# DB_File Perl5 access to Berkeley DB version 1.x. -https://perldoc.perl.org/DB_File.html -# Available modules - - -The overview below shows which DB_File installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using DB_File, load one of these modules using a `module load` command like: +homepage: [https://perldoc.perl.org/DB_File.html](https://perldoc.perl.org/DB_File.html) -```shell -module load DB_File/1.859-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|DB_File/1.859-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|DB_File version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.859|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`DB_File/1.859-GCCcore-14.2.0`| +|1.859|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`DB_File/1.859-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/DIAMOND.md b/docs/available_software/detail/DIAMOND.md index 05622dd6ed..19286d1a94 100644 --- a/docs/available_software/detail/DIAMOND.md +++ b/docs/available_software/detail/DIAMOND.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''DIAMOND/2.1.8-GCC-12.3.0'']' + softwareVersion: '[''2.1.8'']' url: https://github.com/bbuchfink/diamond --- - -DIAMOND -======= +# DIAMOND Accelerated BLAST compatible local sequence aligner -https://github.com/bbuchfink/diamond -# Available modules - - -The overview below shows which DIAMOND installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using DIAMOND, load one of these modules using a `module load` command like: +homepage: [https://github.com/bbuchfink/diamond](https://github.com/bbuchfink/diamond) -```shell -module load DIAMOND/2.1.8-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|DIAMOND/2.1.8-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|DIAMOND version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`DIAMOND/2.1.8-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/DIRAC.md b/docs/available_software/detail/DIRAC.md new file mode 100644 index 0000000000..1d62dabbaf --- /dev/null +++ b/docs/available_software/detail/DIRAC.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'DIRAC: Program for Atomic and Molecular Direct Iterative Relativistic + All-electron Calculations' + license: Not confirmed + name: DIRAC + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''25.0'']' + url: http://www.diracprogram.org +--- +# DIRAC + + +DIRAC: Program for Atomic and Molecular Direct Iterative Relativistic All-electron Calculations + +homepage: [http://www.diracprogram.org](http://www.diracprogram.org) + +## Available installations + + +|DIRAC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|25.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`DIRAC/25.0-foss-2025a`| \ No newline at end of file diff --git a/docs/available_software/detail/DP3.md b/docs/available_software/detail/DP3.md index cb571e5d13..763292f34c 100644 --- a/docs/available_software/detail/DP3.md +++ b/docs/available_software/detail/DP3.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''DP3/6.0-foss-2023b'', ''DP3/6.2-foss-2023b'']' + softwareVersion: '[''6.2'', ''6.0'']' url: https://dp3.readthedocs.io/ --- - -DP3 -=== +# DP3 DP3: streaming processing pipeline for radio interferometric data. -https://dp3.readthedocs.io/ -# Available modules - - -The overview below shows which DP3 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using DP3, load one of these modules using a `module load` command like: +homepage: [https://dp3.readthedocs.io/](https://dp3.readthedocs.io/) -```shell -module load DP3/6.2-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|DP3/6.2-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|DP3/6.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|DP3 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`DP3/6.2-foss-2023b`| +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`DP3/6.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/DendroPy.md b/docs/available_software/detail/DendroPy.md index 0ec899d9cc..efccc894f8 100644 --- a/docs/available_software/detail/DendroPy.md +++ b/docs/available_software/detail/DendroPy.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'A Python library for phylogenetics and phylogenetic computing: reading, - writing, simulation, processing and manipulation of phylogenetic trees (phylogenies) - and characters.' + description: "A Python library for phylogenetics and phylogenetic computing: \n\ + reading, writing, simulation, processing and manipulation of phylogenetic trees\ + \ \n(phylogenies) and characters." license: Not confirmed name: DendroPy offers: @@ -26,31 +24,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''DendroPy/4.5.2-GCCcore-12.2.0'', ''DendroPy/4.6.1-GCCcore-12.3.0'']' + softwareVersion: '[''4.6.1'', ''4.5.2'']' url: https://dendropy.org/ --- +# DendroPy -DendroPy -======== +A Python library for phylogenetics and phylogenetic computing: +reading, writing, simulation, processing and manipulation of phylogenetic trees +(phylogenies) and characters. -A Python library for phylogenetics and phylogenetic computing: reading, writing, simulation, processing and manipulation of phylogenetic trees (phylogenies) and characters. +homepage: [https://dendropy.org/](https://dendropy.org/) -https://dendropy.org/ -# Available modules +## Available installations -The overview below shows which DendroPy installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using DendroPy, load one of these modules using a `module load` command like: - -```shell -module load DendroPy/4.6.1-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|DendroPy/4.6.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|DendroPy/4.5.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|DendroPy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`DendroPy/4.6.1-GCCcore-12.3.0`| +|4.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`DendroPy/4.5.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Deprecated.md b/docs/available_software/detail/Deprecated.md index adc24727ca..e2d6252b6d 100644 --- a/docs/available_software/detail/Deprecated.md +++ b/docs/available_software/detail/Deprecated.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Deprecated/1.2.14-GCCcore-13.2.0'']' + softwareVersion: '[''1.2.18'', ''1.2.14'']' url: https://github.com/tantale/deprecated --- - -Deprecated -========== +# Deprecated If you need to mark a function or a method as deprecated, you can use the @deprecated decorator. -https://github.com/tantale/deprecated -# Available modules - - -The overview below shows which Deprecated installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Deprecated, load one of these modules using a `module load` command like: +homepage: [https://github.com/tantale/deprecated](https://github.com/tantale/deprecated) -```shell -module load Deprecated/1.2.14-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Deprecated/1.2.14-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Deprecated version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Deprecated/1.2.18-gfbf-2024a`| +|1.2.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Deprecated/1.2.14-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Doxygen.md b/docs/available_software/detail/Doxygen.md index 3a14cbf371..bb56323159 100644 --- a/docs/available_software/detail/Doxygen.md +++ b/docs/available_software/detail/Doxygen.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Doxygen is a documentation system for C++, C, Java, Objective-C, Python, - IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent - D. + description: "\n Doxygen is a documentation system for C++, C, Java, Objective-C,\ + \ Python,\n IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to\ + \ some\n extent D.\n" license: Not confirmed name: Doxygen offers: @@ -26,33 +24,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Doxygen/1.9.5-GCCcore-12.2.0'', ''Doxygen/1.9.7-GCCcore-12.3.0'', - ''Doxygen/1.9.8-GCCcore-13.2.0'']' + softwareVersion: '[''1.14.0'', ''1.11.0'', ''1.9.8'', ''1.9.7'', ''1.9.5'']' url: https://www.doxygen.org --- +# Doxygen -Doxygen -======= -Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some extent D. + Doxygen is a documentation system for C++, C, Java, Objective-C, Python, + IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some + extent D. -https://www.doxygen.org -# Available modules +homepage: [https://www.doxygen.org](https://www.doxygen.org) -The overview below shows which Doxygen installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using Doxygen, load one of these modules using a `module load` command like: -```shell -module load Doxygen/1.9.8-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Doxygen/1.9.8-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Doxygen/1.9.7-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Doxygen/1.9.5-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Doxygen version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Doxygen/1.14.0-GCCcore-14.3.0`| +|1.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Doxygen/1.14.0-GCCcore-14.2.0`| +|1.11.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Doxygen/1.11.0-GCCcore-13.3.0`| +|1.9.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Doxygen/1.9.8-GCCcore-13.2.0`| +|1.9.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Doxygen/1.9.7-GCCcore-12.3.0`| +|1.9.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Doxygen/1.9.5-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Dyninst.md b/docs/available_software/detail/Dyninst.md new file mode 100644 index 0000000000..0ca297c55d --- /dev/null +++ b/docs/available_software/detail/Dyninst.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'DyninstAPI: Tools for binary instrumentation, analysis, and modification' + license: Not confirmed + name: Dyninst + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''13.0.0'']' + url: https://github.com/dyninst/dyninst +--- +# Dyninst + + +DyninstAPI: Tools for binary instrumentation, analysis, and modification + +homepage: [https://github.com/dyninst/dyninst](https://github.com/dyninst/dyninst) + +## Available installations + + +|Dyninst version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|13.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Dyninst/13.0.0-GCC-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/EESSI-extend.md b/docs/available_software/detail/EESSI-extend.md index 5c43e9decf..a5714e44a8 100644 --- a/docs/available_software/detail/EESSI-extend.md +++ b/docs/available_software/detail/EESSI-extend.md @@ -1,34 +1,34 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'The goal of the European Environment for Scientific Software Installations - (EESSI, pronounced as "easy") is to build a common stack of scientific software - installations for HPC systems and beyond, including laptops, personal workstations - and cloud infrastructure. This module allows you to extend EESSI using the same - configuration for EasyBuild as EESSI itself uses. A number of environment variables - control the behaviour of the module: - EESSI_USER_INSTALL can be set to a location - to install modules for use by the user only. The location must already exist - on the filesystem. - EESSI_PROJECT_INSTALL can be set to a location to install - modules for use by a project. The location must already exist on the filesystem - and you should ensure that the location has the correct Linux group and the - SGID permission is set on that directory (`chmod g+s $EESSI_PROJECT_INSTALL`) - so that all members of the group have permission to read and write installations. - - EESSI_SITE_INSTALL is either defined or not and cannot be used with another environment - variable. A site installation is done in a defined location and any installations - there are (by default) world readable. - EESSI_CVMFS_INSTALL is either defined - or not and cannot be used with another environment variable. A CVMFS installation - targets a defined location which will be ingested into CVMFS and is only useful - for CVMFS administrators. - If none of the environment variables above are defined, - an EESSI_USER_INSTALL is assumed with a value of $HOME/EESSI If both EESSI_USER_INSTALL - and EESSI_PROJECT_INSTALL are defined, both sets of installations are exposed, - but new installations are created as user installations. Strict installation path - checking is enforced by EESSI for EESSI and site installations involving accelerators. - In these cases, if you wish to create an accelerator installation you must set - the environment variable EESSI_ACCELERATOR_INSTALL (and load/reload this module).' + description: "\n The goal of the European Environment for Scientific Software Installations\n\ + \ (EESSI, pronounced as \"easy\") is to build a common stack of scientific\n software\ + \ installations for HPC systems and beyond, including laptops,\n personal workstations\ + \ and cloud infrastructure.\n\n This module allows you to extend EESSI using the\ + \ same configuration for\n EasyBuild as EESSI itself uses. A number of environment\ + \ variables control the\n behaviour of the module:\n - EESSI_USER_INSTALL can\ + \ be set to a location to install modules for use by\n the user only. The location\ + \ must already exist on the filesystem.\n - EESSI_PROJECT_INSTALL can be set to\ + \ a location to install modules for use by\n a project. The location must already\ + \ exist on the filesystem and you should\n ensure that the location has the\ + \ correct Linux group and the SGID permission\n is set on that directory (`chmod\ + \ g+s $EESSI_PROJECT_INSTALL`) so that all\n members of the group have permission\ + \ to read and write installations.\n - EESSI_SITE_INSTALL is either defined or\ + \ not and cannot be used with another\n environment variable. A site installation\ + \ is done in a defined location and\n any installations there are (by default)\ + \ world readable.\n - EESSI_CVMFS_INSTALL is either defined or not and cannot\ + \ be used with another\n environment variable. A CVMFS installation targets\ + \ a defined location which\n will be ingested into CVMFS and is only useful\ + \ for CVMFS administrators.\n - If none of the environment variables above are\ + \ defined, an EESSI_USER_INSTALL\n is assumed with a value of $HOME/EESSI\n\ + \ If both EESSI_USER_INSTALL and EESSI_PROJECT_INSTALL are defined, both sets\ + \ of\n installations are exposed, but new installations are created as user\n\ + \ installations.\n\n Strict installation path checking is enforced by EESSI for\ + \ EESSI and site\n installations involving accelerators. In these cases, if you\ + \ wish to create an\n accelerator installation you must set the environment variable\n\ + \ EESSI_ACCELERATOR_INSTALL (and load/reload this module).\n" license: Not confirmed name: EESSI-extend offers: @@ -47,30 +47,52 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''EESSI-extend/2023.06-easybuild'']' + softwareVersion: '[''2025.06'', ''2023.06'']' url: https://eessi.io/docs/ --- +# EESSI-extend -EESSI-extend -============ -The goal of the European Environment for Scientific Software Installations (EESSI, pronounced as "easy") is to build a common stack of scientific software installations for HPC systems and beyond, including laptops, personal workstations and cloud infrastructure. This module allows you to extend EESSI using the same configuration for EasyBuild as EESSI itself uses. A number of environment variables control the behaviour of the module: - EESSI_USER_INSTALL can be set to a location to install modules for use by the user only. The location must already exist on the filesystem. - EESSI_PROJECT_INSTALL can be set to a location to install modules for use by a project. The location must already exist on the filesystem and you should ensure that the location has the correct Linux group and the SGID permission is set on that directory (`chmod g+s $EESSI_PROJECT_INSTALL`) so that all members of the group have permission to read and write installations. - EESSI_SITE_INSTALL is either defined or not and cannot be used with another environment variable. A site installation is done in a defined location and any installations there are (by default) world readable. - EESSI_CVMFS_INSTALL is either defined or not and cannot be used with another environment variable. A CVMFS installation targets a defined location which will be ingested into CVMFS and is only useful for CVMFS administrators. - If none of the environment variables above are defined, an EESSI_USER_INSTALL is assumed with a value of $HOME/EESSI If both EESSI_USER_INSTALL and EESSI_PROJECT_INSTALL are defined, both sets of installations are exposed, but new installations are created as user installations. Strict installation path checking is enforced by EESSI for EESSI and site installations involving accelerators. In these cases, if you wish to create an accelerator installation you must set the environment variable EESSI_ACCELERATOR_INSTALL (and load/reload this module). + The goal of the European Environment for Scientific Software Installations + (EESSI, pronounced as "easy") is to build a common stack of scientific + software installations for HPC systems and beyond, including laptops, + personal workstations and cloud infrastructure. -https://eessi.io/docs/ -# Available modules + This module allows you to extend EESSI using the same configuration for + EasyBuild as EESSI itself uses. A number of environment variables control the + behaviour of the module: + - EESSI_USER_INSTALL can be set to a location to install modules for use by + the user only. The location must already exist on the filesystem. + - EESSI_PROJECT_INSTALL can be set to a location to install modules for use by + a project. The location must already exist on the filesystem and you should + ensure that the location has the correct Linux group and the SGID permission + is set on that directory (`chmod g+s $EESSI_PROJECT_INSTALL`) so that all + members of the group have permission to read and write installations. + - EESSI_SITE_INSTALL is either defined or not and cannot be used with another + environment variable. A site installation is done in a defined location and + any installations there are (by default) world readable. + - EESSI_CVMFS_INSTALL is either defined or not and cannot be used with another + environment variable. A CVMFS installation targets a defined location which + will be ingested into CVMFS and is only useful for CVMFS administrators. + - If none of the environment variables above are defined, an EESSI_USER_INSTALL + is assumed with a value of $HOME/EESSI + If both EESSI_USER_INSTALL and EESSI_PROJECT_INSTALL are defined, both sets of + installations are exposed, but new installations are created as user + installations. + Strict installation path checking is enforced by EESSI for EESSI and site + installations involving accelerators. In these cases, if you wish to create an + accelerator installation you must set the environment variable + EESSI_ACCELERATOR_INSTALL (and load/reload this module). -The overview below shows which EESSI-extend installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using EESSI-extend, load one of these modules using a `module load` command like: +homepage: [https://eessi.io/docs/](https://eessi.io/docs/) -```shell -module load EESSI-extend/2023.06-easybuild -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|EESSI-extend/2023.06-easybuild|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|EESSI-extend version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025.06|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`EESSI-extend/2025.06-easybuild`| +|2023.06|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EESSI-extend/2023.06-easybuild`| \ No newline at end of file diff --git a/docs/available_software/detail/ELPA.md b/docs/available_software/detail/ELPA.md index 03bfa6ef60..401854dd9e 100644 --- a/docs/available_software/detail/ELPA.md +++ b/docs/available_software/detail/ELPA.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ELPA/2022.05.001-foss-2022b'', ''ELPA/2023.05.001-foss-2023a'']' + softwareVersion: '[''2025.06.002'', ''2023.05.001'', ''2022.05.001'']' url: https://elpa.mpcdf.mpg.de/ --- - -ELPA -==== +# ELPA Eigenvalue SoLvers for Petaflop-Applications. -https://elpa.mpcdf.mpg.de/ -# Available modules - - -The overview below shows which ELPA installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ELPA, load one of these modules using a `module load` command like: +homepage: [https://elpa.mpcdf.mpg.de/](https://elpa.mpcdf.mpg.de/) -```shell -module load ELPA/2023.05.001-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ELPA/2023.05.001-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ELPA/2022.05.001-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ELPA version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025.06.002|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ELPA/2025.06.002-foss-2025b`| +|2023.05.001|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ELPA/2023.05.001-foss-2023a`| +|2022.05.001|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ELPA/2022.05.001-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/ESMF.md b/docs/available_software/detail/ESMF.md index 99e72652e1..316d31338f 100644 --- a/docs/available_software/detail/ESMF.md +++ b/docs/available_software/detail/ESMF.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Earth System Modeling Framework (ESMF) is a suite of software tools - for developing high-performance, multi-component Earth science modeling applications. + description: "The Earth System Modeling Framework (ESMF) is a suite of software\ + \ tools for developing\n high-performance, multi-component Earth science modeling\ + \ applications." license: Not confirmed name: ESMF offers: @@ -25,31 +24,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ESMF/8.6.0-foss-2023a'', ''ESMF/8.6.1-foss-2023b'']' + softwareVersion: '[''8.6.1'', ''8.6.0'']' url: https://www.earthsystemcog.org/projects/esmf/ --- +# ESMF -ESMF -==== +The Earth System Modeling Framework (ESMF) is a suite of software tools for developing + high-performance, multi-component Earth science modeling applications. -The Earth System Modeling Framework (ESMF) is a suite of software tools for developing high-performance, multi-component Earth science modeling applications. +homepage: [https://www.earthsystemcog.org/projects/esmf/](https://www.earthsystemcog.org/projects/esmf/) -https://www.earthsystemcog.org/projects/esmf/ -# Available modules +## Available installations -The overview below shows which ESMF installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ESMF, load one of these modules using a `module load` command like: - -```shell -module load ESMF/8.6.1-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ESMF/8.6.1-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ESMF/8.6.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ESMF version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ESMF/8.6.1-foss-2023b`| +|8.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ESMF/8.6.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ESMPy.md b/docs/available_software/detail/ESMPy.md index 9e3c969bf8..4ade89d019 100644 --- a/docs/available_software/detail/ESMPy.md +++ b/docs/available_software/detail/ESMPy.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ESMPy/8.6.0-foss-2023a'']' + softwareVersion: '[''8.6.0'']' url: https://earthsystemmodeling.org/esmpy --- - -ESMPy -===== +# ESMPy Earth System Modeling Framework (ESMF) Python Interface -https://earthsystemmodeling.org/esmpy -# Available modules - +homepage: [https://earthsystemmodeling.org/esmpy](https://earthsystemmodeling.org/esmpy) -The overview below shows which ESMPy installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using ESMPy, load one of these modules using a `module load` command like: -```shell -module load ESMPy/8.6.0-foss-2023a -``` +|ESMPy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ESMPy/8.6.0-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ESMPy/8.6.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in ESMPy installations -### ESMPy/8.6.0-foss-2023a +### esmpy -This is a list of extensions included in the module: -esmpy-8.6.0 \ No newline at end of file +|`esmpy` version|ESMPy modules that include it| +| --- | --- | +|8.6.0|`ESMPy/8.6.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ESPResSo.md b/docs/available_software/detail/ESPResSo.md index 0fff1dc4eb..969348cdfc 100644 --- a/docs/available_software/detail/ESPResSo.md +++ b/docs/available_software/detail/ESPResSo.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ESPResSo/4.2.1-foss-2023a'', ''ESPResSo/4.2.2-foss-2023a'', - ''ESPResSo/4.2.2-foss-2023b'']' + softwareVersion: '[''4.2.2'', ''4.2.1'']' url: https://espressomd.org/wordpress --- - -ESPResSo -======== +# ESPResSo A software package for performing and analyzing scientific Molecular Dynamics simulations. -https://espressomd.org/wordpress -# Available modules - - -The overview below shows which ESPResSo installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ESPResSo, load one of these modules using a `module load` command like: +homepage: [https://espressomd.org/wordpress](https://espressomd.org/wordpress) -```shell -module load ESPResSo/4.2.2-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ESPResSo/4.2.2-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ESPResSo/4.2.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ESPResSo/4.2.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ESPResSo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ESPResSo/4.2.2-foss-2023b`| +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`ESPResSo/4.2.2-foss-2023a-CUDA-12.1.1`| +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ESPResSo/4.2.2-foss-2023a`| +|4.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ESPResSo/4.2.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ETE.md b/docs/available_software/detail/ETE.md index 29a6726148..7ffbc2e42d 100644 --- a/docs/available_software/detail/ETE.md +++ b/docs/available_software/detail/ETE.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ETE/3.1.3-foss-2023a'']' + softwareVersion: '[''3.1.3'']' url: http://etetoolkit.org --- - -ETE -=== +# ETE A Python framework for the analysis and visualization of trees -http://etetoolkit.org -# Available modules - - -The overview below shows which ETE installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ETE, load one of these modules using a `module load` command like: +homepage: [http://etetoolkit.org](http://etetoolkit.org) -```shell -module load ETE/3.1.3-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ETE/3.1.3-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ETE version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ETE/3.1.3-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/EasyBuild.md b/docs/available_software/detail/EasyBuild.md index 4f9239ae0d..7208b3b4e0 100644 --- a/docs/available_software/detail/EasyBuild.md +++ b/docs/available_software/detail/EasyBuild.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: EasyBuild is a software build and installation framework written in - Python that allows you to install software in a structured, repeatable and robust - way. + description: "EasyBuild is a software build and installation framework\n written\ + \ in Python that allows you to install software in a structured,\n repeatable\ + \ and robust way." license: Not confirmed name: EasyBuild offers: @@ -26,42 +24,38 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''EasyBuild/4.8.2'', ''EasyBuild/4.9.0'', ''EasyBuild/4.9.1'', - ''EasyBuild/4.9.2'', ''EasyBuild/4.9.3'', ''EasyBuild/4.9.4'', ''EasyBuild/5.0.0'', - ''EasyBuild/5.1.0'', ''EasyBuild/5.1.1'', ''EasyBuild/5.1.2'', ''EasyBuild/5.2.0'']' + softwareVersion: '[''5.3.0'', ''5.2.1'', ''5.2.0'', ''5.1.2'', ''5.1.1'', ''5.1.0'', + ''5.0.0'', ''4.9.3'', ''4.9.2'', ''4.9.1'', ''4.9.0'', ''4.8.2'']' url: https://easybuilders.github.io/easybuild --- - -EasyBuild -========= - - -EasyBuild is a software build and installation framework written in Python that allows you to install software in a structured, repeatable and robust way. - -https://easybuilders.github.io/easybuild -# Available modules - - -The overview below shows which EasyBuild installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using EasyBuild, load one of these modules using a `module load` command like: - -```shell -module load EasyBuild/5.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|EasyBuild/5.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EasyBuild/5.1.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EasyBuild/5.1.1|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EasyBuild/5.1.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EasyBuild/5.0.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EasyBuild/4.9.4|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EasyBuild/4.9.3|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EasyBuild/4.9.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EasyBuild/4.9.1|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EasyBuild/4.9.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EasyBuild/4.8.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +# EasyBuild + + +EasyBuild is a software build and installation framework + written in Python that allows you to install software in a structured, + repeatable and robust way. + +homepage: [https://easybuilders.github.io/easybuild](https://easybuilders.github.io/easybuild) + +## Available installations + + +|EasyBuild version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/5.3.0`| +|5.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`EasyBuild/5.3.0`| +|5.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/5.2.1`| +|5.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`EasyBuild/5.2.1`| +|5.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/5.2.0`| +|5.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`EasyBuild/5.2.0`| +|5.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/5.1.2`| +|5.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`EasyBuild/5.1.2`| +|5.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/5.1.1`| +|5.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`EasyBuild/5.1.1`| +|5.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/5.1.0`| +|5.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/5.0.0`| +|4.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/4.9.3`| +|4.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/4.9.2`| +|4.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/4.9.1`| +|4.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/4.9.0`| +|4.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EasyBuild/4.8.2`| \ No newline at end of file diff --git a/docs/available_software/detail/Eigen.md b/docs/available_software/detail/Eigen.md index 0f23209720..4f80ce2dc1 100644 --- a/docs/available_software/detail/Eigen.md +++ b/docs/available_software/detail/Eigen.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'Eigen is a C++ template library for linear algebra: matrices, vectors, - numerical solvers, and related algorithms.' + description: "Eigen is a C++ template library for linear algebra: matrices, vectors,\ + \ numerical solvers,\n and related algorithms." license: Not confirmed name: Eigen offers: @@ -25,33 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Eigen/3.4.0-GCCcore-12.2.0'', ''Eigen/3.4.0-GCCcore-12.3.0'', - ''Eigen/3.4.0-GCCcore-13.2.0'']' + softwareVersion: '[''3.4.0'']' url: https://eigen.tuxfamily.org --- +# Eigen -Eigen -===== +Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, + and related algorithms. -Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms. +homepage: [https://eigen.tuxfamily.org](https://eigen.tuxfamily.org) -https://eigen.tuxfamily.org -# Available modules +## Available installations -The overview below shows which Eigen installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Eigen, load one of these modules using a `module load` command like: - -```shell -module load Eigen/3.4.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Eigen/3.4.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Eigen/3.4.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Eigen/3.4.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Eigen version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Eigen/3.4.0-GCCcore-14.3.0`| +|3.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Eigen/3.4.0-GCCcore-14.2.0`| +|3.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Eigen/3.4.0-GCCcore-13.3.0`| +|3.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Eigen/3.4.0-GCCcore-13.2.0`| +|3.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Eigen/3.4.0-GCCcore-12.3.0`| +|3.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Eigen/3.4.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/EveryBeam.md b/docs/available_software/detail/EveryBeam.md index 1ca87c0a25..aac8fc787f 100644 --- a/docs/available_software/detail/EveryBeam.md +++ b/docs/available_software/detail/EveryBeam.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Library that provides the antenna response pattern for several instruments,such - as LOFAR (and LOBES), SKA (OSKAR), MWA, JVLA, etc. + description: 'Library that provides the antenna response pattern for several instruments, + + such as LOFAR (and LOBES), SKA (OSKAR), MWA, JVLA, etc.' license: Not confirmed name: EveryBeam offers: @@ -25,31 +24,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''EveryBeam/0.5.2-foss-2023b'', ''EveryBeam/0.6.1-foss-2023b'']' + softwareVersion: '[''0.6.1'', ''0.5.2'']' url: https://everybeam.readthedocs.io/ --- - -EveryBeam -========= - - -Library that provides the antenna response pattern for several instruments,such as LOFAR (and LOBES), SKA (OSKAR), MWA, JVLA, etc. - -https://everybeam.readthedocs.io/ -# Available modules +# EveryBeam -The overview below shows which EveryBeam installations are available per target architecture in EESSI, ordered based on software version (new to old). +Library that provides the antenna response pattern for several instruments, +such as LOFAR (and LOBES), SKA (OSKAR), MWA, JVLA, etc. -To start using EveryBeam, load one of these modules using a `module load` command like: +homepage: [https://everybeam.readthedocs.io/](https://everybeam.readthedocs.io/) -```shell -module load EveryBeam/0.6.1-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|EveryBeam/0.6.1-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|EveryBeam/0.5.2-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|EveryBeam version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EveryBeam/0.6.1-foss-2023b`| +|0.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`EveryBeam/0.5.2-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/Extrae.md b/docs/available_software/detail/Extrae.md index f83de1c34d..56bafb998e 100644 --- a/docs/available_software/detail/Extrae.md +++ b/docs/available_software/detail/Extrae.md @@ -1,14 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Extrae is the package devoted to generate Paraver trace-files for a - post-mortem analysis.Extrae is a tool that uses different interposition mechanisms - to inject probes into the target applicationso as to gather information regarding - the application performance. + description: 'Extrae is the package devoted to generate Paraver trace-files for + a post-mortem analysis. + + Extrae is a tool that uses different interposition mechanisms to inject probes + into the target application + + so as to gather information regarding the application performance.' license: Not confirmed name: Extrae offers: @@ -27,30 +28,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Extrae/4.2.0-gompi-2023b'']' + softwareVersion: '[''5.0.0'', ''4.2.0'']' url: https://tools.bsc.es/extrae --- - -Extrae -====== - - -Extrae is the package devoted to generate Paraver trace-files for a post-mortem analysis.Extrae is a tool that uses different interposition mechanisms to inject probes into the target applicationso as to gather information regarding the application performance. - -https://tools.bsc.es/extrae -# Available modules +# Extrae -The overview below shows which Extrae installations are available per target architecture in EESSI, ordered based on software version (new to old). +Extrae is the package devoted to generate Paraver trace-files for a post-mortem analysis. +Extrae is a tool that uses different interposition mechanisms to inject probes into the target application +so as to gather information regarding the application performance. -To start using Extrae, load one of these modules using a `module load` command like: +homepage: [https://tools.bsc.es/extrae](https://tools.bsc.es/extrae) -```shell -module load Extrae/4.2.0-gompi-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Extrae/4.2.0-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Extrae version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Extrae/5.0.0-gompi-2025b`| +|4.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Extrae/4.2.0-gompi-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/FAAD2.md b/docs/available_software/detail/FAAD2.md new file mode 100644 index 0000000000..9dcd0eaf24 --- /dev/null +++ b/docs/available_software/detail/FAAD2.md @@ -0,0 +1,43 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'FAAD2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder. + + FAAD2 includes code for SBR (HE AAC) decoding.' + license: Not confirmed + name: FAAD2 + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.11.2'']' + url: https://github.com/knik0/faad2 +--- +# FAAD2 + + +FAAD2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder. +FAAD2 includes code for SBR (HE AAC) decoding. + +homepage: [https://github.com/knik0/faad2](https://github.com/knik0/faad2) + +## Available installations + + +|FAAD2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.11.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FAAD2/2.11.2-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FALL3D.md b/docs/available_software/detail/FALL3D.md index 259edc368d..b4a3a38828 100644 --- a/docs/available_software/detail/FALL3D.md +++ b/docs/available_software/detail/FALL3D.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FALL3D/9.0.1-gompi-2023a'']' + softwareVersion: '[''9.0.1'']' url: https://gitlab.com/fall3d-suite/fall3d --- - -FALL3D -====== +# FALL3D FALL3D is an open-source volcanic ash dispersal model. -https://gitlab.com/fall3d-suite/fall3d -# Available modules - - -The overview below shows which FALL3D installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using FALL3D, load one of these modules using a `module load` command like: +homepage: [https://gitlab.com/fall3d-suite/fall3d](https://gitlab.com/fall3d-suite/fall3d) -```shell -module load FALL3D/9.0.1-gompi-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FALL3D/9.0.1-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FALL3D version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FALL3D/9.0.1-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/FEniCS-Basix-Python.md b/docs/available_software/detail/FEniCS-Basix-Python.md new file mode 100644 index 0000000000..c0a5001d53 --- /dev/null +++ b/docs/available_software/detail/FEniCS-Basix-Python.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Basix is a finite element definition and tabulation runtime library + - Python binding + license: Not confirmed + name: FEniCS-Basix-Python + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.0'']' + url: https://github.com/FEniCS/basix +--- +# FEniCS-Basix-Python + + +Basix is a finite element definition and tabulation runtime library - Python binding + +homepage: [https://github.com/FEniCS/basix](https://github.com/FEniCS/basix) + +## Available installations + + +|FEniCS-Basix-Python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FEniCS-Basix-Python/0.9.0-gfbf-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/FEniCS-Basix.md b/docs/available_software/detail/FEniCS-Basix.md new file mode 100644 index 0000000000..2fccdfe8c6 --- /dev/null +++ b/docs/available_software/detail/FEniCS-Basix.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Basix is a finite element definition and tabulation runtime library + - C++ library + license: Not confirmed + name: FEniCS-Basix + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.0'']' + url: https://github.com/FEniCS/basix +--- +# FEniCS-Basix + + +Basix is a finite element definition and tabulation runtime library - C++ library + +homepage: [https://github.com/FEniCS/basix](https://github.com/FEniCS/basix) + +## Available installations + + +|FEniCS-Basix version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FEniCS-Basix/0.9.0-GCC-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FEniCS-DOLFINx-Python.md b/docs/available_software/detail/FEniCS-DOLFINx-Python.md new file mode 100644 index 0000000000..36651ccd13 --- /dev/null +++ b/docs/available_software/detail/FEniCS-DOLFINx-Python.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'DOLFINx is the computational environment of FEniCSx - Python binding ' + license: Not confirmed + name: FEniCS-DOLFINx-Python + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.0'']' + url: https://github.com/FEniCS/dolfinx +--- +# FEniCS-DOLFINx-Python + + +DOLFINx is the computational environment of FEniCSx - Python binding + +homepage: [https://github.com/FEniCS/dolfinx](https://github.com/FEniCS/dolfinx) + +## Available installations + + +|FEniCS-DOLFINx-Python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FEniCS-DOLFINx-Python/0.9.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/FEniCS-DOLFINx.md b/docs/available_software/detail/FEniCS-DOLFINx.md new file mode 100644 index 0000000000..049c3d0805 --- /dev/null +++ b/docs/available_software/detail/FEniCS-DOLFINx.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: DOLFINx is the computational environment of FEniCSx - C++ library + license: Not confirmed + name: FEniCS-DOLFINx + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.0'']' + url: https://github.com/FEniCS/dolfinx +--- +# FEniCS-DOLFINx + + +DOLFINx is the computational environment of FEniCSx - C++ library + +homepage: [https://github.com/FEniCS/dolfinx](https://github.com/FEniCS/dolfinx) + +## Available installations + + +|FEniCS-DOLFINx version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FEniCS-DOLFINx/0.9.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/FEniCS-FFCx.md b/docs/available_software/detail/FEniCS-FFCx.md new file mode 100644 index 0000000000..a7e524ec93 --- /dev/null +++ b/docs/available_software/detail/FEniCS-FFCx.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: FFCx is a compiler for finite element variational forms + license: Not confirmed + name: FEniCS-FFCx + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.0'']' + url: https://github.com/FEniCS/ffcx +--- +# FEniCS-FFCx + + +FFCx is a compiler for finite element variational forms + +homepage: [https://github.com/FEniCS/ffcx](https://github.com/FEniCS/ffcx) + +## Available installations + + +|FEniCS-FFCx version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FEniCS-FFCx/0.9.0-gfbf-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/FEniCS-UFL.md b/docs/available_software/detail/FEniCS-UFL.md new file mode 100644 index 0000000000..aadefac8e9 --- /dev/null +++ b/docs/available_software/detail/FEniCS-UFL.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: The Unified Form Language (UFL) is a domain-specific language for defining + variational forms + license: Not confirmed + name: FEniCS-UFL + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2024.2.0'']' + url: https://github.com/FEniCS/ufl +--- +# FEniCS-UFL + + +The Unified Form Language (UFL) is a domain-specific language for defining variational forms + +homepage: [https://github.com/FEniCS/ufl](https://github.com/FEniCS/ufl) + +## Available installations + + +|FEniCS-UFL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2024.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FEniCS-UFL/2024.2.0-gfbf-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/FEniCS-ufcx.md b/docs/available_software/detail/FEniCS-ufcx.md new file mode 100644 index 0000000000..4dc0ba51d2 --- /dev/null +++ b/docs/available_software/detail/FEniCS-ufcx.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: FFCx provides the ufcx.h interface header for generated finite element + kernels, used by DOLFINx. + license: Not confirmed + name: FEniCS-ufcx + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.0'']' + url: https://github.com/FEniCS/ffcx +--- +# FEniCS-ufcx + + +FFCx provides the ufcx.h interface header for generated finite element kernels, used by DOLFINx. + +homepage: [https://github.com/FEniCS/ffcx](https://github.com/FEniCS/ffcx) + +## Available installations + + +|FEniCS-ufcx version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FEniCS-ufcx/0.9.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FFTW.MPI.md b/docs/available_software/detail/FFTW.MPI.md index 043ce691a9..ed20738c2c 100644 --- a/docs/available_software/detail/FFTW.MPI.md +++ b/docs/available_software/detail/FFTW.MPI.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: FFTW is a C subroutine library for computing the discrete Fourier transform - (DFT)in one or more dimensions, of arbitrary input size, and of both real and - complex data. + description: 'FFTW is a C subroutine library for computing the discrete Fourier + transform (DFT) + + in one or more dimensions, of arbitrary input size, and of both real and complex + data.' license: Not confirmed name: FFTW.MPI offers: @@ -26,33 +26,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FFTW.MPI/3.3.10-gompi-2022b'', ''FFTW.MPI/3.3.10-gompi-2023a'', - ''FFTW.MPI/3.3.10-gompi-2023b'']' + softwareVersion: '[''3.3.10'']' url: https://www.fftw.org --- - -FFTW.MPI -======== - - -FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)in one or more dimensions, of arbitrary input size, and of both real and complex data. - -https://www.fftw.org -# Available modules +# FFTW.MPI -The overview below shows which FFTW.MPI installations are available per target architecture in EESSI, ordered based on software version (new to old). +FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) +in one or more dimensions, of arbitrary input size, and of both real and complex data. -To start using FFTW.MPI, load one of these modules using a `module load` command like: +homepage: [https://www.fftw.org](https://www.fftw.org) -```shell -module load FFTW.MPI/3.3.10-gompi-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FFTW.MPI/3.3.10-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FFTW.MPI/3.3.10-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FFTW.MPI/3.3.10-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FFTW.MPI version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFTW.MPI/3.3.10-lompi-2025b`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFTW.MPI/3.3.10-gompi-2025b`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFTW.MPI/3.3.10-gompi-2025a`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFTW.MPI/3.3.10-gompi-2024a`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FFTW.MPI/3.3.10-gompi-2023b`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FFTW.MPI/3.3.10-gompi-2023a`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FFTW.MPI/3.3.10-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/FFTW.md b/docs/available_software/detail/FFTW.md index 938df278c8..31d1243abd 100644 --- a/docs/available_software/detail/FFTW.md +++ b/docs/available_software/detail/FFTW.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: FFTW is a C subroutine library for computing the discrete Fourier transform - (DFT)in one or more dimensions, of arbitrary input size, and of both real and - complex data. + description: 'FFTW is a C subroutine library for computing the discrete Fourier + transform (DFT) + + in one or more dimensions, of arbitrary input size, and of both real and complex + data.' license: Not confirmed name: FFTW offers: @@ -26,32 +26,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FFTW/3.3.10-GCC-12.2.0'', ''FFTW/3.3.10-GCC-12.3.0'', ''FFTW/3.3.10-GCC-13.2.0'']' + softwareVersion: '[''3.3.10'']' url: https://www.fftw.org --- - -FFTW -==== - - -FFTW is a C subroutine library for computing the discrete Fourier transform (DFT)in one or more dimensions, of arbitrary input size, and of both real and complex data. - -https://www.fftw.org -# Available modules +# FFTW -The overview below shows which FFTW installations are available per target architecture in EESSI, ordered based on software version (new to old). +FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) +in one or more dimensions, of arbitrary input size, and of both real and complex data. -To start using FFTW, load one of these modules using a `module load` command like: +homepage: [https://www.fftw.org](https://www.fftw.org) -```shell -module load FFTW/3.3.10-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FFTW/3.3.10-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FFTW/3.3.10-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FFTW/3.3.10-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FFTW version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFTW/3.3.10-GCC-14.3.0`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFTW/3.3.10-GCC-14.2.0`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFTW/3.3.10-GCC-13.3.0`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FFTW/3.3.10-GCC-13.2.0`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FFTW/3.3.10-GCC-12.3.0`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FFTW/3.3.10-GCC-12.2.0`| +|3.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFTW/3.3.10-llvm-compilers-20.1.8`| \ No newline at end of file diff --git a/docs/available_software/detail/FFmpeg.md b/docs/available_software/detail/FFmpeg.md index 615fae52a9..8c1e824f32 100644 --- a/docs/available_software/detail/FFmpeg.md +++ b/docs/available_software/detail/FFmpeg.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FFmpeg/5.1.2-GCCcore-12.2.0'', ''FFmpeg/6.0-GCCcore-12.3.0'', - ''FFmpeg/6.0-GCCcore-13.2.0'']' + softwareVersion: '[''7.1.2'', ''7.1.1'', ''7.0.2'', ''6.0'', ''5.1.2'']' url: https://www.ffmpeg.org/ --- - -FFmpeg -====== +# FFmpeg A complete, cross-platform solution to record, convert and stream audio and video. -https://www.ffmpeg.org/ -# Available modules - - -The overview below shows which FFmpeg installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using FFmpeg, load one of these modules using a `module load` command like: +homepage: [https://www.ffmpeg.org/](https://www.ffmpeg.org/) -```shell -module load FFmpeg/6.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FFmpeg/6.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FFmpeg/6.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FFmpeg/5.1.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FFmpeg version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFmpeg/7.1.2-GCCcore-14.3.0`| +|7.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFmpeg/7.1.1-GCCcore-14.2.0`| +|7.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FFmpeg/7.0.2-GCCcore-13.3.0`| +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FFmpeg/6.0-GCCcore-13.2.0`| +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FFmpeg/6.0-GCCcore-12.3.0`| +|5.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FFmpeg/5.1.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FLAC.md b/docs/available_software/detail/FLAC.md index 03c317eb61..7e333a861a 100644 --- a/docs/available_software/detail/FLAC.md +++ b/docs/available_software/detail/FLAC.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: FLAC stands for Free Lossless Audio Codec, an audio format similar - to MP3, but lossless, meaningthat audio is compressed in FLAC without any loss - in quality. + description: 'FLAC stands for Free Lossless Audio Codec, an audio format similar + to MP3, but lossless, meaning + + that audio is compressed in FLAC without any loss in quality.' license: Not confirmed name: FLAC offers: @@ -26,33 +25,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FLAC/1.4.2-GCCcore-12.2.0'', ''FLAC/1.4.2-GCCcore-12.3.0'', - ''FLAC/1.4.3-GCCcore-13.2.0'']' + softwareVersion: '[''1.5.0'', ''1.4.3'', ''1.4.2'']' url: https://xiph.org/flac/ --- - -FLAC -==== - - -FLAC stands for Free Lossless Audio Codec, an audio format similar to MP3, but lossless, meaningthat audio is compressed in FLAC without any loss in quality. - -https://xiph.org/flac/ -# Available modules +# FLAC -The overview below shows which FLAC installations are available per target architecture in EESSI, ordered based on software version (new to old). +FLAC stands for Free Lossless Audio Codec, an audio format similar to MP3, but lossless, meaning +that audio is compressed in FLAC without any loss in quality. -To start using FLAC, load one of these modules using a `module load` command like: +homepage: [https://xiph.org/flac/](https://xiph.org/flac/) -```shell -module load FLAC/1.4.3-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FLAC/1.4.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FLAC/1.4.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FLAC/1.4.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FLAC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FLAC/1.5.0-GCCcore-14.3.0`| +|1.4.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FLAC/1.4.3-GCCcore-13.3.0`| +|1.4.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FLAC/1.4.3-GCCcore-13.2.0`| +|1.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FLAC/1.4.2-GCCcore-12.3.0`| +|1.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FLAC/1.4.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FLTK.md b/docs/available_software/detail/FLTK.md index 3700169a06..48ebe9061c 100644 --- a/docs/available_software/detail/FLTK.md +++ b/docs/available_software/detail/FLTK.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft - Windows, and MacOS X. FLTK provides modern GUI functionality without the bloat - and supports 3D graphics via OpenGL and its built-in GLUT emulation. + description: "FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft\ + \ Windows,\n and MacOS X. FLTK provides modern GUI functionality without the bloat\ + \ and supports 3D graphics via OpenGL\n and its built-in GLUT emulation." license: Not confirmed name: FLTK offers: @@ -26,30 +24,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FLTK/1.3.8-GCCcore-12.3.0'']' + softwareVersion: '[''1.4.4'', ''1.3.8'']' url: https://www.fltk.org --- +# FLTK -FLTK -==== +FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, + and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL + and its built-in GLUT emulation. -FLTK is a cross-platform C++ GUI toolkit for UNIX/Linux (X11), Microsoft Windows, and MacOS X. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation. +homepage: [https://www.fltk.org](https://www.fltk.org) -https://www.fltk.org -# Available modules +## Available installations -The overview below shows which FLTK installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using FLTK, load one of these modules using a `module load` command like: - -```shell -module load FLTK/1.3.8-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FLTK/1.3.8-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FLTK version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FLTK/1.4.4-GCCcore-14.2.0`| +|1.3.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FLTK/1.3.8-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FastME.md b/docs/available_software/detail/FastME.md index 06cc0f31bd..6f648c3b74 100644 --- a/docs/available_software/detail/FastME.md +++ b/docs/available_software/detail/FastME.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FastME/2.1.6.3-GCC-12.3.0'']' + softwareVersion: '[''2.1.6.3'']' url: http://www.atgc-montpellier.fr/fastme/ --- - -FastME -====== +# FastME FastME: a comprehensive, accurate and fast distance-based phylogeny inference program. -http://www.atgc-montpellier.fr/fastme/ -# Available modules - - -The overview below shows which FastME installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using FastME, load one of these modules using a `module load` command like: +homepage: [http://www.atgc-montpellier.fr/fastme/](http://www.atgc-montpellier.fr/fastme/) -```shell -module load FastME/2.1.6.3-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FastME/2.1.6.3-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FastME version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.6.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FastME/2.1.6.3-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FastQC.md b/docs/available_software/detail/FastQC.md index e1b0fb21f3..ed5448b702 100644 --- a/docs/available_software/detail/FastQC.md +++ b/docs/available_software/detail/FastQC.md @@ -1,14 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: FastQC is a quality control application for high throughputsequence - data. It reads in sequence data in a variety of formats and can eitherprovide - an interactive application to review the results of several differentQC checks, - or create an HTML based report which can be integrated into apipeline. + description: 'FastQC is a quality control application for high throughput + + sequence data. It reads in sequence data in a variety of formats and can either + + provide an interactive application to review the results of several different + + QC checks, or create an HTML based report which can be integrated into a + + pipeline.' license: Not confirmed name: FastQC offers: @@ -27,30 +30,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FastQC/0.12.1-Java-11'']' + softwareVersion: '[''0.12.1'']' url: https://www.bioinformatics.babraham.ac.uk/projects/fastqc/ --- - -FastQC -====== - - -FastQC is a quality control application for high throughputsequence data. It reads in sequence data in a variety of formats and can eitherprovide an interactive application to review the results of several differentQC checks, or create an HTML based report which can be integrated into apipeline. - -https://www.bioinformatics.babraham.ac.uk/projects/fastqc/ -# Available modules +# FastQC -The overview below shows which FastQC installations are available per target architecture in EESSI, ordered based on software version (new to old). +FastQC is a quality control application for high throughput +sequence data. It reads in sequence data in a variety of formats and can either +provide an interactive application to review the results of several different +QC checks, or create an HTML based report which can be integrated into a +pipeline. -To start using FastQC, load one of these modules using a `module load` command like: +homepage: [https://www.bioinformatics.babraham.ac.uk/projects/fastqc/](https://www.bioinformatics.babraham.ac.uk/projects/fastqc/) -```shell -module load FastQC/0.12.1-Java-11 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FastQC/0.12.1-Java-11|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FastQC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.12.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FastQC/0.12.1-Java-11`| \ No newline at end of file diff --git a/docs/available_software/detail/Fiona.md b/docs/available_software/detail/Fiona.md index 4c1a632523..25f4850bff 100644 --- a/docs/available_software/detail/Fiona.md +++ b/docs/available_software/detail/Fiona.md @@ -1,16 +1,21 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Fiona is designed to be simple and dependable. It focuses on reading - and writing datain standard Python IO style and relies upon familiar Python types - and protocols such as files, dictionaries,mappings, and iterators instead of classes - specific to OGR. Fiona can read and write real-world data usingmulti-layered GIS - formats and zipped virtual file systems and integrates readily with other Python - GISpackages such as pyproj, Rtree, and Shapely. + description: 'Fiona is designed to be simple and dependable. It focuses on reading + and writing data + + in standard Python IO style and relies upon familiar Python types and protocols + such as files, dictionaries, + + mappings, and iterators instead of classes specific to OGR. Fiona can read and + write real-world data using + + multi-layered GIS formats and zipped virtual file systems and integrates readily + with other Python GIS + + packages such as pyproj, Rtree, and Shapely.' license: Not confirmed name: Fiona offers: @@ -29,37 +34,56 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Fiona/1.9.5-foss-2023a'']' + softwareVersion: '[''1.9.5'']' url: https://github.com/Toblerity/Fiona --- +# Fiona + + +Fiona is designed to be simple and dependable. It focuses on reading and writing data +in standard Python IO style and relies upon familiar Python types and protocols such as files, dictionaries, +mappings, and iterators instead of classes specific to OGR. Fiona can read and write real-world data using +multi-layered GIS formats and zipped virtual file systems and integrates readily with other Python GIS +packages such as pyproj, Rtree, and Shapely. + +homepage: [https://github.com/Toblerity/Fiona](https://github.com/Toblerity/Fiona) + +## Available installations + + +|Fiona version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Fiona/1.9.5-foss-2023a`| + +## Extensions -Fiona -===== +Overview of extensions included in Fiona installations -Fiona is designed to be simple and dependable. It focuses on reading and writing datain standard Python IO style and relies upon familiar Python types and protocols such as files, dictionaries,mappings, and iterators instead of classes specific to OGR. Fiona can read and write real-world data usingmulti-layered GIS formats and zipped virtual file systems and integrates readily with other Python GISpackages such as pyproj, Rtree, and Shapely. +### click-plugins -https://github.com/Toblerity/Fiona -# Available modules +|`click-plugins` version|Fiona modules that include it| +| --- | --- | +|1.1.1|`Fiona/1.9.5-foss-2023a`| -The overview below shows which Fiona installations are available per target architecture in EESSI, ordered based on software version (new to old). +### cligj -To start using Fiona, load one of these modules using a `module load` command like: -```shell -module load Fiona/1.9.5-foss-2023a -``` +|`cligj` version|Fiona modules that include it| +| --- | --- | +|0.7.2|`Fiona/1.9.5-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### fiona -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Fiona/1.9.5-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`fiona` version|Fiona modules that include it| +| --- | --- | +|1.9.5|`Fiona/1.9.5-foss-2023a`| -### Fiona/1.9.5-foss-2023a +### munch -This is a list of extensions included in the module: -click-plugins-1.1.1, cligj-0.7.2, fiona-1.9.5, munch-4.0.0 \ No newline at end of file +|`munch` version|Fiona modules that include it| +| --- | --- | +|4.0.0|`Fiona/1.9.5-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Flask.md b/docs/available_software/detail/Flask.md index fa39e97ddc..217fc87428 100644 --- a/docs/available_software/detail/Flask.md +++ b/docs/available_software/detail/Flask.md @@ -1,13 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'Flask is a lightweight WSGI web application framework. It is designed - to makegetting started quick and easy, with the ability to scale up to complexapplications.This - module includes the Flask extensions: Flask-Cors' + description: ' + + Flask is a lightweight WSGI web application framework. It is designed to make + + getting started quick and easy, with the ability to scale up to complex + + applications. + + This module includes the Flask extensions: Flask-Cors' license: Not confirmed name: Flask offers: @@ -26,52 +30,128 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Flask/2.2.3-GCCcore-12.2.0'', ''Flask/2.3.3-GCCcore-12.3.0'', - ''Flask/3.0.0-GCCcore-13.2.0'']' + softwareVersion: '[''3.1.1'', ''3.0.3'', ''3.0.0'', ''2.3.3'', ''2.2.3'']' url: https://www.palletsprojects.com/p/flask/ --- +# Flask + + + +Flask is a lightweight WSGI web application framework. It is designed to make +getting started quick and easy, with the ability to scale up to complex +applications. +This module includes the Flask extensions: Flask-Cors + +homepage: [https://www.palletsprojects.com/p/flask/](https://www.palletsprojects.com/p/flask/) + +## Available installations + + +|Flask version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Flask/3.1.1-GCCcore-14.2.0`| +|3.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Flask/3.0.3-GCCcore-13.3.0`| +|3.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Flask/3.0.0-GCCcore-13.2.0`| +|2.3.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Flask/2.3.3-GCCcore-12.3.0`| +|2.2.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Flask/2.2.3-GCCcore-12.2.0`| + +## Extensions + +Overview of extensions included in Flask installations + + +### asgiref + + +|`asgiref` version|Flask modules that include it| +| --- | --- | +|3.9.1|`Flask/3.1.1-GCCcore-14.2.0`| +|3.7.2|`Flask/3.0.3-GCCcore-13.3.0`
`Flask/3.0.0-GCCcore-13.2.0`
`Flask/2.3.3-GCCcore-12.3.0`| +|3.6.0|`Flask/2.2.3-GCCcore-12.2.0`| + +### blinker + + +|`blinker` version|Flask modules that include it| +| --- | --- | +|1.9.0|`Flask/3.1.1-GCCcore-14.2.0`| +|1.8.2|`Flask/3.0.3-GCCcore-13.3.0`| +|1.7.0|`Flask/3.0.0-GCCcore-13.2.0`| +|1.6.2|`Flask/2.3.3-GCCcore-12.3.0`| + +### cachelib + + +|`cachelib` version|Flask modules that include it| +| --- | --- | +|0.13.0|`Flask/3.1.1-GCCcore-14.2.0`
`Flask/3.0.3-GCCcore-13.3.0`| +|0.10.2|`Flask/3.0.0-GCCcore-13.2.0`
`Flask/2.3.3-GCCcore-12.3.0`
`Flask/2.2.3-GCCcore-12.2.0`| + +### Flask + + +|`Flask` version|Flask modules that include it| +| --- | --- | +|2.2.3|`Flask/2.2.3-GCCcore-12.2.0`| + +### flask -Flask -===== +|`flask` version|Flask modules that include it| +| --- | --- | +|3.1.1|`Flask/3.1.1-GCCcore-14.2.0`| +|3.0.3|`Flask/3.0.3-GCCcore-13.3.0`| +|3.0.0|`Flask/3.0.0-GCCcore-13.2.0`| +|2.3.3|`Flask/2.3.3-GCCcore-12.3.0`| -Flask is a lightweight WSGI web application framework. It is designed to makegetting started quick and easy, with the ability to scale up to complexapplications.This module includes the Flask extensions: Flask-Cors +### Flask-Cors -https://www.palletsprojects.com/p/flask/ -# Available modules +|`Flask-Cors` version|Flask modules that include it| +| --- | --- | +|6.0.1|`Flask/3.1.1-GCCcore-14.2.0`| +|5.0.0|`Flask/3.0.3-GCCcore-13.3.0`| +|4.0.0|`Flask/3.0.0-GCCcore-13.2.0`
`Flask/2.3.3-GCCcore-12.3.0`| +|3.0.10|`Flask/2.2.3-GCCcore-12.2.0`| -The overview below shows which Flask installations are available per target architecture in EESSI, ordered based on software version (new to old). +### Flask-Session -To start using Flask, load one of these modules using a `module load` command like: -```shell -module load Flask/3.0.0-GCCcore-13.2.0 -``` +|`Flask-Session` version|Flask modules that include it| +| --- | --- | +|0.8.0|`Flask/3.1.1-GCCcore-14.2.0`
`Flask/3.0.3-GCCcore-13.3.0`| +|0.5.0|`Flask/3.0.0-GCCcore-13.2.0`
`Flask/2.3.3-GCCcore-12.3.0`| +|0.4.0|`Flask/2.2.3-GCCcore-12.2.0`| -*(This data was automatically generated on {{ generated_time }})* +### itsdangerous -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Flask/3.0.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Flask/2.3.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Flask/2.2.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`itsdangerous` version|Flask modules that include it| +| --- | --- | +|2.2.0|`Flask/3.1.1-GCCcore-14.2.0`
`Flask/3.0.3-GCCcore-13.3.0`| +|2.1.2|`Flask/3.0.0-GCCcore-13.2.0`
`Flask/2.3.3-GCCcore-12.3.0`
`Flask/2.2.3-GCCcore-12.2.0`| -### Flask/3.0.0-GCCcore-13.2.0 +### msgspec -This is a list of extensions included in the module: -asgiref-3.7.2, blinker-1.7.0, cachelib-0.10.2, flask-3.0.0, Flask-Cors-4.0.0, Flask-Session-0.5.0, itsdangerous-2.1.2, werkzeug-3.0.1 +|`msgspec` version|Flask modules that include it| +| --- | --- | +|0.19.0|`Flask/3.1.1-GCCcore-14.2.0`| +|0.18.6|`Flask/3.0.3-GCCcore-13.3.0`| -### Flask/2.3.3-GCCcore-12.3.0 +### Werkzeug -This is a list of extensions included in the module: -asgiref-3.7.2, blinker-1.6.2, cachelib-0.10.2, flask-2.3.3, Flask-Cors-4.0.0, Flask-Session-0.5.0, itsdangerous-2.1.2, werkzeug-2.3.7 +|`Werkzeug` version|Flask modules that include it| +| --- | --- | +|2.2.3|`Flask/2.2.3-GCCcore-12.2.0`| -### Flask/2.2.3-GCCcore-12.2.0 +### werkzeug -This is a list of extensions included in the module: -asgiref-3.6.0, cachelib-0.10.2, Flask-2.2.3, Flask-Cors-3.0.10, Flask-Session-0.4.0, itsdangerous-2.1.2, Werkzeug-2.2.3 \ No newline at end of file +|`werkzeug` version|Flask modules that include it| +| --- | --- | +|3.1.3|`Flask/3.1.1-GCCcore-14.2.0`| +|3.0.4|`Flask/3.0.3-GCCcore-13.3.0`| +|3.0.1|`Flask/3.0.0-GCCcore-13.2.0`| +|2.3.7|`Flask/2.3.3-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FlexiBLAS.md b/docs/available_software/detail/FlexiBLAS.md index 53fd959caf..1d323c1d12 100644 --- a/docs/available_software/detail/FlexiBLAS.md +++ b/docs/available_software/detail/FlexiBLAS.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: FlexiBLAS is a wrapper library that enables the exchange of the BLAS - and LAPACK implementationused by a program without recompiling or relinking it. + description: 'FlexiBLAS is a wrapper library that enables the exchange of the BLAS + and LAPACK implementation + + used by a program without recompiling or relinking it.' license: Not confirmed name: FlexiBLAS offers: @@ -25,33 +25,51 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FlexiBLAS/3.2.1-GCC-12.2.0'', ''FlexiBLAS/3.3.1-GCC-12.3.0'', - ''FlexiBLAS/3.3.1-GCC-13.2.0'']' + softwareVersion: '[''3.4.5'', ''3.4.4'', ''3.3.1'', ''3.2.1'']' url: https://gitlab.mpi-magdeburg.mpg.de/software/flexiblas-release --- +# FlexiBLAS + + +FlexiBLAS is a wrapper library that enables the exchange of the BLAS and LAPACK implementation +used by a program without recompiling or relinking it. + +homepage: [https://gitlab.mpi-magdeburg.mpg.de/software/flexiblas-release](https://gitlab.mpi-magdeburg.mpg.de/software/flexiblas-release) + +## Available installations + -FlexiBLAS -========= +|FlexiBLAS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.4.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FlexiBLAS/3.4.5-GCC-14.3.0`| +|3.4.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FlexiBLAS/3.4.5-GCC-14.2.0`| +|3.4.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FlexiBLAS/3.4.5-llvm-compilers-20.1.8`| +|3.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FlexiBLAS/3.4.4-GCC-13.3.0`| +|3.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FlexiBLAS/3.3.1-GCC-13.2.0`| +|3.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FlexiBLAS/3.3.1-GCC-12.3.0`| +|3.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FlexiBLAS/3.2.1-GCC-12.2.0`| +## Extensions -FlexiBLAS is a wrapper library that enables the exchange of the BLAS and LAPACK implementationused by a program without recompiling or relinking it. +Overview of extensions included in FlexiBLAS installations -https://gitlab.mpi-magdeburg.mpg.de/software/flexiblas-release -# Available modules +### FlexiBLAS -The overview below shows which FlexiBLAS installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using FlexiBLAS, load one of these modules using a `module load` command like: +|`FlexiBLAS` version|FlexiBLAS modules that include it| +| --- | --- | +|3.4.5|`FlexiBLAS/3.4.5-GCC-14.3.0`
`FlexiBLAS/3.4.5-GCC-14.2.0`
`FlexiBLAS/3.4.5-llvm-compilers-20.1.8`| +|3.4.4|`FlexiBLAS/3.4.4-GCC-13.3.0`| +|3.3.1|`FlexiBLAS/3.3.1-GCC-13.2.0`
`FlexiBLAS/3.3.1-GCC-12.3.0`| +|3.2.1|`FlexiBLAS/3.2.1-GCC-12.2.0`| -```shell -module load FlexiBLAS/3.3.1-GCC-13.2.0 -``` +### LAPACK -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FlexiBLAS/3.3.1-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FlexiBLAS/3.3.1-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FlexiBLAS/3.2.1-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`LAPACK` version|FlexiBLAS modules that include it| +| --- | --- | +|3.12.1|`FlexiBLAS/3.4.5-GCC-14.3.0`
`FlexiBLAS/3.4.5-llvm-compilers-20.1.8`| +|3.12.0|`FlexiBLAS/3.4.5-GCC-14.2.0`
`FlexiBLAS/3.4.4-GCC-13.3.0`| +|3.11.0|`FlexiBLAS/3.3.1-GCC-13.2.0`
`FlexiBLAS/3.3.1-GCC-12.3.0`| +|3.10.1|`FlexiBLAS/3.2.1-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Flux.md b/docs/available_software/detail/Flux.md new file mode 100644 index 0000000000..8d062e881c --- /dev/null +++ b/docs/available_software/detail/Flux.md @@ -0,0 +1,84 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "\n Flux is a flexible framework for resource management, built for\ + \ your site. The\n framework consists of a suite of projects, tools, and libraries\ + \ which may be\n used to build site-custom resource managers for High Performance\ + \ Computing\n centers. Unlike traditional resource managers, Flux can run as a\ + \ parallel job\n under most launchers that support MPI, including under Flux itself.\ + \ This not\n only makes batch scripts and workflows for Flux portable to other\ + \ resource\n managers (just launch Flux as a job), but it also means that batch\ + \ jobs have\n all the features of a full resource manager at their disposal, as\ + \ if they have\n an entire cluster to themselves.\n" + license: Not confirmed + name: Flux + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.80.0'']' + url: https://flux-framework.org/ +--- +# Flux + + + + Flux is a flexible framework for resource management, built for your site. The + framework consists of a suite of projects, tools, and libraries which may be + used to build site-custom resource managers for High Performance Computing + centers. Unlike traditional resource managers, Flux can run as a parallel job + under most launchers that support MPI, including under Flux itself. This not + only makes batch scripts and workflows for Flux portable to other resource + managers (just launch Flux as a job), but it also means that batch jobs have + all the features of a full resource manager at their disposal, as if they have + an entire cluster to themselves. + + +homepage: [https://flux-framework.org/](https://flux-framework.org/) + +## Available installations + + +|Flux version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.80.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Flux/0.80.0-GCC-13.3.0`| + +## Extensions + +Overview of extensions included in Flux installations + + +### flux-core + + +|`flux-core` version|Flux modules that include it| +| --- | --- | +|0.80.0|`Flux/0.80.0-GCC-13.3.0`| + +### flux-pmix + + +|`flux-pmix` version|Flux modules that include it| +| --- | --- | +|0.7.0|`Flux/0.80.0-GCC-13.3.0`| + +### flux-sched + + +|`flux-sched` version|Flux modules that include it| +| --- | --- | +|0.48.0|`Flux/0.80.0-GCC-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Flye.md b/docs/available_software/detail/Flye.md index 91ba091d06..6a6f7cffd0 100644 --- a/docs/available_software/detail/Flye.md +++ b/docs/available_software/detail/Flye.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Flye is a de novo assembler for long and noisy reads, such as those - produced by PacBio and Oxford Nanopore Technologies. + description: "Flye is a de novo assembler for long and noisy reads, such as those\ + \ produced by PacBio\n and Oxford Nanopore Technologies." license: Not confirmed name: Flye offers: @@ -25,31 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Flye/2.9.3-GCC-12.3.0'', ''Flye/2.9.4-GCC-13.2.0'']' + softwareVersion: '[''2.9.6'', ''2.9.5'', ''2.9.4'', ''2.9.3'']' url: https://github.com/fenderglass/Flye --- +# Flye -Flye -==== +Flye is a de novo assembler for long and noisy reads, such as those produced by PacBio + and Oxford Nanopore Technologies. -Flye is a de novo assembler for long and noisy reads, such as those produced by PacBio and Oxford Nanopore Technologies. +homepage: [https://github.com/fenderglass/Flye](https://github.com/fenderglass/Flye) -https://github.com/fenderglass/Flye -# Available modules +## Available installations -The overview below shows which Flye installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Flye, load one of these modules using a `module load` command like: - -```shell -module load Flye/2.9.4-GCC-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Flye/2.9.4-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Flye/2.9.3-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Flye version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.9.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Flye/2.9.6-GCC-14.2.0`| +|2.9.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Flye/2.9.5-GCC-13.3.0`| +|2.9.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Flye/2.9.4-GCC-13.2.0`| +|2.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Flye/2.9.3-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FragGeneScan.md b/docs/available_software/detail/FragGeneScan.md index 03cec91d30..68123bd1c9 100644 --- a/docs/available_software/detail/FragGeneScan.md +++ b/docs/available_software/detail/FragGeneScan.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FragGeneScan/1.31-GCCcore-12.3.0'']' + softwareVersion: '[''1.31'']' url: https://omics.informatics.indiana.edu/FragGeneScan/ --- - -FragGeneScan -============ +# FragGeneScan FragGeneScan is an application for finding (fragmented) genes in short reads. -https://omics.informatics.indiana.edu/FragGeneScan/ -# Available modules - - -The overview below shows which FragGeneScan installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using FragGeneScan, load one of these modules using a `module load` command like: +homepage: [https://omics.informatics.indiana.edu/FragGeneScan/](https://omics.informatics.indiana.edu/FragGeneScan/) -```shell -module load FragGeneScan/1.31-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FragGeneScan/1.31-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FragGeneScan version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.31|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FragGeneScan/1.31-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FreeImage.md b/docs/available_software/detail/FreeImage.md index 1110a10beb..460bd337da 100644 --- a/docs/available_software/detail/FreeImage.md +++ b/docs/available_software/detail/FreeImage.md @@ -1,14 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: FreeImage is an Open Source library project for developers who would - like to support popular graphicsimage formats like PNG, BMP, JPEG, TIFF and others - as needed by today's multimedia applications. FreeImage is easy touse, fast, multithreading - safe. + description: 'FreeImage is an Open Source library project for developers who would + like to support popular graphics + + image formats like PNG, BMP, JPEG, TIFF and others as needed by today''s multimedia + applications. FreeImage is easy to + + use, fast, multithreading safe.' license: Not confirmed name: FreeImage offers: @@ -27,30 +28,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FreeImage/3.18.0-GCCcore-12.3.0'']' + softwareVersion: '[''3.18.0'']' url: http://freeimage.sourceforge.net --- - -FreeImage -========= - - -FreeImage is an Open Source library project for developers who would like to support popular graphicsimage formats like PNG, BMP, JPEG, TIFF and others as needed by today's multimedia applications. FreeImage is easy touse, fast, multithreading safe. - -http://freeimage.sourceforge.net -# Available modules +# FreeImage -The overview below shows which FreeImage installations are available per target architecture in EESSI, ordered based on software version (new to old). +FreeImage is an Open Source library project for developers who would like to support popular graphics +image formats like PNG, BMP, JPEG, TIFF and others as needed by today's multimedia applications. FreeImage is easy to +use, fast, multithreading safe. -To start using FreeImage, load one of these modules using a `module load` command like: +homepage: [http://freeimage.sourceforge.net](http://freeimage.sourceforge.net) -```shell -module load FreeImage/3.18.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FreeImage/3.18.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FreeImage version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FreeImage/3.18.0-GCCcore-14.2.0`| +|3.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FreeImage/3.18.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FreeXL.md b/docs/available_software/detail/FreeXL.md index 095f66f7ef..d08f9e6be5 100644 --- a/docs/available_software/detail/FreeXL.md +++ b/docs/available_software/detail/FreeXL.md @@ -1,12 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: FreeXL is an open source library to extract valid data from within - anExcel (.xls) spreadsheet. + description: ' + + FreeXL is an open source library to extract valid data from within an + + Excel (.xls) spreadsheet. + + ' license: Not confirmed name: FreeXL offers: @@ -25,30 +28,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FreeXL/2.0.0-GCCcore-12.3.0'']' + softwareVersion: '[''2.0.0'']' url: https://www.gaia-gis.it/fossil/freexl/index --- +# FreeXL -FreeXL -====== - - -FreeXL is an open source library to extract valid data from within anExcel (.xls) spreadsheet. -https://www.gaia-gis.it/fossil/freexl/index -# Available modules +FreeXL is an open source library to extract valid data from within an +Excel (.xls) spreadsheet. -The overview below shows which FreeXL installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using FreeXL, load one of these modules using a `module load` command like: +homepage: [https://www.gaia-gis.it/fossil/freexl/index](https://www.gaia-gis.it/fossil/freexl/index) -```shell -module load FreeXL/2.0.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FreeXL/2.0.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FreeXL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FreeXL/2.0.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/FriBidi.md b/docs/available_software/detail/FriBidi.md index 806fd56cdd..ae20f869e8 100644 --- a/docs/available_software/detail/FriBidi.md +++ b/docs/available_software/detail/FriBidi.md @@ -1,11 +1,9 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Free Implementation of the Unicode Bidirectional Algorithm. + description: "\n The Free Implementation of the Unicode Bidirectional Algorithm.\n" license: Not confirmed name: FriBidi offers: @@ -24,33 +22,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''FriBidi/1.0.12-GCCcore-12.2.0'', ''FriBidi/1.0.12-GCCcore-12.3.0'', - ''FriBidi/1.0.13-GCCcore-13.2.0'']' + softwareVersion: '[''1.0.16'', ''1.0.15'', ''1.0.13'', ''1.0.12'']' url: https://github.com/fribidi/fribidi --- +# FriBidi -FriBidi -======= -The Free Implementation of the Unicode Bidirectional Algorithm. + The Free Implementation of the Unicode Bidirectional Algorithm. -https://github.com/fribidi/fribidi -# Available modules +homepage: [https://github.com/fribidi/fribidi](https://github.com/fribidi/fribidi) -The overview below shows which FriBidi installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using FriBidi, load one of these modules using a `module load` command like: -```shell -module load FriBidi/1.0.13-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|FriBidi/1.0.13-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FriBidi/1.0.12-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|FriBidi/1.0.12-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|FriBidi version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FriBidi/1.0.16-GCCcore-14.3.0`| +|1.0.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FriBidi/1.0.16-GCCcore-14.2.0`| +|1.0.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`FriBidi/1.0.15-GCCcore-13.3.0`| +|1.0.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FriBidi/1.0.13-GCCcore-13.2.0`| +|1.0.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FriBidi/1.0.12-GCCcore-12.3.0`| +|1.0.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`FriBidi/1.0.12-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GATK.md b/docs/available_software/detail/GATK.md index a06e2376d2..1a56dbc2e7 100644 --- a/docs/available_software/detail/GATK.md +++ b/docs/available_software/detail/GATK.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Genome Analysis Toolkit or GATK is a software package developed - at the Broad Institute to analyse next-generation resequencing data. The toolkit - offers a wide variety of tools, with a primary focus on variant discovery and - genotyping as well as strong emphasis on data quality assurance. Its robust architecture, - powerful processing engine and high-performance computing features make it capable - of taking on projects of any size. + description: "The Genome Analysis Toolkit or GATK is a software package developed\ + \ at the Broad Institute\n to analyse next-generation resequencing data. The toolkit\ + \ offers a wide variety of tools,\n with a primary focus on variant discovery\ + \ and genotyping as well as strong emphasis on\n data quality assurance. Its robust\ + \ architecture, powerful processing engine and\n high-performance computing features\ + \ make it capable of taking on projects of any size." license: Not confirmed name: GATK offers: @@ -29,30 +27,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GATK/4.5.0.0-GCCcore-12.3.0-Java-17'']' + softwareVersion: '[''4.5.0.0'']' url: https://www.broadinstitute.org/gatk/ --- +# GATK -GATK -==== +The Genome Analysis Toolkit or GATK is a software package developed at the Broad Institute + to analyse next-generation resequencing data. The toolkit offers a wide variety of tools, + with a primary focus on variant discovery and genotyping as well as strong emphasis on + data quality assurance. Its robust architecture, powerful processing engine and + high-performance computing features make it capable of taking on projects of any size. -The Genome Analysis Toolkit or GATK is a software package developed at the Broad Institute to analyse next-generation resequencing data. The toolkit offers a wide variety of tools, with a primary focus on variant discovery and genotyping as well as strong emphasis on data quality assurance. Its robust architecture, powerful processing engine and high-performance computing features make it capable of taking on projects of any size. +homepage: [https://www.broadinstitute.org/gatk/](https://www.broadinstitute.org/gatk/) -https://www.broadinstitute.org/gatk/ -# Available modules +## Available installations -The overview below shows which GATK installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GATK, load one of these modules using a `module load` command like: - -```shell -module load GATK/4.5.0.0-GCCcore-12.3.0-Java-17 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GATK/4.5.0.0-GCCcore-12.3.0-Java-17|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GATK version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.5.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GATK/4.5.0.0-GCCcore-12.3.0-Java-17`| \ No newline at end of file diff --git a/docs/available_software/detail/GCC.md b/docs/available_software/detail/GCC.md index dd84ed48f4..d608a0701c 100644 --- a/docs/available_software/detail/GCC.md +++ b/docs/available_software/detail/GCC.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The GNU Compiler Collection includes front ends for C, C++, Objective-C, - Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). + description: "The GNU Compiler Collection includes front ends for C, C++, Objective-C,\ + \ Fortran, Java, and Ada,\n as well as libraries for these languages (libstdc++,\ + \ libgcj,...)." license: Not confirmed name: GCC offers: @@ -25,32 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GCC/12.2.0'', ''GCC/12.3.0'', ''GCC/13.2.0'']' + softwareVersion: '[''14.3.0'', ''14.2.0'', ''13.3.0'', ''13.2.0'', ''12.3.0'', ''12.2.0'']' url: https://gcc.gnu.org/ --- +# GCC -GCC -=== +The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...). -The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). +homepage: [https://gcc.gnu.org/](https://gcc.gnu.org/) -https://gcc.gnu.org/ -# Available modules +## Available installations -The overview below shows which GCC installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GCC, load one of these modules using a `module load` command like: - -```shell -module load GCC/13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GCC/13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GCC/12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GCC/12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GCC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|14.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GCC/14.3.0`| +|14.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GCC/14.2.0`| +|13.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GCC/13.3.0`| +|13.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GCC/13.2.0`| +|12.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GCC/12.3.0`| +|12.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GCC/12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GCCcore.md b/docs/available_software/detail/GCCcore.md index 9a512586cc..6bdc425e89 100644 --- a/docs/available_software/detail/GCCcore.md +++ b/docs/available_software/detail/GCCcore.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The GNU Compiler Collection includes front ends for C, C++, Objective-C, - Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). + description: "The GNU Compiler Collection includes front ends for C, C++, Objective-C,\ + \ Fortran, Java, and Ada,\n as well as libraries for these languages (libstdc++,\ + \ libgcj,...)." license: Not confirmed name: GCCcore offers: @@ -25,32 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GCCcore/12.2.0'', ''GCCcore/12.3.0'', ''GCCcore/13.2.0'']' + softwareVersion: '[''14.3.0'', ''14.2.0'', ''13.3.0'', ''13.2.0'', ''12.3.0'', ''12.2.0'']' url: https://gcc.gnu.org/ --- +# GCCcore -GCCcore -======= +The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, + as well as libraries for these languages (libstdc++, libgcj,...). -The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...). +homepage: [https://gcc.gnu.org/](https://gcc.gnu.org/) -https://gcc.gnu.org/ -# Available modules +## Available installations -The overview below shows which GCCcore installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GCCcore, load one of these modules using a `module load` command like: - -```shell -module load GCCcore/13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GCCcore/13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GCCcore/12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GCCcore/12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GCCcore version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|14.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GCCcore/14.3.0`| +|14.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GCCcore/14.2.0`| +|13.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GCCcore/13.3.0`| +|13.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GCCcore/13.2.0`| +|12.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GCCcore/12.3.0`| +|12.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GCCcore/12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GDAL.md b/docs/available_software/detail/GDAL.md index 5dac52d13a..88d63f60de 100644 --- a/docs/available_software/detail/GDAL.md +++ b/docs/available_software/detail/GDAL.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GDAL is a translator library for raster geospatial data formats that - is released under an X/MIT style Open Source license by the Open Source Geospatial - Foundation. As a library, it presents a single abstract data model to the calling - application for all supported formats. It also comes with a variety of useful - commandline utilities for data translation and processing. + description: "GDAL is a translator library for raster geospatial data formats that\ + \ is released under an X/MIT style\n Open Source license by the Open Source Geospatial\ + \ Foundation. As a library, it presents a single abstract data model\n to the\ + \ calling application for all supported formats. It also comes with a variety\ + \ of useful commandline utilities for\n data translation and processing." license: Not confirmed name: GDAL offers: @@ -28,32 +26,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GDAL/3.6.2-foss-2022b'', ''GDAL/3.7.1-foss-2023a'', ''GDAL/3.9.0-foss-2023b'']' + softwareVersion: '[''3.10.0'', ''3.9.0'', ''3.7.1'', ''3.6.2'']' url: https://www.gdal.org --- +# GDAL -GDAL -==== +GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style + Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model + to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for + data translation and processing. -GDAL is a translator library for raster geospatial data formats that is released under an X/MIT style Open Source license by the Open Source Geospatial Foundation. As a library, it presents a single abstract data model to the calling application for all supported formats. It also comes with a variety of useful commandline utilities for data translation and processing. +homepage: [https://www.gdal.org](https://www.gdal.org) -https://www.gdal.org -# Available modules +## Available installations -The overview below shows which GDAL installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GDAL, load one of these modules using a `module load` command like: - -```shell -module load GDAL/3.9.0-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GDAL/3.9.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GDAL/3.7.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GDAL/3.6.2-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GDAL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GDAL/3.10.0-foss-2024a`| +|3.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GDAL/3.9.0-foss-2023b`| +|3.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GDAL/3.7.1-foss-2023a`| +|3.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GDAL/3.6.2-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/GDB.md b/docs/available_software/detail/GDB.md index 8cde598634..c405a8f82f 100644 --- a/docs/available_software/detail/GDB.md +++ b/docs/available_software/detail/GDB.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GDB/13.2-GCCcore-12.3.0'']' + softwareVersion: '[''16.3'', ''13.2'']' url: https://www.gnu.org/software/gdb/gdb.html --- - -GDB -=== +# GDB The GNU Project Debugger -https://www.gnu.org/software/gdb/gdb.html -# Available modules - - -The overview below shows which GDB installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GDB, load one of these modules using a `module load` command like: +homepage: [https://www.gnu.org/software/gdb/gdb.html](https://www.gnu.org/software/gdb/gdb.html) -```shell -module load GDB/13.2-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GDB/13.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GDB version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|16.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GDB/16.3-GCCcore-14.3.0`| +|16.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GDB/16.3-GCCcore-14.2.0`| +|16.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GDB/16.3-GCCcore-13.3.0`| +|13.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GDB/13.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GDRCopy.md b/docs/available_software/detail/GDRCopy.md index 8534b258f1..e5ab601537 100644 --- a/docs/available_software/detail/GDRCopy.md +++ b/docs/available_software/detail/GDRCopy.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,31 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GDRCopy/2.3.1-GCCcore-12.3.0'', ''GDRCopy/2.4-GCCcore-13.2.0'']' + softwareVersion: '[''2.5'', ''2.4.4'', ''2.4.1'', ''2.4'', ''2.3.1'']' url: https://github.com/NVIDIA/gdrcopy --- - -GDRCopy -======= +# GDRCopy A low-latency GPU memory copy library based on NVIDIA GPUDirect RDMA technology. -https://github.com/NVIDIA/gdrcopy -# Available modules - - -The overview below shows which GDRCopy installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GDRCopy, load one of these modules using a `module load` command like: +homepage: [https://github.com/NVIDIA/gdrcopy](https://github.com/NVIDIA/gdrcopy) -```shell -module load GDRCopy/2.4-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GDRCopy/2.4-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GDRCopy/2.3.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GDRCopy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GDRCopy/2.5-GCCcore-14.3.0`| +|2.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GDRCopy/2.4.4-GCCcore-14.2.0`| +|2.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GDRCopy/2.4.1-GCCcore-13.3.0`| +|2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GDRCopy/2.4-GCCcore-13.2.0`| +|2.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GDRCopy/2.3.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GEOS.md b/docs/available_software/detail/GEOS.md index 8c509d7f7d..6936a47b5a 100644 --- a/docs/available_software/detail/GEOS.md +++ b/docs/available_software/detail/GEOS.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,32 +23,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GEOS/3.11.1-GCC-12.2.0'', ''GEOS/3.12.0-GCC-12.3.0'', ''GEOS/3.12.1-GCC-13.2.0'']' + softwareVersion: '[''3.12.2'', ''3.12.1'', ''3.12.0'', ''3.11.1'']' url: https://trac.osgeo.org/geos --- - -GEOS -==== +# GEOS GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS) -https://trac.osgeo.org/geos -# Available modules - - -The overview below shows which GEOS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GEOS, load one of these modules using a `module load` command like: +homepage: [https://trac.osgeo.org/geos](https://trac.osgeo.org/geos) -```shell -module load GEOS/3.12.1-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GEOS/3.12.1-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GEOS/3.12.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GEOS/3.11.1-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GEOS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.12.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GEOS/3.12.2-GCC-13.3.0`| +|3.12.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GEOS/3.12.1-GCC-13.2.0`| +|3.12.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GEOS/3.12.0-GCC-12.3.0`| +|3.11.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GEOS/3.11.1-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GL2PS.md b/docs/available_software/detail/GL2PS.md index 563e5edc16..35fc61de7c 100644 --- a/docs/available_software/detail/GL2PS.md +++ b/docs/available_software/detail/GL2PS.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GL2PS/1.4.2-GCCcore-12.2.0'', ''GL2PS/1.4.2-GCCcore-12.3.0'']' + softwareVersion: '[''1.4.2'']' url: https://www.geuz.org/gl2ps/ --- - -GL2PS -===== +# GL2PS GL2PS: an OpenGL to PostScript printing library -https://www.geuz.org/gl2ps/ -# Available modules - - -The overview below shows which GL2PS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GL2PS, load one of these modules using a `module load` command like: +homepage: [https://www.geuz.org/gl2ps/](https://www.geuz.org/gl2ps/) -```shell -module load GL2PS/1.4.2-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GL2PS/1.4.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GL2PS/1.4.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GL2PS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GL2PS/1.4.2-GCCcore-12.3.0`| +|1.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GL2PS/1.4.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GLPK.md b/docs/available_software/detail/GLPK.md index 40eff2e166..e106354348 100644 --- a/docs/available_software/detail/GLPK.md +++ b/docs/available_software/detail/GLPK.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The GLPK (GNU Linear Programming Kit) package is intended for solving - large-scale linear programming (LP), mixed integer programming (MIP), and other - related problems. It is a set of routines written in ANSI C and organized in the - form of a callable library. + description: "The GLPK (GNU Linear Programming Kit) package is intended for\n solving\ + \ large-scale linear programming (LP),\n mixed integer programming (MIP), and\ + \ other related problems.\n It is a set of routines written in ANSI C\n and organized\ + \ in the form of a callable library." license: Not confirmed name: GLPK offers: @@ -27,32 +25,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GLPK/5.0-GCCcore-12.2.0'', ''GLPK/5.0-GCCcore-12.3.0'', ''GLPK/5.0-GCCcore-13.2.0'']' + softwareVersion: '[''5.0'']' url: https://www.gnu.org/software/glpk/ --- +# GLPK -GLPK -==== +The GLPK (GNU Linear Programming Kit) package is intended for + solving large-scale linear programming (LP), + mixed integer programming (MIP), and other related problems. + It is a set of routines written in ANSI C + and organized in the form of a callable library. -The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems. It is a set of routines written in ANSI C and organized in the form of a callable library. +homepage: [https://www.gnu.org/software/glpk/](https://www.gnu.org/software/glpk/) -https://www.gnu.org/software/glpk/ -# Available modules +## Available installations -The overview below shows which GLPK installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GLPK, load one of these modules using a `module load` command like: - -```shell -module load GLPK/5.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GLPK/5.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GLPK/5.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GLPK/5.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GLPK version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GLPK/5.0-GCCcore-13.3.0`| +|5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GLPK/5.0-GCCcore-13.2.0`| +|5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GLPK/5.0-GCCcore-12.3.0`| +|5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GLPK/5.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GLib.md b/docs/available_software/detail/GLib.md index 3bc8695a58..f4433ca5ba 100644 --- a/docs/available_software/detail/GLib.md +++ b/docs/available_software/detail/GLib.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GLib/2.75.0-GCCcore-12.2.0'', ''GLib/2.77.1-GCCcore-12.3.0'', - ''GLib/2.78.1-GCCcore-13.2.0'']' + softwareVersion: '[''2.85.3'', ''2.85.1'', ''2.80.4'', ''2.78.1'', ''2.77.1'', ''2.75.0'']' url: https://www.gtk.org/ --- - -GLib -==== +# GLib GLib is one of the base libraries of the GTK+ project -https://www.gtk.org/ -# Available modules - - -The overview below shows which GLib installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GLib, load one of these modules using a `module load` command like: +homepage: [https://www.gtk.org/](https://www.gtk.org/) -```shell -module load GLib/2.78.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GLib/2.78.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GLib/2.77.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GLib/2.75.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GLib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.85.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GLib/2.85.3-GCCcore-14.3.0`| +|2.85.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GLib/2.85.1-GCCcore-14.2.0`| +|2.80.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GLib/2.80.4-GCCcore-13.3.0`| +|2.78.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GLib/2.78.1-GCCcore-13.2.0`| +|2.77.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GLib/2.77.1-GCCcore-12.3.0`| +|2.75.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GLib/2.75.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GMP.md b/docs/available_software/detail/GMP.md index 9a0467beec..eff7709b35 100644 --- a/docs/available_software/detail/GMP.md +++ b/docs/available_software/detail/GMP.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GMP is a free library for arbitrary precision arithmetic, operating - on signed integers, rational numbers, and floating point numbers. + description: "\n GMP is a free library for arbitrary precision arithmetic, operating\ + \ on signed\n integers, rational numbers, and floating point numbers.\n" license: Not confirmed name: GMP offers: @@ -25,32 +23,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GMP/6.2.1-GCCcore-12.2.0'', ''GMP/6.2.1-GCCcore-12.3.0'', ''GMP/6.3.0-GCCcore-13.2.0'']' + softwareVersion: '[''6.3.0'', ''6.2.1'']' url: https://gmplib.org/ --- +# GMP -GMP -=== -GMP is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers. + GMP is a free library for arbitrary precision arithmetic, operating on signed + integers, rational numbers, and floating point numbers. -https://gmplib.org/ -# Available modules +homepage: [https://gmplib.org/](https://gmplib.org/) -The overview below shows which GMP installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using GMP, load one of these modules using a `module load` command like: -```shell -module load GMP/6.3.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GMP/6.3.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GMP/6.2.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GMP/6.2.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GMP version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GMP/6.3.0-GCCcore-14.3.0`| +|6.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GMP/6.3.0-GCCcore-14.2.0`| +|6.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GMP/6.3.0-GCCcore-13.3.0`| +|6.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GMP/6.3.0-GCCcore-13.2.0`| +|6.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GMP/6.2.1-GCCcore-12.3.0`| +|6.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GMP/6.2.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GOTCHA.md b/docs/available_software/detail/GOTCHA.md new file mode 100644 index 0000000000..d4523196a7 --- /dev/null +++ b/docs/available_software/detail/GOTCHA.md @@ -0,0 +1,54 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Gotcha is a library that wraps functions. Tools can use gotcha to + install hooks into other + + libraries, for example putting a wrapper function around libc''s malloc. It is + similar to LD_PRELOAD, but + + operates via a programmable API. This enables easy methods of accomplishing tasks + like code instrumentation + + or wholesale replacement of mechanisms in programs without disrupting their source + code.' + license: Not confirmed + name: GOTCHA + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.0.8'']' + url: https://gotcha.readthedocs.io/en/latest/ +--- +# GOTCHA + + +Gotcha is a library that wraps functions. Tools can use gotcha to install hooks into other +libraries, for example putting a wrapper function around libc's malloc. It is similar to LD_PRELOAD, but +operates via a programmable API. This enables easy methods of accomplishing tasks like code instrumentation +or wholesale replacement of mechanisms in programs without disrupting their source code. + +homepage: [https://gotcha.readthedocs.io/en/latest/](https://gotcha.readthedocs.io/en/latest/) + +## Available installations + + +|GOTCHA version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GOTCHA/1.0.8-GCCcore-14.3.0`| +|1.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GOTCHA/1.0.8-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GObject-Introspection.md b/docs/available_software/detail/GObject-Introspection.md index 5d74ef4ea3..dab2ee5e27 100644 --- a/docs/available_software/detail/GObject-Introspection.md +++ b/docs/available_software/detail/GObject-Introspection.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GObject introspection is a middleware layer between C libraries (using - GObject) and language bindings. The C library can be scanned at compile time and - generate a metadata file, in addition to the actual native C library. Then at - runtime, language bindings can read this metadata and automatically provide bindings - to call into the C library. + description: "GObject introspection is a middleware layer between C libraries\n\ + \ (using GObject) and language bindings. The C library can be scanned at\n compile\ + \ time and generate a metadata file, in addition to the actual\n native C library.\ + \ Then at runtime, language bindings can read this\n metadata and automatically\ + \ provide bindings to call into the C library." license: Not confirmed name: GObject-Introspection offers: @@ -28,33 +26,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GObject-Introspection/1.74.0-GCCcore-12.2.0'', ''GObject-Introspection/1.76.1-GCCcore-12.3.0'', - ''GObject-Introspection/1.78.1-GCCcore-13.2.0'']' + softwareVersion: '[''1.84.0'', ''1.80.1'', ''1.78.1'', ''1.76.1'', ''1.74.0'']' url: https://gi.readthedocs.io/en/latest/ --- +# GObject-Introspection -GObject-Introspection -===================== +GObject introspection is a middleware layer between C libraries + (using GObject) and language bindings. The C library can be scanned at + compile time and generate a metadata file, in addition to the actual + native C library. Then at runtime, language bindings can read this + metadata and automatically provide bindings to call into the C library. -GObject introspection is a middleware layer between C libraries (using GObject) and language bindings. The C library can be scanned at compile time and generate a metadata file, in addition to the actual native C library. Then at runtime, language bindings can read this metadata and automatically provide bindings to call into the C library. +homepage: [https://gi.readthedocs.io/en/latest/](https://gi.readthedocs.io/en/latest/) -https://gi.readthedocs.io/en/latest/ -# Available modules +## Available installations -The overview below shows which GObject-Introspection installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GObject-Introspection, load one of these modules using a `module load` command like: - -```shell -module load GObject-Introspection/1.78.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GObject-Introspection/1.78.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GObject-Introspection/1.76.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GObject-Introspection/1.74.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GObject-Introspection version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.84.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GObject-Introspection/1.84.0-GCCcore-14.3.0`| +|1.84.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GObject-Introspection/1.84.0-GCCcore-14.2.0`| +|1.80.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GObject-Introspection/1.80.1-GCCcore-13.3.0`| +|1.78.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GObject-Introspection/1.78.1-GCCcore-13.2.0`| +|1.76.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GObject-Introspection/1.76.1-GCCcore-12.3.0`| +|1.74.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GObject-Introspection/1.74.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GRASS.md b/docs/available_software/detail/GRASS.md index d34f9cdfc7..f77ff27d0b 100644 --- a/docs/available_software/detail/GRASS.md +++ b/docs/available_software/detail/GRASS.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Geographic Resources Analysis Support System - used for geospatial - data management and analysis, image processing, graphics and maps production, - spatial modeling, and visualization + description: "The Geographic Resources Analysis Support System - used\n for geospatial\ + \ data management and analysis, image processing,\n graphics and maps production,\ + \ spatial modeling, and visualization" license: Not confirmed name: GRASS offers: @@ -26,30 +24,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GRASS/8.4.0-foss-2023a'']' + softwareVersion: '[''8.4.0'']' url: https://grass.osgeo.org --- +# GRASS -GRASS -===== +The Geographic Resources Analysis Support System - used + for geospatial data management and analysis, image processing, + graphics and maps production, spatial modeling, and visualization -The Geographic Resources Analysis Support System - used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization +homepage: [https://grass.osgeo.org](https://grass.osgeo.org) -https://grass.osgeo.org -# Available modules +## Available installations -The overview below shows which GRASS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GRASS, load one of these modules using a `module load` command like: - -```shell -module load GRASS/8.4.0-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GRASS/8.4.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GRASS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GRASS/8.4.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/GROMACS.md b/docs/available_software/detail/GROMACS.md index 3823844661..5585932adc 100644 --- a/docs/available_software/detail/GROMACS.md +++ b/docs/available_software/detail/GROMACS.md @@ -1,15 +1,23 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GROMACS is a versatile package to perform molecular dynamics, i.e. - simulate theNewtonian equations of motion for systems with hundreds to millions - ofparticles.This is a CPU only build, containing both MPI and threadMPI binariesfor - both single and double precision.It also contains the gmxapi extension for the - single precision MPI build. + description: ' + + GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the + + Newtonian equations of motion for systems with hundreds to millions of + + particles. + + + This is a GPU enabled build, containing both MPI and threadMPI binaries. + + + It also contains the gmxapi extension for the single precision MPI build. + + ' license: Not confirmed name: GROMACS offers: @@ -28,59 +36,47 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GROMACS/2024.1-foss-2023b'', ''GROMACS/2024.3-foss-2023b'', - ''GROMACS/2024.3-foss-2023b-PLUMED-2.9.2'', ''GROMACS/2024.4-foss-2023b'']' + softwareVersion: '[''2025.4'', ''2025.2'', ''2024.4'', ''2024.3'', ''2024.1'']' url: https://www.gromacs.org --- +# GROMACS -GROMACS -======= - - -GROMACS is a versatile package to perform molecular dynamics, i.e. simulate theNewtonian equations of motion for systems with hundreds to millions ofparticles.This is a CPU only build, containing both MPI and threadMPI binariesfor both single and double precision.It also contains the gmxapi extension for the single precision MPI build. - -https://www.gromacs.org -# Available modules - - -The overview below shows which GROMACS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GROMACS, load one of these modules using a `module load` command like: - -```shell -module load GROMACS/2024.4-foss-2023b -``` -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GROMACS/2024.4-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GROMACS/2024.3-foss-2023b-PLUMED-2.9.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GROMACS/2024.3-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GROMACS/2024.1-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +GROMACS is a versatile package to perform molecular dynamics, i.e. simulate the +Newtonian equations of motion for systems with hundreds to millions of +particles. +This is a GPU enabled build, containing both MPI and threadMPI binaries. -### GROMACS/2024.4-foss-2023b +It also contains the gmxapi extension for the single precision MPI build. -This is a list of extensions included in the module: -gmxapi-0.4.2 +homepage: [https://www.gromacs.org](https://www.gromacs.org) -### GROMACS/2024.3-foss-2023b-PLUMED-2.9.2 +## Available installations -This is a list of extensions included in the module: -gmxapi-0.4.2 +|GROMACS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GROMACS/2025.4-foss-2025b`| +|2025.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GROMACS/2025.2-foss-2025a`| +|2024.4|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`GROMACS/2024.4-foss-2023b-CUDA-12.4.0`| +|2024.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GROMACS/2024.4-foss-2023b`| +|2024.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GROMACS/2024.3-foss-2023b-PLUMED-2.9.2`| +|2024.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GROMACS/2024.3-foss-2023b`| +|2024.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GROMACS/2024.1-foss-2023b`| -### GROMACS/2024.3-foss-2023b +## Extensions -This is a list of extensions included in the module: +Overview of extensions included in GROMACS installations -gmxapi-0.4.2 -### GROMACS/2024.1-foss-2023b +### gmxapi -This is a list of extensions included in the module: -gmxapi-0.5.0 \ No newline at end of file +|`gmxapi` version|GROMACS modules that include it| +| --- | --- | +|0.5.0a1|`GROMACS/2025.4-foss-2025b`| +|0.5.0|`GROMACS/2024.1-foss-2023b`| +|0.4.2|`GROMACS/2025.2-foss-2025a`
`GROMACS/2024.4-foss-2023b-CUDA-12.4.0`
`GROMACS/2024.4-foss-2023b`
`GROMACS/2024.3-foss-2023b-PLUMED-2.9.2`
`GROMACS/2024.3-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/GSL.md b/docs/available_software/detail/GSL.md index faac5b35b3..9223147b56 100644 --- a/docs/available_software/detail/GSL.md +++ b/docs/available_software/detail/GSL.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The GNU Scientific Library (GSL) is a numerical library for C and C++ - programmers. The library provides a wide range of mathematical routines such as - random number generators, special functions and least-squares fitting. + description: "The GNU Scientific Library (GSL) is a numerical library for C and\ + \ C++ programmers.\n The library provides a wide range of mathematical routines\ + \ such as random number generators, special functions\n and least-squares fitting." license: Not confirmed name: GSL offers: @@ -26,32 +24,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GSL/2.7-GCC-12.2.0'', ''GSL/2.7-GCC-12.3.0'', ''GSL/2.7-GCC-13.2.0'']' + softwareVersion: '[''2.8'', ''2.7'']' url: https://www.gnu.org/software/gsl/ --- +# GSL -GSL -=== +The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. + The library provides a wide range of mathematical routines such as random number generators, special functions + and least-squares fitting. -The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. The library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting. +homepage: [https://www.gnu.org/software/gsl/](https://www.gnu.org/software/gsl/) -https://www.gnu.org/software/gsl/ -# Available modules +## Available installations -The overview below shows which GSL installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GSL, load one of these modules using a `module load` command like: - -```shell -module load GSL/2.7-GCC-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GSL/2.7-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GSL/2.7-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GSL/2.7-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GSL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GSL/2.8-GCC-14.3.0`| +|2.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GSL/2.8-GCC-14.2.0`| +|2.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GSL/2.8-GCC-13.3.0`| +|2.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GSL/2.7-GCC-13.2.0`| +|2.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GSL/2.7-GCC-12.3.0`| +|2.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GSL/2.7-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GST-plugins-bad.md b/docs/available_software/detail/GST-plugins-bad.md index 6ee14cc982..7a4934fcf1 100644 --- a/docs/available_software/detail/GST-plugins-bad.md +++ b/docs/available_software/detail/GST-plugins-bad.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GStreamer is a library for constructing graphs of media-handling components. - The applications it supports range from simple Ogg/Vorbis playback, audio/video - streaming to complex audio (mixing) and video (non-linear editing) processing. + description: "GStreamer is a library for constructing graphs of media-handling\n\ + \ components. The applications it supports range from simple\n Ogg/Vorbis playback,\ + \ audio/video streaming to complex audio\n (mixing) and video (non-linear editing)\ + \ processing." license: Not confirmed name: GST-plugins-bad offers: @@ -26,30 +25,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GST-plugins-bad/1.22.5-GCC-12.3.0'']' + softwareVersion: '[''1.26.6'', ''1.22.5'']' url: https://gstreamer.freedesktop.org/ --- +# GST-plugins-bad -GST-plugins-bad -=============== +GStreamer is a library for constructing graphs of media-handling + components. The applications it supports range from simple + Ogg/Vorbis playback, audio/video streaming to complex audio + (mixing) and video (non-linear editing) processing. -GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. +homepage: [https://gstreamer.freedesktop.org/](https://gstreamer.freedesktop.org/) -https://gstreamer.freedesktop.org/ -# Available modules +## Available installations -The overview below shows which GST-plugins-bad installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GST-plugins-bad, load one of these modules using a `module load` command like: - -```shell -module load GST-plugins-bad/1.22.5-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GST-plugins-bad/1.22.5-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GST-plugins-bad version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.26.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GST-plugins-bad/1.26.6-GCCcore-14.3.0`| +|1.22.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GST-plugins-bad/1.22.5-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GST-plugins-base.md b/docs/available_software/detail/GST-plugins-base.md index 966fb226f8..6007fe7f46 100644 --- a/docs/available_software/detail/GST-plugins-base.md +++ b/docs/available_software/detail/GST-plugins-base.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GStreamer is a library for constructing graphs of media-handling components. - The applications it supports range from simple Ogg/Vorbis playback, audio/video - streaming to complex audio (mixing) and video (non-linear editing) processing. + description: "GStreamer is a library for constructing graphs of media-handling\n\ + \ components. The applications it supports range from simple\n Ogg/Vorbis playback,\ + \ audio/video streaming to complex audio\n (mixing) and video (non-linear editing)\ + \ processing." license: Not confirmed name: GST-plugins-base offers: @@ -26,33 +25,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GST-plugins-base/1.22.1-GCC-12.2.0'', ''GST-plugins-base/1.22.5-GCC-12.3.0'', - ''GST-plugins-base/1.24.8-GCC-13.2.0'']' + softwareVersion: '[''1.26.6'', ''1.24.8'', ''1.22.5'', ''1.22.1'']' url: https://gstreamer.freedesktop.org/ --- +# GST-plugins-base -GST-plugins-base -================ +GStreamer is a library for constructing graphs of media-handling + components. The applications it supports range from simple + Ogg/Vorbis playback, audio/video streaming to complex audio + (mixing) and video (non-linear editing) processing. -GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. +homepage: [https://gstreamer.freedesktop.org/](https://gstreamer.freedesktop.org/) -https://gstreamer.freedesktop.org/ -# Available modules +## Available installations -The overview below shows which GST-plugins-base installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GST-plugins-base, load one of these modules using a `module load` command like: - -```shell -module load GST-plugins-base/1.24.8-GCC-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GST-plugins-base/1.24.8-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GST-plugins-base/1.22.5-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GST-plugins-base/1.22.1-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GST-plugins-base version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.26.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GST-plugins-base/1.26.6-GCCcore-14.3.0`| +|1.24.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GST-plugins-base/1.24.8-GCC-13.2.0`| +|1.22.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GST-plugins-base/1.22.5-GCC-12.3.0`| +|1.22.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GST-plugins-base/1.22.1-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GST-plugins-good.md b/docs/available_software/detail/GST-plugins-good.md new file mode 100644 index 0000000000..65c8c63392 --- /dev/null +++ b/docs/available_software/detail/GST-plugins-good.md @@ -0,0 +1,46 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "GStreamer is a library for constructing graphs of media-handling\n\ + \ components. The applications it supports range from simple\n Ogg/Vorbis playback,\ + \ audio/video streaming to complex audio\n (mixing) and video (non-linear editing)\ + \ processing." + license: Not confirmed + name: GST-plugins-good + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.26.6'']' + url: https://gstreamer.freedesktop.org/ +--- +# GST-plugins-good + + +GStreamer is a library for constructing graphs of media-handling + components. The applications it supports range from simple + Ogg/Vorbis playback, audio/video streaming to complex audio + (mixing) and video (non-linear editing) processing. + +homepage: [https://gstreamer.freedesktop.org/](https://gstreamer.freedesktop.org/) + +## Available installations + + +|GST-plugins-good version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.26.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GST-plugins-good/1.26.6-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GStreamer.md b/docs/available_software/detail/GStreamer.md index e993152a36..5b734d1451 100644 --- a/docs/available_software/detail/GStreamer.md +++ b/docs/available_software/detail/GStreamer.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GStreamer is a library for constructing graphs of media-handling components. - The applications it supports range from simple Ogg/Vorbis playback, audio/video - streaming to complex audio (mixing) and video (non-linear editing) processing. + description: "GStreamer is a library for constructing graphs of media-handling\n\ + \ components. The applications it supports range from simple\n Ogg/Vorbis playback,\ + \ audio/video streaming to complex audio\n (mixing) and video (non-linear editing)\ + \ processing." license: Not confirmed name: GStreamer offers: @@ -26,33 +25,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GStreamer/1.22.1-GCC-12.2.0'', ''GStreamer/1.22.5-GCC-12.3.0'', - ''GStreamer/1.24.8-GCC-13.2.0'']' + softwareVersion: '[''1.26.5'', ''1.24.8'', ''1.22.5'', ''1.22.1'']' url: https://gstreamer.freedesktop.org/ --- +# GStreamer -GStreamer -========= +GStreamer is a library for constructing graphs of media-handling + components. The applications it supports range from simple + Ogg/Vorbis playback, audio/video streaming to complex audio + (mixing) and video (non-linear editing) processing. -GStreamer is a library for constructing graphs of media-handling components. The applications it supports range from simple Ogg/Vorbis playback, audio/video streaming to complex audio (mixing) and video (non-linear editing) processing. +homepage: [https://gstreamer.freedesktop.org/](https://gstreamer.freedesktop.org/) -https://gstreamer.freedesktop.org/ -# Available modules +## Available installations -The overview below shows which GStreamer installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GStreamer, load one of these modules using a `module load` command like: - -```shell -module load GStreamer/1.24.8-GCC-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GStreamer/1.24.8-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GStreamer/1.22.5-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GStreamer/1.22.1-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GStreamer version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.26.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GStreamer/1.26.5-GCCcore-14.3.0`| +|1.24.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GStreamer/1.24.8-GCC-13.2.0`| +|1.22.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GStreamer/1.22.5-GCC-12.3.0`| +|1.22.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GStreamer/1.22.1-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GTK3.md b/docs/available_software/detail/GTK3.md index 5afc856417..323e97ce5c 100644 --- a/docs/available_software/detail/GTK3.md +++ b/docs/available_software/detail/GTK3.md @@ -1,14 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GTK+ is the primary library used to construct user interfaces in GNOME. - It provides all the user interface controls, or widgets, used in a common graphical - application. Its object-oriented API allows you to construct user interfaces without - dealing with the low-level details of drawing and device interaction. + description: "GTK+ is the primary library used to construct user interfaces in GNOME.\ + \ It\n provides all the user interface controls, or widgets, used in a common\n\ + \ graphical application. Its object-oriented API allows you to construct\n user\ + \ interfaces without dealing with the low-level details of drawing and\n device\ + \ interaction.\n" license: Not confirmed name: GTK3 offers: @@ -27,33 +26,63 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GTK3/3.24.35-GCCcore-12.2.0'', ''GTK3/3.24.37-GCCcore-12.3.0'', - ''GTK3/3.24.39-GCCcore-13.2.0'']' + softwareVersion: '[''3.24.43'', ''3.24.42'', ''3.24.39'', ''3.24.37'', ''3.24.35'']' url: https://developer.gnome.org/gtk3/stable/ --- +# GTK3 -GTK3 -==== +GTK+ is the primary library used to construct user interfaces in GNOME. It + provides all the user interface controls, or widgets, used in a common + graphical application. Its object-oriented API allows you to construct + user interfaces without dealing with the low-level details of drawing and + device interaction. -GTK+ is the primary library used to construct user interfaces in GNOME. It provides all the user interface controls, or widgets, used in a common graphical application. Its object-oriented API allows you to construct user interfaces without dealing with the low-level details of drawing and device interaction. -https://developer.gnome.org/gtk3/stable/ -# Available modules +homepage: [https://developer.gnome.org/gtk3/stable/](https://developer.gnome.org/gtk3/stable/) +## Available installations -The overview below shows which GTK3 installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using GTK3, load one of these modules using a `module load` command like: +|GTK3 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.24.43|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GTK3/3.24.43-GCCcore-14.3.0`| +|3.24.42|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GTK3/3.24.42-GCCcore-13.3.0`| +|3.24.39|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GTK3/3.24.39-GCCcore-13.2.0`| +|3.24.37|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GTK3/3.24.37-GCCcore-12.3.0`| +|3.24.35|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GTK3/3.24.35-GCCcore-12.2.0`| -```shell -module load GTK3/3.24.39-GCCcore-13.2.0 -``` +## Extensions -*(This data was automatically generated on {{ generated_time }})* +Overview of extensions included in GTK3 installations -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GTK3/3.24.39-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GTK3/3.24.37-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GTK3/3.24.35-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| + +### adwaita-icon-theme + + +|`adwaita-icon-theme` version|GTK3 modules that include it| +| --- | --- | +|49.0|`GTK3/3.24.43-GCCcore-14.3.0`| +|47.0|`GTK3/3.24.42-GCCcore-13.3.0`| +|45.0|`GTK3/3.24.39-GCCcore-13.2.0`| +|44.0|`GTK3/3.24.37-GCCcore-12.3.0`| +|42.0|`GTK3/3.24.35-GCCcore-12.2.0`| + +### GTK+ + + +|`GTK+` version|GTK3 modules that include it| +| --- | --- | +|3.24.43|`GTK3/3.24.43-GCCcore-14.3.0`| +|3.24.42|`GTK3/3.24.42-GCCcore-13.3.0`| +|3.24.39|`GTK3/3.24.39-GCCcore-13.2.0`| +|3.24.37|`GTK3/3.24.37-GCCcore-12.3.0`| +|3.24.35|`GTK3/3.24.35-GCCcore-12.2.0`| + +### hicolor-icon-theme + + +|`hicolor-icon-theme` version|GTK3 modules that include it| +| --- | --- | +|0.18|`GTK3/3.24.43-GCCcore-14.3.0`
`GTK3/3.24.42-GCCcore-13.3.0`| +|0.17|`GTK3/3.24.39-GCCcore-13.2.0`
`GTK3/3.24.37-GCCcore-12.3.0`
`GTK3/3.24.35-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GTK4.md b/docs/available_software/detail/GTK4.md index e3b292862f..f527f8c129 100644 --- a/docs/available_software/detail/GTK4.md +++ b/docs/available_software/detail/GTK4.md @@ -1,14 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GTK+ is the primary library used to construct user interfaces in GNOME. - It provides all the user interface controls, or widgets, used in a common graphical - application. Its object-oriented API allows you to construct user interfaces without - dealing with the low-level details of drawing and device interaction. + description: "GTK+ is the primary library used to construct user interfaces in GNOME.\ + \ It\n provides all the user interface controls, or widgets, used in a common\n\ + \ graphical application. Its object-oriented API allows you to construct\n user\ + \ interfaces without dealing with the low-level details of drawing and\n device\ + \ interaction.\n" license: Not confirmed name: GTK4 offers: @@ -27,30 +26,54 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GTK4/4.13.1-GCC-12.3.0'']' + softwareVersion: '[''4.20.2'', ''4.13.1'']' url: https://docs.gtk.org/gtk4/ --- +# GTK4 -GTK4 -==== +GTK+ is the primary library used to construct user interfaces in GNOME. It + provides all the user interface controls, or widgets, used in a common + graphical application. Its object-oriented API allows you to construct + user interfaces without dealing with the low-level details of drawing and + device interaction. -GTK+ is the primary library used to construct user interfaces in GNOME. It provides all the user interface controls, or widgets, used in a common graphical application. Its object-oriented API allows you to construct user interfaces without dealing with the low-level details of drawing and device interaction. -https://docs.gtk.org/gtk4/ -# Available modules +homepage: [https://docs.gtk.org/gtk4/](https://docs.gtk.org/gtk4/) +## Available installations -The overview below shows which GTK4 installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using GTK4, load one of these modules using a `module load` command like: +|GTK4 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.20.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GTK4/4.20.2-GCCcore-14.3.0`| +|4.13.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GTK4/4.13.1-GCC-12.3.0`| -```shell -module load GTK4/4.13.1-GCC-12.3.0 -``` +## Extensions -*(This data was automatically generated on {{ generated_time }})* +Overview of extensions included in GTK4 installations -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GTK4/4.13.1-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| + +### adwaita-icon-theme + + +|`adwaita-icon-theme` version|GTK4 modules that include it| +| --- | --- | +|49.0|`GTK4/4.20.2-GCCcore-14.3.0`| +|45.0|`GTK4/4.13.1-GCC-12.3.0`| + +### GTK + + +|`GTK` version|GTK4 modules that include it| +| --- | --- | +|4.20.2|`GTK4/4.20.2-GCCcore-14.3.0`| +|4.13.1|`GTK4/4.13.1-GCC-12.3.0`| + +### hicolor-icon-theme + + +|`hicolor-icon-theme` version|GTK4 modules that include it| +| --- | --- | +|0.18|`GTK4/4.20.2-GCCcore-14.3.0`| +|0.17|`GTK4/4.13.1-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GTS.md b/docs/available_software/detail/GTS.md index e301436f12..53433d1a94 100644 --- a/docs/available_software/detail/GTS.md +++ b/docs/available_software/detail/GTS.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GTS stands for the GNU Triangulated Surface Library.It is an Open Source - Free Software Library intended to provide a set of usefulfunctions to deal with - 3D surfaces meshed with interconnected triangles. + description: 'GTS stands for the GNU Triangulated Surface Library. + + It is an Open Source Free Software Library intended to provide a set of useful + + functions to deal with 3D surfaces meshed with interconnected triangles.' license: Not confirmed name: GTS offers: @@ -26,30 +26,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GTS/0.7.6-GCCcore-12.3.0'']' + softwareVersion: '[''0.7.6'']' url: http://gts.sourceforge.net/ --- - -GTS -=== - - -GTS stands for the GNU Triangulated Surface Library.It is an Open Source Free Software Library intended to provide a set of usefulfunctions to deal with 3D surfaces meshed with interconnected triangles. - -http://gts.sourceforge.net/ -# Available modules +# GTS -The overview below shows which GTS installations are available per target architecture in EESSI, ordered based on software version (new to old). +GTS stands for the GNU Triangulated Surface Library. +It is an Open Source Free Software Library intended to provide a set of useful +functions to deal with 3D surfaces meshed with interconnected triangles. -To start using GTS, load one of these modules using a `module load` command like: +homepage: [http://gts.sourceforge.net/](http://gts.sourceforge.net/) -```shell -module load GTS/0.7.6-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GTS/0.7.6-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GTS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.7.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GTS/0.7.6-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Gblocks.md b/docs/available_software/detail/Gblocks.md index c8e2d9007d..761d18a96f 100644 --- a/docs/available_software/detail/Gblocks.md +++ b/docs/available_software/detail/Gblocks.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Gblocks/0.91b'']' + softwareVersion: '[''0.91b'']' url: https://www.biologiaevolutiva.org/jcastresana/Gblocks.html --- - -Gblocks -======= +# Gblocks Selection of conserved blocks from multiple alignments for their use in phylogenetic analysis -https://www.biologiaevolutiva.org/jcastresana/Gblocks.html -# Available modules - - -The overview below shows which Gblocks installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Gblocks, load one of these modules using a `module load` command like: +homepage: [https://www.biologiaevolutiva.org/jcastresana/Gblocks.html](https://www.biologiaevolutiva.org/jcastresana/Gblocks.html) -```shell -module load Gblocks/0.91b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Gblocks/0.91b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Gblocks version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.91b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Gblocks/0.91b`| \ No newline at end of file diff --git a/docs/available_software/detail/Gdk-Pixbuf.md b/docs/available_software/detail/Gdk-Pixbuf.md index 5829cf9b81..b3c2a3985d 100644 --- a/docs/available_software/detail/Gdk-Pixbuf.md +++ b/docs/available_software/detail/Gdk-Pixbuf.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Gdk Pixbuf is a toolkit for image loading and pixel buffer manipulation. - It is used by GTK+ 2 and GTK+ 3 to load and manipulate images. In the past it - was distributed as part of GTK+ 2 but it was split off into a separate package - in preparation for the change to GTK+ 3. + description: "\n The Gdk Pixbuf is a toolkit for image loading and pixel buffer\ + \ manipulation.\n It is used by GTK+ 2 and GTK+ 3 to load and manipulate images.\ + \ In the past it\n was distributed as part of GTK+ 2 but it was split off into\ + \ a separate package\n in preparation for the change to GTK+ 3.\n" license: Not confirmed name: Gdk-Pixbuf offers: @@ -27,33 +25,29 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Gdk-Pixbuf/2.42.10-GCCcore-12.2.0'', ''Gdk-Pixbuf/2.42.10-GCCcore-12.3.0'', - ''Gdk-Pixbuf/2.42.10-GCCcore-13.2.0'']' + softwareVersion: '[''2.42.12'', ''2.42.11'', ''2.42.10'']' url: https://docs.gtk.org/gdk-pixbuf/ --- +# Gdk-Pixbuf -Gdk-Pixbuf -========== -The Gdk Pixbuf is a toolkit for image loading and pixel buffer manipulation. It is used by GTK+ 2 and GTK+ 3 to load and manipulate images. In the past it was distributed as part of GTK+ 2 but it was split off into a separate package in preparation for the change to GTK+ 3. + The Gdk Pixbuf is a toolkit for image loading and pixel buffer manipulation. + It is used by GTK+ 2 and GTK+ 3 to load and manipulate images. In the past it + was distributed as part of GTK+ 2 but it was split off into a separate package + in preparation for the change to GTK+ 3. -https://docs.gtk.org/gdk-pixbuf/ -# Available modules +homepage: [https://docs.gtk.org/gdk-pixbuf/](https://docs.gtk.org/gdk-pixbuf/) -The overview below shows which Gdk-Pixbuf installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using Gdk-Pixbuf, load one of these modules using a `module load` command like: -```shell -module load Gdk-Pixbuf/2.42.10-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Gdk-Pixbuf/2.42.10-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Gdk-Pixbuf/2.42.10-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Gdk-Pixbuf/2.42.10-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Gdk-Pixbuf version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.42.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Gdk-Pixbuf/2.42.12-GCCcore-14.3.0`| +|2.42.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Gdk-Pixbuf/2.42.12-GCCcore-14.2.0`| +|2.42.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Gdk-Pixbuf/2.42.11-GCCcore-13.3.0`| +|2.42.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Gdk-Pixbuf/2.42.10-GCCcore-13.2.0`| +|2.42.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Gdk-Pixbuf/2.42.10-GCCcore-12.3.0`| +|2.42.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Gdk-Pixbuf/2.42.10-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GenomeTools.md b/docs/available_software/detail/GenomeTools.md index 2acc1b0168..cd8a137551 100644 --- a/docs/available_software/detail/GenomeTools.md +++ b/docs/available_software/detail/GenomeTools.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GenomeTools/1.6.2-GCC-12.2.0'']' + softwareVersion: '[''1.6.2'']' url: http://genometools.org --- - -GenomeTools -=========== +# GenomeTools A comprehensive software library for efficient processing of structured genome annotations. -http://genometools.org -# Available modules - - -The overview below shows which GenomeTools installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GenomeTools, load one of these modules using a `module load` command like: +homepage: [http://genometools.org](http://genometools.org) -```shell -module load GenomeTools/1.6.2-GCC-12.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GenomeTools/1.6.2-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GenomeTools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GenomeTools/1.6.2-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Ghostscript.md b/docs/available_software/detail/Ghostscript.md index 3243ec6891..2fb54e2ce7 100644 --- a/docs/available_software/detail/Ghostscript.md +++ b/docs/available_software/detail/Ghostscript.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Ghostscript is a versatile processor for PostScript data with the ability - to render PostScript to different targets. It used to be part of the cups printing - stack, but is no longer used for that. + description: "Ghostscript is a versatile processor for PostScript data with the\ + \ ability to render PostScript to\n different targets. It used to be part of the\ + \ cups printing stack, but is no longer used for that." license: Not confirmed name: Ghostscript offers: @@ -26,33 +24,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Ghostscript/10.0.0-GCCcore-12.2.0'', ''Ghostscript/10.01.2-GCCcore-12.3.0'', - ''Ghostscript/10.02.1-GCCcore-13.2.0'']' + softwareVersion: '[''10.03.1'', ''10.02.1'', ''10.01.2'', ''10.0.0'']' url: https://ghostscript.com --- +# Ghostscript -Ghostscript -=========== +Ghostscript is a versatile processor for PostScript data with the ability to render PostScript to + different targets. It used to be part of the cups printing stack, but is no longer used for that. -Ghostscript is a versatile processor for PostScript data with the ability to render PostScript to different targets. It used to be part of the cups printing stack, but is no longer used for that. +homepage: [https://ghostscript.com](https://ghostscript.com) -https://ghostscript.com -# Available modules +## Available installations -The overview below shows which Ghostscript installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Ghostscript, load one of these modules using a `module load` command like: - -```shell -module load Ghostscript/10.02.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Ghostscript/10.02.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Ghostscript/10.01.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Ghostscript/10.0.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Ghostscript version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|10.03.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Ghostscript/10.03.1-GCCcore-13.3.0`| +|10.02.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Ghostscript/10.02.1-GCCcore-13.2.0`| +|10.01.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Ghostscript/10.01.2-GCCcore-12.3.0`| +|10.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Ghostscript/10.0.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Ginkgo.md b/docs/available_software/detail/Ginkgo.md index 29f0d7fd5e..164eeacc6d 100644 --- a/docs/available_software/detail/Ginkgo.md +++ b/docs/available_software/detail/Ginkgo.md @@ -1,18 +1,26 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Ginkgo is a high-performance numerical linear algebra library witha - focus on the solution of sparse linear systems. It also has support for popular - GPUs(NVIDIA, AMD and Intel) with their native programming models, aiming to maximize - the attainableperformance. It also has distributed support with MPI and can be - used to run solvers and preconditionerson large scale supercomputers. With a focus - on sustainable software development, it has comprehensive unittests, usage examples - and continuous integration setups to ensure robustness. It also has been integratedinto - many popular applications such as MFEM, OpenCARP, deal.ii, OpenFOAM etc. + description: 'Ginkgo is a high-performance numerical linear algebra library with + + a focus on the solution of sparse linear systems. It also has support for popular + GPUs + + (NVIDIA, AMD and Intel) with their native programming models, aiming to maximize + the attainable + + performance. It also has distributed support with MPI and can be used to run solvers + and preconditioners + + on large scale supercomputers. With a focus on sustainable software development, + it has comprehensive unit + + tests, usage examples and continuous integration setups to ensure robustness. + It also has been integrated + + into many popular applications such as MFEM, OpenCARP, deal.ii, OpenFOAM etc.' license: Not confirmed name: Ginkgo offers: @@ -31,30 +39,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Ginkgo/1.9.0-gompi-2023b'']' + softwareVersion: '[''1.9.0'']' url: https://github.com/ginkgo-project/ginkgo --- - -Ginkgo -====== - - -Ginkgo is a high-performance numerical linear algebra library witha focus on the solution of sparse linear systems. It also has support for popular GPUs(NVIDIA, AMD and Intel) with their native programming models, aiming to maximize the attainableperformance. It also has distributed support with MPI and can be used to run solvers and preconditionerson large scale supercomputers. With a focus on sustainable software development, it has comprehensive unittests, usage examples and continuous integration setups to ensure robustness. It also has been integratedinto many popular applications such as MFEM, OpenCARP, deal.ii, OpenFOAM etc. - -https://github.com/ginkgo-project/ginkgo -# Available modules +# Ginkgo -The overview below shows which Ginkgo installations are available per target architecture in EESSI, ordered based on software version (new to old). +Ginkgo is a high-performance numerical linear algebra library with +a focus on the solution of sparse linear systems. It also has support for popular GPUs +(NVIDIA, AMD and Intel) with their native programming models, aiming to maximize the attainable +performance. It also has distributed support with MPI and can be used to run solvers and preconditioners +on large scale supercomputers. With a focus on sustainable software development, it has comprehensive unit +tests, usage examples and continuous integration setups to ensure robustness. It also has been integrated +into many popular applications such as MFEM, OpenCARP, deal.ii, OpenFOAM etc. -To start using Ginkgo, load one of these modules using a `module load` command like: +homepage: [https://github.com/ginkgo-project/ginkgo](https://github.com/ginkgo-project/ginkgo) -```shell -module load Ginkgo/1.9.0-gompi-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Ginkgo/1.9.0-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Ginkgo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Ginkgo/1.9.0-gompi-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/GitPython.md b/docs/available_software/detail/GitPython.md index 3b24b91549..4f53e16e05 100644 --- a/docs/available_software/detail/GitPython.md +++ b/docs/available_software/detail/GitPython.md @@ -1,11 +1,9 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GitPython is a python library used to interact with Git repositories + description: ' GitPython is a python library used to interact with Git repositories ' license: Not confirmed name: GitPython offers: @@ -24,44 +22,49 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GitPython/3.1.40-GCCcore-12.3.0'', ''GitPython/3.1.42-GCCcore-13.2.0'']' + softwareVersion: '[''3.1.43'', ''3.1.42'', ''3.1.40'']' url: https://gitpython.readthedocs.org --- +# GitPython -GitPython -========= + GitPython is a python library used to interact with Git repositories -GitPython is a python library used to interact with Git repositories +homepage: [https://gitpython.readthedocs.org](https://gitpython.readthedocs.org) -https://gitpython.readthedocs.org -# Available modules +## Available installations -The overview below shows which GitPython installations are available per target architecture in EESSI, ordered based on software version (new to old). +|GitPython version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.43|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GitPython/3.1.43-GCCcore-13.3.0`| +|3.1.42|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GitPython/3.1.42-GCCcore-13.2.0`| +|3.1.40|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GitPython/3.1.40-GCCcore-12.3.0`| -To start using GitPython, load one of these modules using a `module load` command like: +## Extensions -```shell -module load GitPython/3.1.42-GCCcore-13.2.0 -``` +Overview of extensions included in GitPython installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GitPython/3.1.42-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|GitPython/3.1.40-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### gitdb -### GitPython/3.1.42-GCCcore-13.2.0 +|`gitdb` version|GitPython modules that include it| +| --- | --- | +|4.0.11|`GitPython/3.1.43-GCCcore-13.3.0`
`GitPython/3.1.42-GCCcore-13.2.0`
`GitPython/3.1.40-GCCcore-12.3.0`| -This is a list of extensions included in the module: +### GitPython -gitdb-4.0.11, GitPython-3.1.42, smmap-5.0.1 -### GitPython/3.1.40-GCCcore-12.3.0 +|`GitPython` version|GitPython modules that include it| +| --- | --- | +|3.1.43|`GitPython/3.1.43-GCCcore-13.3.0`| +|3.1.42|`GitPython/3.1.42-GCCcore-13.2.0`| +|3.1.40|`GitPython/3.1.40-GCCcore-12.3.0`| -This is a list of extensions included in the module: +### smmap -gitdb-4.0.11, GitPython-3.1.40, smmap-5.0.1 \ No newline at end of file + +|`smmap` version|GitPython modules that include it| +| --- | --- | +|5.0.1|`GitPython/3.1.43-GCCcore-13.3.0`
`GitPython/3.1.42-GCCcore-13.2.0`
`GitPython/3.1.40-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GnuTLS.md b/docs/available_software/detail/GnuTLS.md index 4afe96e379..2f2e25e8f4 100644 --- a/docs/available_software/detail/GnuTLS.md +++ b/docs/available_software/detail/GnuTLS.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'GnuTLS is a secure communications library implementing the SSL, TLS - and DTLS protocols and technologies around them. It provides a simple C language - application programming interface (API) to access the secure communications protocols - as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required - structures. It is aimed to be portable and efficient with focus on security and - interoperability.' + description: "GnuTLS is a secure communications library implementing the SSL, TLS\n\ + \ and DTLS protocols and technologies around them. It provides a simple\n C language\ + \ application programming interface (API) to access the secure\n communications\ + \ protocols as well as APIs to parse and write X.509, PKCS #12,\n OpenPGP and\ + \ other required structures. It is aimed to be portable\n and efficient with focus\ + \ on security and interoperability." license: Not confirmed name: GnuTLS offers: @@ -29,30 +27,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GnuTLS/3.7.8-GCCcore-12.3.0'']' + softwareVersion: '[''3.8.10'', ''3.7.8'']' url: https://www.gnutls.org --- +# GnuTLS -GnuTLS -====== +GnuTLS is a secure communications library implementing the SSL, TLS + and DTLS protocols and technologies around them. It provides a simple + C language application programming interface (API) to access the secure + communications protocols as well as APIs to parse and write X.509, PKCS #12, + OpenPGP and other required structures. It is aimed to be portable + and efficient with focus on security and interoperability. -GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures. It is aimed to be portable and efficient with focus on security and interoperability. +homepage: [https://www.gnutls.org](https://www.gnutls.org) -https://www.gnutls.org -# Available modules +## Available installations -The overview below shows which GnuTLS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GnuTLS, load one of these modules using a `module load` command like: - -```shell -module load GnuTLS/3.7.8-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GnuTLS/3.7.8-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GnuTLS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.8.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GnuTLS/3.8.10-GCCcore-14.3.0`| +|3.7.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GnuTLS/3.7.8-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Go.md b/docs/available_software/detail/Go.md new file mode 100644 index 0000000000..e320638c09 --- /dev/null +++ b/docs/available_software/detail/Go.md @@ -0,0 +1,43 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "Go is an open source programming language that makes it easy to build\n\ + \ simple, reliable, and efficient software." + license: Not confirmed + name: Go + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.25.0'', ''1.23.6'']' + url: https://www.golang.org +--- +# Go + + +Go is an open source programming language that makes it easy to build + simple, reliable, and efficient software. + +homepage: [https://www.golang.org](https://www.golang.org) + +## Available installations + + +|Go version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.25.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Go/1.25.0`| +|1.23.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Go/1.23.6`| \ No newline at end of file diff --git a/docs/available_software/detail/Graphene.md b/docs/available_software/detail/Graphene.md index ba361bcacf..f233e77409 100644 --- a/docs/available_software/detail/Graphene.md +++ b/docs/available_software/detail/Graphene.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Graphene/1.10.8-GCCcore-12.2.0'', ''Graphene/1.10.8-GCCcore-12.3.0'', - ''Graphene/1.10.8-GCCcore-13.2.0'']' + softwareVersion: '[''1.10.8'']' url: https://ebassi.github.io/graphene/ --- - -Graphene -======== +# Graphene Graphene is a thin layer of types for graphic libraries -https://ebassi.github.io/graphene/ -# Available modules - - -The overview below shows which Graphene installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Graphene, load one of these modules using a `module load` command like: +homepage: [https://ebassi.github.io/graphene/](https://ebassi.github.io/graphene/) -```shell -module load Graphene/1.10.8-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Graphene/1.10.8-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Graphene/1.10.8-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Graphene/1.10.8-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Graphene version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.10.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Graphene/1.10.8-GCCcore-14.3.0`| +|1.10.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Graphene/1.10.8-GCCcore-13.2.0`| +|1.10.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Graphene/1.10.8-GCCcore-12.3.0`| +|1.10.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Graphene/1.10.8-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GraphicsMagick.md b/docs/available_software/detail/GraphicsMagick.md index 77054082cf..da90aee77e 100644 --- a/docs/available_software/detail/GraphicsMagick.md +++ b/docs/available_software/detail/GraphicsMagick.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''GraphicsMagick/1.3.45-GCCcore-12.3.0'']' + softwareVersion: '[''1.3.45'']' url: http://www.graphicsmagick.org/ --- - -GraphicsMagick -============== +# GraphicsMagick GraphicsMagick is the swiss army knife of image processing. -http://www.graphicsmagick.org/ -# Available modules - - -The overview below shows which GraphicsMagick installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using GraphicsMagick, load one of these modules using a `module load` command like: +homepage: [http://www.graphicsmagick.org/](http://www.graphicsmagick.org/) -```shell -module load GraphicsMagick/1.3.45-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|GraphicsMagick/1.3.45-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|GraphicsMagick version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.45|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`GraphicsMagick/1.3.45-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Graphviz.md b/docs/available_software/detail/Graphviz.md index 04b177191c..c041c5bfd3 100644 --- a/docs/available_software/detail/Graphviz.md +++ b/docs/available_software/detail/Graphviz.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Graphviz is open source graph visualization software. Graph visualization - is a way of representing structural information as diagrams of abstract graphs - and networks. It has important applications in networking, bioinformatics, software - engineering, database and web design, machine learning, and in visual interfaces - for other technical domains. + description: "Graphviz is open source graph visualization software. Graph visualization\n\ + \ is a way of representing structural information as diagrams of\n abstract graphs\ + \ and networks. It has important applications in networking,\n bioinformatics,\ + \ software engineering, database and web design, machine learning,\n and in visual\ + \ interfaces for other technical domains." license: Not confirmed name: Graphviz offers: @@ -28,30 +26,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Graphviz/8.1.0-GCCcore-12.3.0'']' + softwareVersion: '[''13.1.2'', ''8.1.0'']' url: https://www.graphviz.org/ --- +# Graphviz -Graphviz -======== +Graphviz is open source graph visualization software. Graph visualization + is a way of representing structural information as diagrams of + abstract graphs and networks. It has important applications in networking, + bioinformatics, software engineering, database and web design, machine learning, + and in visual interfaces for other technical domains. -Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains. +homepage: [https://www.graphviz.org/](https://www.graphviz.org/) -https://www.graphviz.org/ -# Available modules +## Available installations -The overview below shows which Graphviz installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Graphviz, load one of these modules using a `module load` command like: - -```shell -module load Graphviz/8.1.0-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Graphviz/8.1.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Graphviz version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|13.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Graphviz/13.1.2-GCCcore-14.3.0-minimal`| +|8.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Graphviz/8.1.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Greenlet.md b/docs/available_software/detail/Greenlet.md index 99cf3d168f..11b9c6e840 100644 --- a/docs/available_software/detail/Greenlet.md +++ b/docs/available_software/detail/Greenlet.md @@ -1,16 +1,23 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The greenlet package is a spin-off of Stackless, a version of CPython - thatsupports micro-threads called "tasklets". Tasklets run pseudo-concurrently - (typically in a singleor a few OS-level threads) and are synchronized with data - exchanges on "channels".A "greenlet", on the other hand, is a still more primitive - notion of micro-thread with no implicitscheduling; coroutines, in other words. - This is useful when you want to control exactly when your code runs. + description: 'The greenlet package is a spin-off of Stackless, a version of CPython + that + + supports micro-threads called "tasklets". Tasklets run pseudo-concurrently (typically + in a single + + or a few OS-level threads) and are synchronized with data exchanges on "channels". + + A "greenlet", on the other hand, is a still more primitive notion of micro-thread + with no implicit + + scheduling; coroutines, in other words. This is useful when you want to control + exactly when your code runs. + + ' license: Not confirmed name: Greenlet offers: @@ -29,30 +36,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Greenlet/3.0.3-GCCcore-13.2.0'']' + softwareVersion: '[''3.1.1'', ''3.0.3'']' url: https://github.com/python-greenlet/greenlet --- +# Greenlet -Greenlet -======== - - -The greenlet package is a spin-off of Stackless, a version of CPython thatsupports micro-threads called "tasklets". Tasklets run pseudo-concurrently (typically in a singleor a few OS-level threads) and are synchronized with data exchanges on "channels".A "greenlet", on the other hand, is a still more primitive notion of micro-thread with no implicitscheduling; coroutines, in other words. This is useful when you want to control exactly when your code runs. - -https://github.com/python-greenlet/greenlet -# Available modules +The greenlet package is a spin-off of Stackless, a version of CPython that +supports micro-threads called "tasklets". Tasklets run pseudo-concurrently (typically in a single +or a few OS-level threads) and are synchronized with data exchanges on "channels". +A "greenlet", on the other hand, is a still more primitive notion of micro-thread with no implicit +scheduling; coroutines, in other words. This is useful when you want to control exactly when your code runs. -The overview below shows which Greenlet installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using Greenlet, load one of these modules using a `module load` command like: +homepage: [https://github.com/python-greenlet/greenlet](https://github.com/python-greenlet/greenlet) -```shell -module load Greenlet/3.0.3-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Greenlet/3.0.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Greenlet version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Greenlet/3.1.1-GCCcore-13.3.0`| +|3.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Greenlet/3.0.3-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/GtkSourceView4.md b/docs/available_software/detail/GtkSourceView4.md new file mode 100644 index 0000000000..a27794f3b6 --- /dev/null +++ b/docs/available_software/detail/GtkSourceView4.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Network extensions for GLib + license: Not confirmed + name: GtkSourceView4 + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''4.8.4'']' + url: https://wiki.gnome.org/Projects/GtkSourceView +--- +# GtkSourceView4 + + +Network extensions for GLib + +homepage: [https://wiki.gnome.org/Projects/GtkSourceView](https://wiki.gnome.org/Projects/GtkSourceView) + +## Available installations + + +|GtkSourceView4 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.8.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`GtkSourceView4/4.8.4-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Guile.md b/docs/available_software/detail/Guile.md index 01011b769b..0b56f33f98 100644 --- a/docs/available_software/detail/Guile.md +++ b/docs/available_software/detail/Guile.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Guile is a programming language, designed to help programmers create - flexible applications that can be extended by users or other programmers with - plug-ins, modules, or scripts. + description: "\n Guile is a programming language, designed to help programmers create\ + \ flexible\n applications that can be extended by users or other programmers with\ + \ plug-ins,\n modules, or scripts.\n" license: Not confirmed name: Guile offers: @@ -26,30 +24,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Guile/3.0.9-GCCcore-12.3.0'']' + softwareVersion: '[''3.0.9'']' url: https://www.gnu.org/software/guile/ --- +# Guile -Guile -===== -Guile is a programming language, designed to help programmers create flexible applications that can be extended by users or other programmers with plug-ins, modules, or scripts. + Guile is a programming language, designed to help programmers create flexible + applications that can be extended by users or other programmers with plug-ins, + modules, or scripts. -https://www.gnu.org/software/guile/ -# Available modules +homepage: [https://www.gnu.org/software/guile/](https://www.gnu.org/software/guile/) -The overview below shows which Guile installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using Guile, load one of these modules using a `module load` command like: -```shell -module load Guile/3.0.9-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Guile/3.0.9-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Guile version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.0.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Guile/3.0.9-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/HDBSCAN.md b/docs/available_software/detail/HDBSCAN.md index 7026f8ad1b..86e1bdbaf8 100644 --- a/docs/available_software/detail/HDBSCAN.md +++ b/docs/available_software/detail/HDBSCAN.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The hdbscan library is a suite of tools to use unsupervised learning - to find clusters, or dense regions, of a dataset. The primary algorithm is HDBSCAN* - as proposed by Campello, Moulavi, and Sander. The library provides a high performance - implementation of this algorithm, along with tools for analysing the resulting - clustering. + description: "The hdbscan library is a suite of tools to use unsupervised learning\ + \ to find clusters, or dense\n regions, of a dataset. The primary algorithm is\ + \ HDBSCAN* as proposed by Campello, Moulavi, and Sander. The library\n provides\ + \ a high performance implementation of this algorithm, along with tools for analysing\ + \ the resulting\n clustering." license: Not confirmed name: HDBSCAN offers: @@ -28,30 +26,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''HDBSCAN/0.8.38.post1-foss-2023a'']' + softwareVersion: '[''0.8.38.post1'']' url: http://hdbscan.readthedocs.io/en/latest/ --- +# HDBSCAN -HDBSCAN -======= +The hdbscan library is a suite of tools to use unsupervised learning to find clusters, or dense + regions, of a dataset. The primary algorithm is HDBSCAN* as proposed by Campello, Moulavi, and Sander. The library + provides a high performance implementation of this algorithm, along with tools for analysing the resulting + clustering. -The hdbscan library is a suite of tools to use unsupervised learning to find clusters, or dense regions, of a dataset. The primary algorithm is HDBSCAN* as proposed by Campello, Moulavi, and Sander. The library provides a high performance implementation of this algorithm, along with tools for analysing the resulting clustering. +homepage: [http://hdbscan.readthedocs.io/en/latest/](http://hdbscan.readthedocs.io/en/latest/) -http://hdbscan.readthedocs.io/en/latest/ -# Available modules +## Available installations -The overview below shows which HDBSCAN installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using HDBSCAN, load one of these modules using a `module load` command like: - -```shell -module load HDBSCAN/0.8.38.post1-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|HDBSCAN/0.8.38.post1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|HDBSCAN version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.8.38.post1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HDBSCAN/0.8.38.post1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/HDF.md b/docs/available_software/detail/HDF.md index a9d65e0686..69588d0113 100644 --- a/docs/available_software/detail/HDF.md +++ b/docs/available_software/detail/HDF.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: HDF (also known as HDF4) is a library and multi-object file format - for storing and managing data between machines. + description: "\n HDF (also known as HDF4) is a library and multi-object file format\ + \ for\n storing and managing data between machines.\n" license: Not confirmed name: HDF offers: @@ -25,33 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''HDF/4.2.15-GCCcore-12.2.0'', ''HDF/4.2.16-2-GCCcore-12.3.0'', - ''HDF/4.2.16-2-GCCcore-13.2.0'']' + softwareVersion: '[''4.3.0'', ''4.2.16-2'', ''4.2.15'']' url: https://www.hdfgroup.org/products/hdf4/ --- +# HDF -HDF -=== -HDF (also known as HDF4) is a library and multi-object file format for storing and managing data between machines. + HDF (also known as HDF4) is a library and multi-object file format for + storing and managing data between machines. -https://www.hdfgroup.org/products/hdf4/ -# Available modules +homepage: [https://www.hdfgroup.org/products/hdf4/](https://www.hdfgroup.org/products/hdf4/) -The overview below shows which HDF installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using HDF, load one of these modules using a `module load` command like: -```shell -module load HDF/4.2.16-2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|HDF/4.2.16-2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|HDF/4.2.16-2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|HDF/4.2.15-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|HDF version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`HDF/4.3.0-GCCcore-13.3.0`| +|4.2.16-2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HDF/4.2.16-2-GCCcore-13.2.0`| +|4.2.16-2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HDF/4.2.16-2-GCCcore-12.3.0`| +|4.2.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HDF/4.2.15-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/HDF5.md b/docs/available_software/detail/HDF5.md index a8a33baddf..0e983831c5 100644 --- a/docs/available_software/detail/HDF5.md +++ b/docs/available_software/detail/HDF5.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: HDF5 is a data model, library, and file format for storing and managing - data. It supports an unlimited variety of datatypes, and is designed for flexible - and efficient I/O and for high volume and complex data. + description: "HDF5 is a data model, library, and file format for storing and managing\ + \ data.\n It supports an unlimited variety of datatypes, and is designed for flexible\n\ + \ and efficient I/O and for high volume and complex data." license: Not confirmed name: HDF5 offers: @@ -26,32 +24,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''HDF5/1.14.0-gompi-2022b'', ''HDF5/1.14.0-gompi-2023a'', ''HDF5/1.14.3-gompi-2023b'']' + softwareVersion: '[''1.14.6'', ''1.14.5'', ''1.14.3'', ''1.14.0'']' url: https://portal.hdfgroup.org/display/support --- +# HDF5 -HDF5 -==== +HDF5 is a data model, library, and file format for storing and managing data. + It supports an unlimited variety of datatypes, and is designed for flexible + and efficient I/O and for high volume and complex data. -HDF5 is a data model, library, and file format for storing and managing data. It supports an unlimited variety of datatypes, and is designed for flexible and efficient I/O and for high volume and complex data. +homepage: [https://portal.hdfgroup.org/display/support](https://portal.hdfgroup.org/display/support) -https://portal.hdfgroup.org/display/support -# Available modules +## Available installations -The overview below shows which HDF5 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using HDF5, load one of these modules using a `module load` command like: - -```shell -module load HDF5/1.14.3-gompi-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|HDF5/1.14.3-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|HDF5/1.14.0-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|HDF5/1.14.0-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|HDF5 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.14.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`HDF5/1.14.6-gompi-2025b`| +|1.14.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`HDF5/1.14.6-gompi-2025a`| +|1.14.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`HDF5/1.14.5-gompi-2024a`| +|1.14.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HDF5/1.14.3-gompi-2023b`| +|1.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HDF5/1.14.0-gompi-2023a`| +|1.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HDF5/1.14.0-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/HMMER.md b/docs/available_software/detail/HMMER.md index 402bbce510..324e9714c5 100644 --- a/docs/available_software/detail/HMMER.md +++ b/docs/available_software/detail/HMMER.md @@ -1,18 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: HMMER is used for searching sequence databases for homologs of protein - sequences, and for making protein sequence alignments. It implements methods using - probabilistic models called profile hidden Markov models (profile HMMs). Compared - to BLAST, FASTA, and other sequence alignment and database search tools based - on older scoring methodology, HMMER aims to be significantly more accurate and - more able to detect remote homologs because of the strength of its underlying - mathematical models. In the past, this strength came at significant computational - expense, but in the new HMMER3 project, HMMER is now essentially as fast as BLAST. + description: "HMMER is used for searching sequence databases for homologs\n of protein\ + \ sequences, and for making protein sequence alignments. It\n implements methods\ + \ using probabilistic models called profile hidden Markov\n models (profile HMMs).\ + \ Compared to BLAST, FASTA, and other sequence\n alignment and database search\ + \ tools based on older scoring methodology,\n HMMER aims to be significantly more\ + \ accurate and more able to detect remote\n homologs because of the strength of\ + \ its underlying mathematical models. In the\n past, this strength came at significant\ + \ computational expense, but in the new\n HMMER3 project, HMMER is now essentially\ + \ as fast as BLAST." license: Not confirmed name: HMMER offers: @@ -31,30 +30,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''HMMER/3.4-gompi-2023a'']' + softwareVersion: '[''3.4'']' url: http://hmmer.org/ --- +# HMMER -HMMER -===== +HMMER is used for searching sequence databases for homologs + of protein sequences, and for making protein sequence alignments. It + implements methods using probabilistic models called profile hidden Markov + models (profile HMMs). Compared to BLAST, FASTA, and other sequence + alignment and database search tools based on older scoring methodology, + HMMER aims to be significantly more accurate and more able to detect remote + homologs because of the strength of its underlying mathematical models. In the + past, this strength came at significant computational expense, but in the new + HMMER3 project, HMMER is now essentially as fast as BLAST. -HMMER is used for searching sequence databases for homologs of protein sequences, and for making protein sequence alignments. It implements methods using probabilistic models called profile hidden Markov models (profile HMMs). Compared to BLAST, FASTA, and other sequence alignment and database search tools based on older scoring methodology, HMMER aims to be significantly more accurate and more able to detect remote homologs because of the strength of its underlying mathematical models. In the past, this strength came at significant computational expense, but in the new HMMER3 project, HMMER is now essentially as fast as BLAST. +homepage: [http://hmmer.org/](http://hmmer.org/) -http://hmmer.org/ -# Available modules +## Available installations -The overview below shows which HMMER installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using HMMER, load one of these modules using a `module load` command like: - -```shell -module load HMMER/3.4-gompi-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|HMMER/3.4-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|HMMER version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HMMER/3.4-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/HPL.md b/docs/available_software/detail/HPL.md index 3bc50eb4f7..f1af7d37e1 100644 --- a/docs/available_software/detail/HPL.md +++ b/docs/available_software/detail/HPL.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: HPL is a software package that solves a (random) dense linear system - in double precision (64 bits) arithmetic on distributed-memory computers. It can - thus be regarded as a portable as well as freely available implementation of the - High Performance Computing Linpack Benchmark. + description: "HPL is a software package that solves a (random) dense linear system\ + \ in double precision (64 bits)\n arithmetic on distributed-memory computers.\ + \ It can thus be regarded as a portable as well as freely available\n implementation\ + \ of the High Performance Computing Linpack Benchmark." license: Not confirmed name: HPL offers: @@ -27,30 +25,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''HPL/2.3-foss-2023b'']' + softwareVersion: '[''2.3'']' url: https://www.netlib.org/benchmark/hpl/ --- +# HPL -HPL -=== +HPL is a software package that solves a (random) dense linear system in double precision (64 bits) + arithmetic on distributed-memory computers. It can thus be regarded as a portable as well as freely available + implementation of the High Performance Computing Linpack Benchmark. -HPL is a software package that solves a (random) dense linear system in double precision (64 bits) arithmetic on distributed-memory computers. It can thus be regarded as a portable as well as freely available implementation of the High Performance Computing Linpack Benchmark. +homepage: [https://www.netlib.org/benchmark/hpl/](https://www.netlib.org/benchmark/hpl/) -https://www.netlib.org/benchmark/hpl/ -# Available modules +## Available installations -The overview below shows which HPL installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using HPL, load one of these modules using a `module load` command like: - -```shell -module load HPL/2.3-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|HPL/2.3-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|HPL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HPL/2.3-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/HTSlib.md b/docs/available_software/detail/HTSlib.md index f430925022..b54456cc11 100644 --- a/docs/available_software/detail/HTSlib.md +++ b/docs/available_software/detail/HTSlib.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A C library for reading/writing high-throughput sequencing data. This - package includes the utilities bgzip and tabix + description: "A C library for reading/writing high-throughput sequencing data.\n\ + \ This package includes the utilities bgzip and tabix" license: Not confirmed name: HTSlib offers: @@ -25,32 +23,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''HTSlib/1.17-GCC-12.2.0'', ''HTSlib/1.18-GCC-12.3.0'', ''HTSlib/1.19.1-GCC-13.2.0'']' + softwareVersion: '[''1.22.1'', ''1.21'', ''1.19.1'', ''1.18'', ''1.17'']' url: https://www.htslib.org/ --- +# HTSlib -HTSlib -====== +A C library for reading/writing high-throughput sequencing data. + This package includes the utilities bgzip and tabix -A C library for reading/writing high-throughput sequencing data. This package includes the utilities bgzip and tabix +homepage: [https://www.htslib.org/](https://www.htslib.org/) -https://www.htslib.org/ -# Available modules +## Available installations -The overview below shows which HTSlib installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using HTSlib, load one of these modules using a `module load` command like: - -```shell -module load HTSlib/1.19.1-GCC-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|HTSlib/1.19.1-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|HTSlib/1.18-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|HTSlib/1.17-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|HTSlib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.22.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`HTSlib/1.22.1-GCC-14.3.0`| +|1.21|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`HTSlib/1.21-GCC-13.3.0`| +|1.19.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HTSlib/1.19.1-GCC-13.2.0`| +|1.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HTSlib/1.18-GCC-12.3.0`| +|1.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HTSlib/1.17-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/HarfBuzz.md b/docs/available_software/detail/HarfBuzz.md index 42a91b167f..20b4a936d0 100644 --- a/docs/available_software/detail/HarfBuzz.md +++ b/docs/available_software/detail/HarfBuzz.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''HarfBuzz/5.3.1-GCCcore-12.2.0'', ''HarfBuzz/5.3.1-GCCcore-12.3.0'', - ''HarfBuzz/8.2.2-GCCcore-13.2.0'']' + softwareVersion: '[''11.4.1'', ''11.2.1'', ''9.0.0'', ''8.2.2'', ''5.3.1'']' url: https://www.freedesktop.org/wiki/Software/HarfBuzz --- - -HarfBuzz -======== +# HarfBuzz HarfBuzz is an OpenType text shaping engine. -https://www.freedesktop.org/wiki/Software/HarfBuzz -# Available modules - - -The overview below shows which HarfBuzz installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using HarfBuzz, load one of these modules using a `module load` command like: +homepage: [https://www.freedesktop.org/wiki/Software/HarfBuzz](https://www.freedesktop.org/wiki/Software/HarfBuzz) -```shell -module load HarfBuzz/8.2.2-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|HarfBuzz/8.2.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|HarfBuzz/5.3.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|HarfBuzz/5.3.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|HarfBuzz version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|11.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`HarfBuzz/11.4.1-GCCcore-14.3.0`| +|11.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`HarfBuzz/11.2.1-GCCcore-14.2.0`| +|9.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`HarfBuzz/9.0.0-GCCcore-13.3.0`| +|8.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HarfBuzz/8.2.2-GCCcore-13.2.0`| +|5.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HarfBuzz/5.3.1-GCCcore-12.3.0`| +|5.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HarfBuzz/5.3.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/HeFFTe.md b/docs/available_software/detail/HeFFTe.md index 902bf2a37e..44387204b2 100644 --- a/docs/available_software/detail/HeFFTe.md +++ b/docs/available_software/detail/HeFFTe.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''HeFFTe/2.4.1-foss-2023b'']' + softwareVersion: '[''2.4.1'']' url: https://icl.utk.edu/fft --- - -HeFFTe -====== +# HeFFTe Highly Efficient FFT for Exascale (HeFFTe) library -https://icl.utk.edu/fft -# Available modules - - -The overview below shows which HeFFTe installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using HeFFTe, load one of these modules using a `module load` command like: +homepage: [https://icl.utk.edu/fft](https://icl.utk.edu/fft) -```shell -module load HeFFTe/2.4.1-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|HeFFTe/2.4.1-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|HeFFTe version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`HeFFTe/2.4.1-foss-2025a`| +|2.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HeFFTe/2.4.1-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/HepMC3.md b/docs/available_software/detail/HepMC3.md index 2a671ad729..26a10869f3 100644 --- a/docs/available_software/detail/HepMC3.md +++ b/docs/available_software/detail/HepMC3.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''HepMC3/3.2.6-GCC-12.3.0'']' + softwareVersion: '[''3.2.6'']' url: http://hepmc.web.cern.ch/hepmc/ --- - -HepMC3 -====== +# HepMC3 HepMC is a standard for storing Monte Carlo event data. -http://hepmc.web.cern.ch/hepmc/ -# Available modules - - -The overview below shows which HepMC3 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using HepMC3, load one of these modules using a `module load` command like: +homepage: [http://hepmc.web.cern.ch/hepmc/](http://hepmc.web.cern.ch/hepmc/) -```shell -module load HepMC3/3.2.6-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|HepMC3/3.2.6-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|HepMC3 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.2.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`HepMC3/3.2.6-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Highway.md b/docs/available_software/detail/Highway.md index ac37ed50bb..a55af19547 100644 --- a/docs/available_software/detail/Highway.md +++ b/docs/available_software/detail/Highway.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Highway is a C++ library for SIMD (Single Instruction, Multiple Data), - i.e. applying the sameoperation to 'lanes'. + description: 'Highway is a C++ library for SIMD (Single Instruction, Multiple Data), + i.e. applying the same + + operation to ''lanes''.' license: Not confirmed name: Highway offers: @@ -25,31 +25,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Highway/1.0.3-GCCcore-12.2.0'', ''Highway/1.0.4-GCCcore-12.3.0'']' + softwareVersion: '[''1.0.4'', ''1.0.3'']' url: https://github.com/google/highway --- - -Highway -======= - - -Highway is a C++ library for SIMD (Single Instruction, Multiple Data), i.e. applying the sameoperation to 'lanes'. - -https://github.com/google/highway -# Available modules +# Highway -The overview below shows which Highway installations are available per target architecture in EESSI, ordered based on software version (new to old). +Highway is a C++ library for SIMD (Single Instruction, Multiple Data), i.e. applying the same +operation to 'lanes'. -To start using Highway, load one of these modules using a `module load` command like: +homepage: [https://github.com/google/highway](https://github.com/google/highway) -```shell -module load Highway/1.0.4-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Highway/1.0.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Highway/1.0.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Highway version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Highway/1.0.4-GCCcore-12.3.0`| +|1.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Highway/1.0.3-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Hypre.md b/docs/available_software/detail/Hypre.md index 48df528893..47b0a30fb1 100644 --- a/docs/available_software/detail/Hypre.md +++ b/docs/available_software/detail/Hypre.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Hypre is a library for solving large, sparse linear systems of equations - on massively parallel computers. The problems of interest arise in the simulation - codes being developed at LLNL and elsewhere to study physical phenomena in the - defense, environmental, energy, and biological sciences. + description: "Hypre is a library for solving large, sparse linear systems of equations\ + \ on massively\n parallel computers. The problems of interest arise in the simulation\ + \ codes being developed at LLNL\n and elsewhere to study physical phenomena in\ + \ the defense, environmental, energy, and biological sciences." license: Not confirmed name: Hypre offers: @@ -27,31 +25,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Hypre/2.29.0-foss-2023a'', ''Hypre/2.31.0-foss-2023b'']' + softwareVersion: '[''2.33.0'', ''2.31.0'', ''2.29.0'']' url: https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods --- +# Hypre -Hypre -===== +Hypre is a library for solving large, sparse linear systems of equations on massively + parallel computers. The problems of interest arise in the simulation codes being developed at LLNL + and elsewhere to study physical phenomena in the defense, environmental, energy, and biological sciences. -Hypre is a library for solving large, sparse linear systems of equations on massively parallel computers. The problems of interest arise in the simulation codes being developed at LLNL and elsewhere to study physical phenomena in the defense, environmental, energy, and biological sciences. +homepage: [https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods](https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods) -https://computation.llnl.gov/projects/hypre-scalable-linear-solvers-multigrid-methods -# Available modules +## Available installations -The overview below shows which Hypre installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Hypre, load one of these modules using a `module load` command like: - -```shell -module load Hypre/2.31.0-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Hypre/2.31.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Hypre/2.29.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Hypre version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.33.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Hypre/2.33.0-foss-2025a`| +|2.31.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Hypre/2.31.0-foss-2023b`| +|2.29.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Hypre/2.29.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ICU.md b/docs/available_software/detail/ICU.md index 9057cd0550..bef2c9eb85 100644 --- a/docs/available_software/detail/ICU.md +++ b/docs/available_software/detail/ICU.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: ICU is a mature, widely used set of C/C++ and Java libraries providing - Unicode and Globalization support for software applications. + description: "ICU is a mature, widely used set of C/C++ and Java libraries providing\ + \ Unicode and Globalization\n support for software applications." license: Not confirmed name: ICU offers: @@ -25,32 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ICU/72.1-GCCcore-12.2.0'', ''ICU/73.2-GCCcore-12.3.0'', ''ICU/74.1-GCCcore-13.2.0'']' + softwareVersion: '[''77.1'', ''76.1'', ''75.1'', ''74.1'', ''73.2'', ''72.1'']' url: https://icu.unicode.org --- +# ICU -ICU -=== +ICU is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization + support for software applications. -ICU is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization support for software applications. +homepage: [https://icu.unicode.org](https://icu.unicode.org) -https://icu.unicode.org -# Available modules +## Available installations -The overview below shows which ICU installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ICU, load one of these modules using a `module load` command like: - -```shell -module load ICU/74.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ICU/74.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ICU/73.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ICU/72.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ICU version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|77.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ICU/77.1-GCCcore-14.3.0`| +|76.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ICU/76.1-GCCcore-14.2.0`| +|75.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ICU/75.1-GCCcore-13.3.0`| +|74.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ICU/74.1-GCCcore-13.2.0`| +|73.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ICU/73.2-GCCcore-12.3.0`| +|72.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ICU/72.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/IDG.md b/docs/available_software/detail/IDG.md index 88c063f88a..7f258026b5 100644 --- a/docs/available_software/detail/IDG.md +++ b/docs/available_software/detail/IDG.md @@ -1,17 +1,27 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication description: 'Image Domain Gridding (IDG) is a fast method for convolutional resampling - (gridding/degridding)of radio astronomical data (visibilities). Direction dependent - effects (DDEs) or A-tems can be appliedin the gridding process.The algorithm is - described in "Image Domain Gridding: a fast method for convolutional resampling - of visibilities",Van der Tol (2018).The implementation is described in "Radio-astronomical - imaging on graphics processors", Veenboer (2020).Please cite these papers in publications - using IDG.' + (gridding/degridding) + + of radio astronomical data (visibilities). Direction dependent effects (DDEs) + or A-tems can be applied + + in the gridding process. + + The algorithm is described in "Image Domain Gridding: a fast method for convolutional + resampling of visibilities", + + Van der Tol (2018). + + The implementation is described in "Radio-astronomical imaging on graphics processors", + Veenboer (2020). + + Please cite these papers in publications using IDG. + + ' license: Not confirmed name: IDG offers: @@ -30,30 +40,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''IDG/1.2.0-foss-2023b'']' + softwareVersion: '[''1.2.0'']' url: https://idg.readthedocs.io/ --- +# IDG -IDG -=== - - -Image Domain Gridding (IDG) is a fast method for convolutional resampling (gridding/degridding)of radio astronomical data (visibilities). Direction dependent effects (DDEs) or A-tems can be appliedin the gridding process.The algorithm is described in "Image Domain Gridding: a fast method for convolutional resampling of visibilities",Van der Tol (2018).The implementation is described in "Radio-astronomical imaging on graphics processors", Veenboer (2020).Please cite these papers in publications using IDG. - -https://idg.readthedocs.io/ -# Available modules +Image Domain Gridding (IDG) is a fast method for convolutional resampling (gridding/degridding) +of radio astronomical data (visibilities). Direction dependent effects (DDEs) or A-tems can be applied +in the gridding process. +The algorithm is described in "Image Domain Gridding: a fast method for convolutional resampling of visibilities", +Van der Tol (2018). +The implementation is described in "Radio-astronomical imaging on graphics processors", Veenboer (2020). +Please cite these papers in publications using IDG. -The overview below shows which IDG installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using IDG, load one of these modules using a `module load` command like: +homepage: [https://idg.readthedocs.io/](https://idg.readthedocs.io/) -```shell -module load IDG/1.2.0-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|IDG/1.2.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|IDG version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`IDG/1.2.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/IPython.md b/docs/available_software/detail/IPython.md index 05c462648e..6549f2d294 100644 --- a/docs/available_software/detail/IPython.md +++ b/docs/available_software/detail/IPython.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'IPython provides a rich architecture for interactive computing with: - Powerful interactive shells (terminal and Qt-based). A browser-based notebook - with support for code, text, mathematical expressions, inline plots and other - rich media. Support for interactive data visualization and use of GUI toolkits. - Flexible, embeddable interpreters to load into your own projects. Easy to use, - high performance tools for parallel computing.' + description: "IPython provides a rich architecture for interactive computing with:\n\ + \ Powerful interactive shells (terminal and Qt-based).\n A browser-based notebook\ + \ with support for code, text, mathematical expressions, inline plots and other\ + \ rich media.\n Support for interactive data visualization and use of GUI toolkits.\n\ + \ Flexible, embeddable interpreters to load into your own projects.\n Easy to\ + \ use, high performance tools for parallel computing." license: Not confirmed name: IPython offers: @@ -29,44 +27,145 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''IPython/8.14.0-GCCcore-12.3.0'', ''IPython/8.17.2-GCCcore-13.2.0'']' + softwareVersion: '[''9.4.0'', ''9.3.0'', ''8.28.0'', ''8.17.2'', ''8.14.0'']' url: https://ipython.org/index.html --- +# IPython -IPython -======= +IPython provides a rich architecture for interactive computing with: + Powerful interactive shells (terminal and Qt-based). + A browser-based notebook with support for code, text, mathematical expressions, inline plots and other rich media. + Support for interactive data visualization and use of GUI toolkits. + Flexible, embeddable interpreters to load into your own projects. + Easy to use, high performance tools for parallel computing. -IPython provides a rich architecture for interactive computing with: Powerful interactive shells (terminal and Qt-based). A browser-based notebook with support for code, text, mathematical expressions, inline plots and other rich media. Support for interactive data visualization and use of GUI toolkits. Flexible, embeddable interpreters to load into your own projects. Easy to use, high performance tools for parallel computing. +homepage: [https://ipython.org/index.html](https://ipython.org/index.html) -https://ipython.org/index.html -# Available modules +## Available installations -The overview below shows which IPython installations are available per target architecture in EESSI, ordered based on software version (new to old). +|IPython version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`IPython/9.4.0-GCCcore-14.3.0`| +|9.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`IPython/9.3.0-GCCcore-14.2.0`| +|8.28.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`IPython/8.28.0-GCCcore-13.3.0`| +|8.17.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`IPython/8.17.2-GCCcore-13.2.0`| +|8.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`IPython/8.14.0-GCCcore-12.3.0`| -To start using IPython, load one of these modules using a `module load` command like: +## Extensions -```shell -module load IPython/8.17.2-GCCcore-13.2.0 -``` +Overview of extensions included in IPython installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|IPython/8.17.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|IPython/8.14.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### asttokens -### IPython/8.17.2-GCCcore-13.2.0 +|`asttokens` version|IPython modules that include it| +| --- | --- | +|3.0.0|`IPython/9.4.0-GCCcore-14.3.0`
`IPython/9.3.0-GCCcore-14.2.0`| +|2.4.1|`IPython/8.28.0-GCCcore-13.3.0`
`IPython/8.17.2-GCCcore-13.2.0`| +|2.2.1|`IPython/8.14.0-GCCcore-12.3.0`| -This is a list of extensions included in the module: +### backcall -asttokens-2.4.1, backcall-0.2.0, executing-2.0.1, ipython-8.17.2, matplotlib-inline-0.1.6, pickleshare-0.7.5, prompt_toolkit-3.0.41, pure_eval-0.2.2, stack_data-0.6.3, traitlets-5.13.0 -### IPython/8.14.0-GCCcore-12.3.0 +|`backcall` version|IPython modules that include it| +| --- | --- | +|0.2.0|`IPython/9.4.0-GCCcore-14.3.0`
`IPython/9.3.0-GCCcore-14.2.0`
`IPython/8.28.0-GCCcore-13.3.0`
`IPython/8.17.2-GCCcore-13.2.0`
`IPython/8.14.0-GCCcore-12.3.0`| -This is a list of extensions included in the module: +### executing -asttokens-2.2.1, backcall-0.2.0, executing-1.2.0, ipython-8.14.0, jedi-0.19.0, matplotlib-inline-0.1.6, parso-0.8.3, pickleshare-0.7.5, prompt_toolkit-3.0.39, pure_eval-0.2.2, stack_data-0.6.2, traitlets-5.9.0 \ No newline at end of file + +|`executing` version|IPython modules that include it| +| --- | --- | +|2.2.0|`IPython/9.4.0-GCCcore-14.3.0`
`IPython/9.3.0-GCCcore-14.2.0`| +|2.0.1|`IPython/8.28.0-GCCcore-13.3.0`
`IPython/8.17.2-GCCcore-13.2.0`| +|1.2.0|`IPython/8.14.0-GCCcore-12.3.0`| + +### ipython + + +|`ipython` version|IPython modules that include it| +| --- | --- | +|9.4.0|`IPython/9.4.0-GCCcore-14.3.0`| +|9.3.0|`IPython/9.3.0-GCCcore-14.2.0`| +|8.28.0|`IPython/8.28.0-GCCcore-13.3.0`| +|8.17.2|`IPython/8.17.2-GCCcore-13.2.0`| +|8.14.0|`IPython/8.14.0-GCCcore-12.3.0`| + +### ipython_pygments_lexers + + +|`ipython_pygments_lexers` version|IPython modules that include it| +| --- | --- | +|1.1.1|`IPython/9.4.0-GCCcore-14.3.0`
`IPython/9.3.0-GCCcore-14.2.0`| + +### jedi + + +|`jedi` version|IPython modules that include it| +| --- | --- | +|0.19.0|`IPython/8.14.0-GCCcore-12.3.0`| + +### matplotlib-inline + + +|`matplotlib-inline` version|IPython modules that include it| +| --- | --- | +|0.1.6|`IPython/8.28.0-GCCcore-13.3.0`
`IPython/8.17.2-GCCcore-13.2.0`
`IPython/8.14.0-GCCcore-12.3.0`| + +### matplotlib_inline + + +|`matplotlib_inline` version|IPython modules that include it| +| --- | --- | +|0.1.7|`IPython/9.4.0-GCCcore-14.3.0`
`IPython/9.3.0-GCCcore-14.2.0`| + +### parso + + +|`parso` version|IPython modules that include it| +| --- | --- | +|0.8.3|`IPython/8.14.0-GCCcore-12.3.0`| + +### pickleshare + + +|`pickleshare` version|IPython modules that include it| +| --- | --- | +|0.7.5|`IPython/9.4.0-GCCcore-14.3.0`
`IPython/9.3.0-GCCcore-14.2.0`
`IPython/8.28.0-GCCcore-13.3.0`
`IPython/8.17.2-GCCcore-13.2.0`
`IPython/8.14.0-GCCcore-12.3.0`| + +### prompt_toolkit + + +|`prompt_toolkit` version|IPython modules that include it| +| --- | --- | +|3.0.51|`IPython/9.4.0-GCCcore-14.3.0`
`IPython/9.3.0-GCCcore-14.2.0`| +|3.0.41|`IPython/8.28.0-GCCcore-13.3.0`
`IPython/8.17.2-GCCcore-13.2.0`| +|3.0.39|`IPython/8.14.0-GCCcore-12.3.0`| + +### pure_eval + + +|`pure_eval` version|IPython modules that include it| +| --- | --- | +|0.2.3|`IPython/9.4.0-GCCcore-14.3.0`
`IPython/9.3.0-GCCcore-14.2.0`| +|0.2.2|`IPython/8.28.0-GCCcore-13.3.0`
`IPython/8.17.2-GCCcore-13.2.0`
`IPython/8.14.0-GCCcore-12.3.0`| + +### stack_data + + +|`stack_data` version|IPython modules that include it| +| --- | --- | +|0.6.3|`IPython/9.4.0-GCCcore-14.3.0`
`IPython/9.3.0-GCCcore-14.2.0`
`IPython/8.28.0-GCCcore-13.3.0`
`IPython/8.17.2-GCCcore-13.2.0`| +|0.6.2|`IPython/8.14.0-GCCcore-12.3.0`| + +### traitlets + + +|`traitlets` version|IPython modules that include it| +| --- | --- | +|5.14.3|`IPython/9.4.0-GCCcore-14.3.0`
`IPython/9.3.0-GCCcore-14.2.0`| +|5.13.0|`IPython/8.28.0-GCCcore-13.3.0`
`IPython/8.17.2-GCCcore-13.2.0`| +|5.9.0|`IPython/8.14.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/IQ-TREE.md b/docs/available_software/detail/IQ-TREE.md index 7ed1a30be9..218b954308 100644 --- a/docs/available_software/detail/IQ-TREE.md +++ b/docs/available_software/detail/IQ-TREE.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''IQ-TREE/2.3.5-gompi-2023a'']' + softwareVersion: '[''3.1.2'', ''2.3.5'']' url: http://www.iqtree.org/ --- - -IQ-TREE -======= +# IQ-TREE Efficient phylogenomic software by maximum likelihood -http://www.iqtree.org/ -# Available modules - - -The overview below shows which IQ-TREE installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using IQ-TREE, load one of these modules using a `module load` command like: +homepage: [http://www.iqtree.org/](http://www.iqtree.org/) -```shell -module load IQ-TREE/2.3.5-gompi-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|IQ-TREE/2.3.5-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|IQ-TREE version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`IQ-TREE/3.1.2-gompi-2025a`| +|2.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`IQ-TREE/2.3.5-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ISA-L.md b/docs/available_software/detail/ISA-L.md index f9b2de6185..a19ca2b067 100644 --- a/docs/available_software/detail/ISA-L.md +++ b/docs/available_software/detail/ISA-L.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ISA-L/2.30.0-GCCcore-12.2.0'', ''ISA-L/2.30.0-GCCcore-12.3.0'', - ''ISA-L/2.31.0-GCCcore-13.2.0'']' + softwareVersion: '[''2.31.0'', ''2.30.0'']' url: https://github.com/intel/isa-l --- - -ISA-L -===== +# ISA-L Intelligent Storage Acceleration Library -https://github.com/intel/isa-l -# Available modules - - -The overview below shows which ISA-L installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ISA-L, load one of these modules using a `module load` command like: +homepage: [https://github.com/intel/isa-l](https://github.com/intel/isa-l) -```shell -module load ISA-L/2.31.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ISA-L/2.31.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ISA-L/2.30.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ISA-L/2.30.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ISA-L version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.31.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ISA-L/2.31.0-GCCcore-13.2.0`| +|2.30.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ISA-L/2.30.0-GCCcore-12.3.0`| +|2.30.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ISA-L/2.30.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ISL.md b/docs/available_software/detail/ISL.md index 7506ab68e5..5c2cdf94f5 100644 --- a/docs/available_software/detail/ISL.md +++ b/docs/available_software/detail/ISL.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ISL/0.26-GCCcore-12.3.0'']' + softwareVersion: '[''0.27'', ''0.26'']' url: https://libisl.sourceforge.io --- - -ISL -=== +# ISL isl is a library for manipulating sets and relations of integer points bounded by linear constraints. -https://libisl.sourceforge.io -# Available modules - - -The overview below shows which ISL installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ISL, load one of these modules using a `module load` command like: +homepage: [https://libisl.sourceforge.io](https://libisl.sourceforge.io) -```shell -module load ISL/0.26-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ISL/0.26-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ISL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.27|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ISL/0.27-GCCcore-14.3.0`| +|0.27|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ISL/0.27-GCCcore-14.2.0`| +|0.26|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ISL/0.26-GCCcore-13.3.0`| +|0.26|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ISL/0.26-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ITSTool.md b/docs/available_software/detail/ITSTool.md index ac0cd30c50..e3c38e0473 100644 --- a/docs/available_software/detail/ITSTool.md +++ b/docs/available_software/detail/ITSTool.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ITSTool/2.0.7-GCCcore-12.3.0'']' + softwareVersion: '[''2.0.7'']' url: http://itstool.org/ --- - -ITSTool -======= +# ITSTool ITS Tool allows you to translate your XML documents with PO files -http://itstool.org/ -# Available modules - - -The overview below shows which ITSTool installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ITSTool, load one of these modules using a `module load` command like: +homepage: [http://itstool.org/](http://itstool.org/) -```shell -module load ITSTool/2.0.7-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ITSTool/2.0.7-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ITSTool version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ITSTool/2.0.7-GCCcore-14.3.0`| +|2.0.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ITSTool/2.0.7-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ImageMagick.md b/docs/available_software/detail/ImageMagick.md index acc7b612d4..9847ee1473 100644 --- a/docs/available_software/detail/ImageMagick.md +++ b/docs/available_software/detail/ImageMagick.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ImageMagick/7.1.0-53-GCCcore-12.2.0'', ''ImageMagick/7.1.1-15-GCCcore-12.3.0'', - ''ImageMagick/7.1.1-34-GCCcore-13.2.0'']' + softwareVersion: '[''7.1.1-38'', ''7.1.1-34'', ''7.1.1-15'', ''7.1.0-53'']' url: https://www.imagemagick.org/ --- - -ImageMagick -=========== +# ImageMagick ImageMagick is a software suite to create, edit, compose, or convert bitmap images -https://www.imagemagick.org/ -# Available modules - - -The overview below shows which ImageMagick installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ImageMagick, load one of these modules using a `module load` command like: +homepage: [https://www.imagemagick.org/](https://www.imagemagick.org/) -```shell -module load ImageMagick/7.1.1-34-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ImageMagick/7.1.1-34-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ImageMagick/7.1.1-15-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ImageMagick/7.1.0-53-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ImageMagick version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.1.1-38|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ImageMagick/7.1.1-38-GCCcore-13.3.0`| +|7.1.1-34|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ImageMagick/7.1.1-34-GCCcore-13.2.0`| +|7.1.1-15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ImageMagick/7.1.1-15-GCCcore-12.3.0`| +|7.1.0-53|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ImageMagick/7.1.0-53-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Imath.md b/docs/available_software/detail/Imath.md index 7dcf6df157..2641415487 100644 --- a/docs/available_software/detail/Imath.md +++ b/docs/available_software/detail/Imath.md @@ -1,12 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Imath is a C++ and python library of 2D and 3D vector, matrix, and - math operations for computer graphics + description: ' + + Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations + for computer graphics + + ' license: Not confirmed name: Imath offers: @@ -25,33 +27,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Imath/3.1.6-GCCcore-12.2.0'', ''Imath/3.1.7-GCCcore-12.3.0'', - ''Imath/3.1.9-GCCcore-13.2.0'']' + softwareVersion: '[''3.1.12'', ''3.1.11'', ''3.1.9'', ''3.1.7'', ''3.1.6'']' url: https://imath.readthedocs.io/en/latest/ --- +# Imath -Imath -===== Imath is a C++ and python library of 2D and 3D vector, matrix, and math operations for computer graphics -https://imath.readthedocs.io/en/latest/ -# Available modules - - -The overview below shows which Imath installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using Imath, load one of these modules using a `module load` command like: +homepage: [https://imath.readthedocs.io/en/latest/](https://imath.readthedocs.io/en/latest/) -```shell -module load Imath/3.1.9-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Imath/3.1.9-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Imath/3.1.7-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Imath/3.1.6-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Imath version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Imath/3.1.12-GCCcore-14.3.0`| +|3.1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Imath/3.1.12-GCCcore-14.2.0`| +|3.1.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Imath/3.1.11-GCCcore-13.3.0`| +|3.1.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Imath/3.1.9-GCCcore-13.2.0`| +|3.1.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Imath/3.1.7-GCCcore-12.3.0`| +|3.1.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Imath/3.1.6-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Imlib2.md b/docs/available_software/detail/Imlib2.md new file mode 100644 index 0000000000..b87216c7d7 --- /dev/null +++ b/docs/available_software/detail/Imlib2.md @@ -0,0 +1,58 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' + + This is the Imlib 2 library - a library that does image file loading and + + saving as well as rendering, manipulation, arbitrary polygon support, etc. + + It does ALL of these operations FAST. Imlib2 also tries to be highly + + intelligent about doing them, so writing naive programs can be done + + easily, without sacrificing speed. + + ' + license: Not confirmed + name: Imlib2 + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.12.3'']' + url: https://docs.enlightenment.org/api/imlib2/html/ +--- +# Imlib2 + + + +This is the Imlib 2 library - a library that does image file loading and +saving as well as rendering, manipulation, arbitrary polygon support, etc. +It does ALL of these operations FAST. Imlib2 also tries to be highly +intelligent about doing them, so writing naive programs can be done +easily, without sacrificing speed. + + +homepage: [https://docs.enlightenment.org/api/imlib2/html/](https://docs.enlightenment.org/api/imlib2/html/) + +## Available installations + + +|Imlib2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.12.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Imlib2/1.12.3-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/JUBE.md b/docs/available_software/detail/JUBE.md new file mode 100644 index 0000000000..17ed4333d8 --- /dev/null +++ b/docs/available_software/detail/JUBE.md @@ -0,0 +1,49 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'The JUBE benchmarking environment provides a script based + + framework to easily create benchmark sets, run those sets on different + + computer systems and evaluate the results. + + ' + license: Not confirmed + name: JUBE + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.7.1'']' + url: https://www.fz-juelich.de/jsc/jube +--- +# JUBE + + +The JUBE benchmarking environment provides a script based +framework to easily create benchmark sets, run those sets on different +computer systems and evaluate the results. + + +homepage: [https://www.fz-juelich.de/jsc/jube](https://www.fz-juelich.de/jsc/jube) + +## Available installations + + +|JUBE version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`JUBE/2.7.1-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Jansson.md b/docs/available_software/detail/Jansson.md index 8d6cb81f6b..b8fe040ef3 100644 --- a/docs/available_software/detail/Jansson.md +++ b/docs/available_software/detail/Jansson.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'Jansson is a C library for encoding, decoding and manipulating JSON - data. Its main features and design principles are: * Simple and intuitive API - and data model * Comprehensive documentation * No dependencies on other libraries - * Full Unicode support (UTF-8) * Extensive test suite' + description: "Jansson is a C library for encoding, decoding and manipulating JSON\ + \ data.\n Its main features and design principles are:\n * Simple and intuitive\ + \ API and data model\n * Comprehensive documentation\n * No dependencies on other\ + \ libraries\n * Full Unicode support (UTF-8)\n * Extensive test suite" license: Not confirmed name: Jansson offers: @@ -27,30 +25,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Jansson/2.14-GCC-12.3.0'']' + softwareVersion: '[''2.14.1'', ''2.14'']' url: https://www.digip.org/jansson/ --- +# Jansson -Jansson -======= +Jansson is a C library for encoding, decoding and manipulating JSON data. + Its main features and design principles are: + * Simple and intuitive API and data model + * Comprehensive documentation + * No dependencies on other libraries + * Full Unicode support (UTF-8) + * Extensive test suite -Jansson is a C library for encoding, decoding and manipulating JSON data. Its main features and design principles are: * Simple and intuitive API and data model * Comprehensive documentation * No dependencies on other libraries * Full Unicode support (UTF-8) * Extensive test suite +homepage: [https://www.digip.org/jansson/](https://www.digip.org/jansson/) -https://www.digip.org/jansson/ -# Available modules +## Available installations -The overview below shows which Jansson installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Jansson, load one of these modules using a `module load` command like: - -```shell -module load Jansson/2.14-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Jansson/2.14-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Jansson version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.14.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Jansson/2.14.1-GCCcore-13.3.0`| +|2.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Jansson/2.14-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/JasPer.md b/docs/available_software/detail/JasPer.md index 96f7682143..a85c337f2f 100644 --- a/docs/available_software/detail/JasPer.md +++ b/docs/available_software/detail/JasPer.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The JasPer Project is an open-source initiative to provide a free software-based - reference implementation of the codec specified in the JPEG-2000 Part-1 standard. + description: "\n The JasPer Project is an open-source initiative to provide a free\n\ + \ software-based reference implementation of the codec specified in\n the JPEG-2000\ + \ Part-1 standard.\n" license: Not confirmed name: JasPer offers: @@ -25,33 +24,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''JasPer/4.0.0-GCCcore-12.2.0'', ''JasPer/4.0.0-GCCcore-12.3.0'', - ''JasPer/4.0.0-GCCcore-13.2.0'']' + softwareVersion: '[''4.2.8'', ''4.2.5'', ''4.2.4'', ''4.0.0'']' url: https://www.ece.uvic.ca/~frodo/jasper/ --- +# JasPer -JasPer -====== -The JasPer Project is an open-source initiative to provide a free software-based reference implementation of the codec specified in the JPEG-2000 Part-1 standard. + The JasPer Project is an open-source initiative to provide a free + software-based reference implementation of the codec specified in + the JPEG-2000 Part-1 standard. -https://www.ece.uvic.ca/~frodo/jasper/ -# Available modules +homepage: [https://www.ece.uvic.ca/~frodo/jasper/](https://www.ece.uvic.ca/~frodo/jasper/) -The overview below shows which JasPer installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using JasPer, load one of these modules using a `module load` command like: -```shell -module load JasPer/4.0.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|JasPer/4.0.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|JasPer/4.0.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|JasPer/4.0.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|JasPer version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.2.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`JasPer/4.2.8-GCCcore-14.3.0`| +|4.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`JasPer/4.2.5-GCCcore-14.2.0`| +|4.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`JasPer/4.2.4-GCCcore-13.3.0`| +|4.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`JasPer/4.0.0-GCCcore-13.2.0`| +|4.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`JasPer/4.0.0-GCCcore-12.3.0`| +|4.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`JasPer/4.0.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Java.md b/docs/available_software/detail/Java.md index 8cff9548e2..42eaa6ce75 100644 --- a/docs/available_software/detail/Java.md +++ b/docs/available_software/detail/Java.md @@ -1,11 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: '' + description: 'Java Platform, Standard Edition (Java SE) lets you develop and deploy + + Java applications on desktops and servers.' license: Not confirmed name: Java offers: @@ -24,36 +24,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Java/11(@Java/11.0.27)'', ''Java/11.0.20'', ''Java/11.0.27'', - ''Java/17(@Java/17.0.15)'', ''Java/17.0.6'', ''Java/17.0.15'', ''Java/21(@Java/21.0.7)'', - ''Java/21.0.5'', ''Java/21.0.7'']' - url: '' + softwareVersion: '[''21.0.8'', ''21.0.7'', ''21.0.5'', ''17.0.15'', ''17.0.6'', + ''11.0.27'', ''11.0.20'']' + url: http://openjdk.java.net --- - -Java -==== - -# Available modules +# Java -The overview below shows which Java installations are available per target architecture in EESSI, ordered based on software version (new to old). +Java Platform, Standard Edition (Java SE) lets you develop and deploy +Java applications on desktops and servers. -To start using Java, load one of these modules using a `module load` command like: +homepage: [http://openjdk.java.net](http://openjdk.java.net) -```shell -module load Java/21.0.7 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Java/21.0.7|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Java/21.0.5|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Java/21(@Java/21.0.7)|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Java/17.0.15|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Java/17.0.6|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Java/17(@Java/17.0.15)|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Java/11.0.27|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Java/11.0.20|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Java/11(@Java/11.0.27)|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Java version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|21.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Java/21.0.8`| +|21.0.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Java/21.0.7`| +|21.0.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Java/21.0.5`| +|17.0.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Java/17.0.15`| +|17.0.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Java/17.0.15`| +|17.0.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Java/17.0.6`| +|11.0.27|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Java/11.0.27`| +|11.0.20|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Java/11.0.20`| \ No newline at end of file diff --git a/docs/available_software/detail/JsonCpp.md b/docs/available_software/detail/JsonCpp.md index 4785015a11..9a8d65467f 100644 --- a/docs/available_software/detail/JsonCpp.md +++ b/docs/available_software/detail/JsonCpp.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: JsonCpp is a C++ library that allows manipulating JSON values, including - serialization and deserialization to and from strings. It can also preserve existing - comment in unserialization/serialization steps, making it a convenient format - to store user input files. + description: " JsonCpp is a C++ library that allows manipulating JSON values,\n\ + \ including serialization and deserialization to and from strings. It can also\ + \ preserve existing comment in\n unserialization/serialization steps, making it\ + \ a convenient format to store user input files. " license: Not confirmed name: JsonCpp offers: @@ -27,30 +25,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''JsonCpp/1.9.5-GCCcore-12.3.0'']' + softwareVersion: '[''1.9.5'']' url: https://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.html --- +# JsonCpp -JsonCpp -======= + JsonCpp is a C++ library that allows manipulating JSON values, + including serialization and deserialization to and from strings. It can also preserve existing comment in + unserialization/serialization steps, making it a convenient format to store user input files. -JsonCpp is a C++ library that allows manipulating JSON values, including serialization and deserialization to and from strings. It can also preserve existing comment in unserialization/serialization steps, making it a convenient format to store user input files. +homepage: [https://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.html](https://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.html) -https://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.html -# Available modules +## Available installations -The overview below shows which JsonCpp installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using JsonCpp, load one of these modules using a `module load` command like: - -```shell -module load JsonCpp/1.9.5-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|JsonCpp/1.9.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|JsonCpp version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`JsonCpp/1.9.5-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Judy.md b/docs/available_software/detail/Judy.md index 1a94751722..ef907e78ca 100644 --- a/docs/available_software/detail/Judy.md +++ b/docs/available_software/detail/Judy.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Judy/1.0.5-GCCcore-12.2.0'', ''Judy/1.0.5-GCCcore-12.3.0'']' + softwareVersion: '[''1.0.5'']' url: http://judy.sourceforge.net/ --- - -Judy -==== +# Judy A C library that implements a dynamic array. -http://judy.sourceforge.net/ -# Available modules - - -The overview below shows which Judy installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Judy, load one of these modules using a `module load` command like: +homepage: [http://judy.sourceforge.net/](http://judy.sourceforge.net/) -```shell -module load Judy/1.0.5-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Judy/1.0.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Judy/1.0.5-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Judy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Judy/1.0.5-GCCcore-12.3.0`| +|1.0.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Judy/1.0.5-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Julia.md b/docs/available_software/detail/Julia.md new file mode 100644 index 0000000000..29d0631c4b --- /dev/null +++ b/docs/available_software/detail/Julia.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Julia is a high-level, high-performance dynamic programming language + for numerical computing + license: Not confirmed + name: Julia + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.12.2'']' + url: https://julialang.org +--- +# Julia + + +Julia is a high-level, high-performance dynamic programming language for numerical computing + +homepage: [https://julialang.org](https://julialang.org) + +## Available installations + + +|Julia version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.12.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Julia/1.12.2`| \ No newline at end of file diff --git a/docs/available_software/detail/JupyterLab.md b/docs/available_software/detail/JupyterLab.md index f6dbb57840..a4046cce01 100644 --- a/docs/available_software/detail/JupyterLab.md +++ b/docs/available_software/detail/JupyterLab.md @@ -1,14 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: JupyterLab is the next-generation user interface for Project Jupyter - offering all the familiar building blocks of the classic Jupyter Notebook (notebook, - terminal, text editor, file browser, rich outputs, etc.) in a flexible and powerful - user interface. JupyterLab will eventually replace the classic Jupyter Notebook. + description: "JupyterLab is the next-generation user interface for Project Jupyter\ + \ offering all the familiar\n building blocks of the classic Jupyter Notebook\ + \ (notebook, terminal, text editor, file browser, rich outputs,\n etc.) in a flexible\ + \ and powerful user interface. JupyterLab will eventually replace the classic\ + \ Jupyter\n Notebook." license: Not confirmed name: JupyterLab offers: @@ -27,37 +26,111 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''JupyterLab/4.0.5-GCCcore-12.3.0'']' + softwareVersion: '[''4.4.9'', ''4.4.4'', ''4.2.5'', ''4.0.5'']' url: https://jupyter.org/ --- +# JupyterLab -JupyterLab -========== +JupyterLab is the next-generation user interface for Project Jupyter offering all the familiar + building blocks of the classic Jupyter Notebook (notebook, terminal, text editor, file browser, rich outputs, + etc.) in a flexible and powerful user interface. JupyterLab will eventually replace the classic Jupyter + Notebook. -JupyterLab is the next-generation user interface for Project Jupyter offering all the familiar building blocks of the classic Jupyter Notebook (notebook, terminal, text editor, file browser, rich outputs, etc.) in a flexible and powerful user interface. JupyterLab will eventually replace the classic Jupyter Notebook. +homepage: [https://jupyter.org/](https://jupyter.org/) -https://jupyter.org/ -# Available modules +## Available installations -The overview below shows which JupyterLab installations are available per target architecture in EESSI, ordered based on software version (new to old). +|JupyterLab version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.4.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`JupyterLab/4.4.9-GCCcore-14.3.0`| +|4.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`JupyterLab/4.4.4-GCCcore-14.2.0`| +|4.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`JupyterLab/4.2.5-GCCcore-13.3.0`| +|4.0.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`JupyterLab/4.0.5-GCCcore-12.3.0`| -To start using JupyterLab, load one of these modules using a `module load` command like: +## Extensions -```shell -module load JupyterLab/4.0.5-GCCcore-12.3.0 -``` +Overview of extensions included in JupyterLab installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|JupyterLab/4.0.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### async-lru -### JupyterLab/4.0.5-GCCcore-12.3.0 +|`async-lru` version|JupyterLab modules that include it| +| --- | --- | +|2.0.4|`JupyterLab/4.2.5-GCCcore-13.3.0`
`JupyterLab/4.0.5-GCCcore-12.3.0`| -This is a list of extensions included in the module: +### async_lru -async-lru-2.0.4, json5-0.9.14, jupyter-lsp-2.2.0, jupyterlab-4.0.5, jupyterlab_server-2.24.0 \ No newline at end of file + +|`async_lru` version|JupyterLab modules that include it| +| --- | --- | +|2.0.5|`JupyterLab/4.4.9-GCCcore-14.3.0`
`JupyterLab/4.4.4-GCCcore-14.2.0`| + +### h11 + + +|`h11` version|JupyterLab modules that include it| +| --- | --- | +|0.16.0|`JupyterLab/4.4.9-GCCcore-14.3.0`
`JupyterLab/4.4.4-GCCcore-14.2.0`| +|0.14.0|`JupyterLab/4.2.5-GCCcore-13.3.0`| + +### httpcore + + +|`httpcore` version|JupyterLab modules that include it| +| --- | --- | +|1.0.9|`JupyterLab/4.4.9-GCCcore-14.3.0`
`JupyterLab/4.4.4-GCCcore-14.2.0`| +|1.0.6|`JupyterLab/4.2.5-GCCcore-13.3.0`| + +### httpx + + +|`httpx` version|JupyterLab modules that include it| +| --- | --- | +|0.28.1|`JupyterLab/4.4.9-GCCcore-14.3.0`
`JupyterLab/4.4.4-GCCcore-14.2.0`| +|0.27.2|`JupyterLab/4.2.5-GCCcore-13.3.0`| + +### json5 + + +|`json5` version|JupyterLab modules that include it| +| --- | --- | +|0.12.1|`JupyterLab/4.4.9-GCCcore-14.3.0`| +|0.12.0|`JupyterLab/4.4.4-GCCcore-14.2.0`| +|0.9.25|`JupyterLab/4.2.5-GCCcore-13.3.0`| +|0.9.14|`JupyterLab/4.0.5-GCCcore-12.3.0`| + +### jupyter-lsp + + +|`jupyter-lsp` version|JupyterLab modules that include it| +| --- | --- | +|2.2.5|`JupyterLab/4.4.4-GCCcore-14.2.0`
`JupyterLab/4.2.5-GCCcore-13.3.0`| +|2.2.0|`JupyterLab/4.0.5-GCCcore-12.3.0`| + +### jupyter_lsp + + +|`jupyter_lsp` version|JupyterLab modules that include it| +| --- | --- | +|2.3.0|`JupyterLab/4.4.9-GCCcore-14.3.0`| + +### jupyterlab + + +|`jupyterlab` version|JupyterLab modules that include it| +| --- | --- | +|4.4.9|`JupyterLab/4.4.9-GCCcore-14.3.0`| +|4.4.4|`JupyterLab/4.4.4-GCCcore-14.2.0`| +|4.2.5|`JupyterLab/4.2.5-GCCcore-13.3.0`| +|4.0.5|`JupyterLab/4.0.5-GCCcore-12.3.0`| + +### jupyterlab_server + + +|`jupyterlab_server` version|JupyterLab modules that include it| +| --- | --- | +|2.27.3|`JupyterLab/4.4.9-GCCcore-14.3.0`
`JupyterLab/4.4.4-GCCcore-14.2.0`
`JupyterLab/4.2.5-GCCcore-13.3.0`| +|2.24.0|`JupyterLab/4.0.5-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/JupyterNotebook.md b/docs/available_software/detail/JupyterNotebook.md index 9af6bbd2db..a5400052fd 100644 --- a/docs/available_software/detail/JupyterNotebook.md +++ b/docs/available_software/detail/JupyterNotebook.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Jupyter Notebook is the original web application for creating and - sharing computational documents. It offers a simple, streamlined, document-centric - experience. + description: "The Jupyter Notebook is the original web application for creating\ + \ and\n sharing computational documents. It offers a simple, streamlined, document-centric\ + \ experience." license: Not confirmed name: JupyterNotebook offers: @@ -26,30 +24,37 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''JupyterNotebook/7.0.2-GCCcore-12.3.0'']' + softwareVersion: '[''7.4.7'', ''7.4.4'', ''7.2.3'', ''7.0.2'']' url: https://jupyter.org/ --- +# JupyterNotebook -JupyterNotebook -=============== +The Jupyter Notebook is the original web application for creating and + sharing computational documents. It offers a simple, streamlined, document-centric experience. -The Jupyter Notebook is the original web application for creating and sharing computational documents. It offers a simple, streamlined, document-centric experience. +homepage: [https://jupyter.org/](https://jupyter.org/) -https://jupyter.org/ -# Available modules +## Available installations -The overview below shows which JupyterNotebook installations are available per target architecture in EESSI, ordered based on software version (new to old). +|JupyterNotebook version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.4.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`JupyterNotebook/7.4.7-GCCcore-14.3.0`| +|7.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`JupyterNotebook/7.4.4-GCCcore-14.2.0`| +|7.2.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`JupyterNotebook/7.2.3-GCCcore-13.3.0`| +|7.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`JupyterNotebook/7.0.2-GCCcore-12.3.0`| -To start using JupyterNotebook, load one of these modules using a `module load` command like: +## Extensions -```shell -module load JupyterNotebook/7.0.2-GCCcore-12.3.0 -``` +Overview of extensions included in JupyterNotebook installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|JupyterNotebook/7.0.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### notebook + + +|`notebook` version|JupyterNotebook modules that include it| +| --- | --- | +|7.4.7|`JupyterNotebook/7.4.7-GCCcore-14.3.0`| +|7.4.4|`JupyterNotebook/7.4.4-GCCcore-14.2.0`| +|7.2.3|`JupyterNotebook/7.2.3-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/KaHIP.md b/docs/available_software/detail/KaHIP.md index ea7a6ff45c..22c6e474be 100644 --- a/docs/available_software/detail/KaHIP.md +++ b/docs/available_software/detail/KaHIP.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''KaHIP/3.14-gompi-2022b'', ''KaHIP/3.16-gompi-2023a'']' + softwareVersion: '[''3.16'', ''3.14'']' url: https://kahip.github.io/ --- - -KaHIP -===== +# KaHIP The graph partitioning framework KaHIP -- Karlsruhe High Quality Partitioning. -https://kahip.github.io/ -# Available modules - - -The overview below shows which KaHIP installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using KaHIP, load one of these modules using a `module load` command like: +homepage: [https://kahip.github.io/](https://kahip.github.io/) -```shell -module load KaHIP/3.16-gompi-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|KaHIP/3.16-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|KaHIP/3.14-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|KaHIP version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`KaHIP/3.16-gompi-2023a`| +|3.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`KaHIP/3.14-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/KronaTools.md b/docs/available_software/detail/KronaTools.md index e8cbd15d30..128ae0713a 100644 --- a/docs/available_software/detail/KronaTools.md +++ b/docs/available_software/detail/KronaTools.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Krona Tools is a set of scripts to create Krona charts from several - Bioinformatics tools as well as from text and XML files. + description: "Krona Tools is a set of scripts to create Krona charts from \nseveral\ + \ Bioinformatics tools as well as from text and XML files." license: Not confirmed name: KronaTools offers: @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''KronaTools/2.8.1-GCCcore-12.2.0'', ''KronaTools/2.8.1-GCCcore-12.3.0'']' + softwareVersion: '[''2.8.1'']' url: https://github.com/marbl/Krona/wiki/KronaTools --- +# KronaTools -KronaTools -========== +Krona Tools is a set of scripts to create Krona charts from +several Bioinformatics tools as well as from text and XML files. -Krona Tools is a set of scripts to create Krona charts from several Bioinformatics tools as well as from text and XML files. +homepage: [https://github.com/marbl/Krona/wiki/KronaTools](https://github.com/marbl/Krona/wiki/KronaTools) -https://github.com/marbl/Krona/wiki/KronaTools -# Available modules +## Available installations -The overview below shows which KronaTools installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using KronaTools, load one of these modules using a `module load` command like: - -```shell -module load KronaTools/2.8.1-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|KronaTools/2.8.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|KronaTools/2.8.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|KronaTools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`KronaTools/2.8.1-GCCcore-12.3.0`| +|2.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`KronaTools/2.8.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/LAME.md b/docs/available_software/detail/LAME.md index 84925ae566..b89975e742 100644 --- a/docs/available_software/detail/LAME.md +++ b/docs/available_software/detail/LAME.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LAME/3.100-GCCcore-12.2.0'', ''LAME/3.100-GCCcore-12.3.0'', - ''LAME/3.100-GCCcore-13.2.0'']' + softwareVersion: '[''3.100'']' url: http://lame.sourceforge.net/ --- - -LAME -==== +# LAME LAME is a high quality MPEG Audio Layer III (MP3) encoder licensed under the LGPL. -http://lame.sourceforge.net/ -# Available modules - - -The overview below shows which LAME installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using LAME, load one of these modules using a `module load` command like: +homepage: [http://lame.sourceforge.net/](http://lame.sourceforge.net/) -```shell -module load LAME/3.100-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LAME/3.100-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LAME/3.100-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LAME/3.100-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LAME version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.100|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LAME/3.100-GCCcore-14.3.0`| +|3.100|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LAME/3.100-GCCcore-14.2.0`| +|3.100|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LAME/3.100-GCCcore-13.3.0`| +|3.100|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LAME/3.100-GCCcore-13.2.0`| +|3.100|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LAME/3.100-GCCcore-12.3.0`| +|3.100|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LAME/3.100-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/LAMMPS.md b/docs/available_software/detail/LAMMPS.md index 08339d6f2b..627143f43f 100644 --- a/docs/available_software/detail/LAMMPS.md +++ b/docs/available_software/detail/LAMMPS.md @@ -1,18 +1,27 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: LAMMPS is a classical molecular dynamics code, and an acronymfor Large-scale - Atomic/Molecular Massively Parallel Simulator. LAMMPS haspotentials for solid-state - materials (metals, semiconductors) and soft matter(biomolecules, polymers) and - coarse-grained or mesoscopic systems. It can beused to model atoms or, more generically, - as a parallel particle simulator atthe atomic, meso, or continuum scale. LAMMPS - runs on single processors or inparallel using message-passing techniques and a - spatial-decomposition of thesimulation domain. The code is designed to be easy - to modify or extend with newfunctionality. + description: 'LAMMPS is a classical molecular dynamics code, and an acronym + + for Large-scale Atomic/Molecular Massively Parallel Simulator. LAMMPS has + + potentials for solid-state materials (metals, semiconductors) and soft matter + + (biomolecules, polymers) and coarse-grained or mesoscopic systems. It can be + + used to model atoms or, more generically, as a parallel particle simulator at + + the atomic, meso, or continuum scale. LAMMPS runs on single processors or in + + parallel using message-passing techniques and a spatial-decomposition of the + + simulation domain. The code is designed to be easy to modify or extend with new + + functionality. + + ' license: Not confirmed name: LAMMPS offers: @@ -31,31 +40,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LAMMPS/2Aug2023_update2-foss-2023a-kokkos'', ''LAMMPS/29Aug2024-foss-2023b-kokkos'']' + softwareVersion: '[''29Aug2024'', ''22Jul2025'', ''2Aug2023_update2'']' url: https://www.lammps.org --- +# LAMMPS -LAMMPS -====== - - -LAMMPS is a classical molecular dynamics code, and an acronymfor Large-scale Atomic/Molecular Massively Parallel Simulator. LAMMPS haspotentials for solid-state materials (metals, semiconductors) and soft matter(biomolecules, polymers) and coarse-grained or mesoscopic systems. It can beused to model atoms or, more generically, as a parallel particle simulator atthe atomic, meso, or continuum scale. LAMMPS runs on single processors or inparallel using message-passing techniques and a spatial-decomposition of thesimulation domain. The code is designed to be easy to modify or extend with newfunctionality. - -https://www.lammps.org -# Available modules +LAMMPS is a classical molecular dynamics code, and an acronym +for Large-scale Atomic/Molecular Massively Parallel Simulator. LAMMPS has +potentials for solid-state materials (metals, semiconductors) and soft matter +(biomolecules, polymers) and coarse-grained or mesoscopic systems. It can be +used to model atoms or, more generically, as a parallel particle simulator at +the atomic, meso, or continuum scale. LAMMPS runs on single processors or in +parallel using message-passing techniques and a spatial-decomposition of the +simulation domain. The code is designed to be easy to modify or extend with new +functionality. -The overview below shows which LAMMPS installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using LAMMPS, load one of these modules using a `module load` command like: +homepage: [https://www.lammps.org](https://www.lammps.org) -```shell -module load LAMMPS/29Aug2024-foss-2023b-kokkos -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LAMMPS/29Aug2024-foss-2023b-kokkos|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LAMMPS/2Aug2023_update2-foss-2023a-kokkos|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LAMMPS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|29Aug2024|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LAMMPS/29Aug2024-foss-2023b-kokkos`| +|22Jul2025|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LAMMPS/22Jul2025-foss-2024a-kokkos`| +|2Aug2023_update2|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`LAMMPS/2Aug2023_update2-foss-2023a-kokkos-CUDA-12.1.1`| +|2Aug2023_update2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LAMMPS/2Aug2023_update2-foss-2023a-kokkos`| \ No newline at end of file diff --git a/docs/available_software/detail/LERC.md b/docs/available_software/detail/LERC.md index bd1a732e11..4a70af9342 100644 --- a/docs/available_software/detail/LERC.md +++ b/docs/available_software/detail/LERC.md @@ -1,14 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: LERC is an open-source image or raster format which supports rapid - encoding and decodingfor any pixel type (not just RGB or Byte). Users set the - maximum compression error per pixel while encoding,so the precision of the original - input image is preserved (within user defined error bounds). + description: 'LERC is an open-source image or raster format which supports rapid + encoding and decoding + + for any pixel type (not just RGB or Byte). Users set the maximum compression error + per pixel while encoding, + + so the precision of the original input image is preserved (within user defined + error bounds).' license: Not confirmed name: LERC offers: @@ -27,33 +29,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LERC/4.0.0-GCCcore-12.2.0'', ''LERC/4.0.0-GCCcore-12.3.0'', - ''LERC/4.0.0-GCCcore-13.2.0'']' + softwareVersion: '[''4.0.0'']' url: https://github.com/Esri/lerc --- - -LERC -==== - - -LERC is an open-source image or raster format which supports rapid encoding and decodingfor any pixel type (not just RGB or Byte). Users set the maximum compression error per pixel while encoding,so the precision of the original input image is preserved (within user defined error bounds). - -https://github.com/Esri/lerc -# Available modules +# LERC -The overview below shows which LERC installations are available per target architecture in EESSI, ordered based on software version (new to old). +LERC is an open-source image or raster format which supports rapid encoding and decoding +for any pixel type (not just RGB or Byte). Users set the maximum compression error per pixel while encoding, +so the precision of the original input image is preserved (within user defined error bounds). -To start using LERC, load one of these modules using a `module load` command like: +homepage: [https://github.com/Esri/lerc](https://github.com/Esri/lerc) -```shell -module load LERC/4.0.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LERC/4.0.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LERC/4.0.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LERC/4.0.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LERC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LERC/4.0.0-GCCcore-13.3.0`| +|4.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LERC/4.0.0-GCCcore-13.2.0`| +|4.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LERC/4.0.0-GCCcore-12.3.0`| +|4.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LERC/4.0.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/LHAPDF.md b/docs/available_software/detail/LHAPDF.md index 3c6717b056..d362e54cb4 100644 --- a/docs/available_software/detail/LHAPDF.md +++ b/docs/available_software/detail/LHAPDF.md @@ -1,12 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Les Houches Parton Density FunctionLHAPDF is the standard tool for - evaluating parton distribution functions (PDFs) in high-energy physics. + description: ' + + Les Houches Parton Density Function + + + LHAPDF is the standard tool for evaluating parton distribution functions (PDFs) + in high-energy physics. + + ' license: Not confirmed name: LHAPDF offers: @@ -25,30 +30,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LHAPDF/6.5.4-GCC-12.3.0'']' + softwareVersion: '[''6.5.4'']' url: http://lhapdf.hepforge.org/ --- - -LHAPDF -====== +# LHAPDF -Les Houches Parton Density FunctionLHAPDF is the standard tool for evaluating parton distribution functions (PDFs) in high-energy physics. -http://lhapdf.hepforge.org/ -# Available modules +Les Houches Parton Density Function +LHAPDF is the standard tool for evaluating parton distribution functions (PDFs) in high-energy physics. -The overview below shows which LHAPDF installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using LHAPDF, load one of these modules using a `module load` command like: +homepage: [http://lhapdf.hepforge.org/](http://lhapdf.hepforge.org/) -```shell -module load LHAPDF/6.5.4-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LHAPDF/6.5.4-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LHAPDF version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.5.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LHAPDF/6.5.4-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/LINC.md b/docs/available_software/detail/LINC.md index 50192e1a71..a94ac319a8 100644 --- a/docs/available_software/detail/LINC.md +++ b/docs/available_software/detail/LINC.md @@ -1,12 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: LINC is a pipeline to correct for various instrumental and ionospheric - effects in both LOFAR HBA and LOFAR LBAobservations. + description: ' + + LINC is a pipeline to correct for various instrumental and ionospheric effects + in both LOFAR HBA and LOFAR LBA + + observations. + + ' license: Not confirmed name: LINC offers: @@ -25,37 +29,55 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LINC/5.0-foss-2023b'']' + softwareVersion: '[''5.0'']' url: https://linc.readthedocs.io/en/latest/ --- +# LINC + + + +LINC is a pipeline to correct for various instrumental and ionospheric effects in both LOFAR HBA and LOFAR LBA +observations. + + +homepage: [https://linc.readthedocs.io/en/latest/](https://linc.readthedocs.io/en/latest/) + +## Available installations + + +|LINC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LINC/5.0-foss-2023b`| + +## Extensions -LINC -==== +Overview of extensions included in LINC installations -LINC is a pipeline to correct for various instrumental and ionospheric effects in both LOFAR HBA and LOFAR LBAobservations. +### backports.shutil_get_terminal_size -https://linc.readthedocs.io/en/latest/ -# Available modules +|`backports.shutil_get_terminal_size` version|LINC modules that include it| +| --- | --- | +|1.0.0|`LINC/5.0-foss-2023b`| -The overview below shows which LINC installations are available per target architecture in EESSI, ordered based on software version (new to old). +### bdsf -To start using LINC, load one of these modules using a `module load` command like: -```shell -module load LINC/5.0-foss-2023b -``` +|`bdsf` version|LINC modules that include it| +| --- | --- | +|1.13.0.post2|`LINC/5.0-foss-2023b`| -*(This data was automatically generated on {{ generated_time }})* +### LINC -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LINC/5.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`LINC` version|LINC modules that include it| +| --- | --- | +|5.0|`LINC/5.0-foss-2023b`| -### LINC/5.0-foss-2023b +### pyregion -This is a list of extensions included in the module: -backports.shutil_get_terminal_size-1.0.0, bdsf-1.13.0.post2, LINC-5.0, pyregion-2.3.0 \ No newline at end of file +|`pyregion` version|LINC modules that include it| +| --- | --- | +|2.3.0|`LINC/5.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/LLVM.md b/docs/available_software/detail/LLVM.md index 0b72f12f04..0f9607b063 100644 --- a/docs/available_software/detail/LLVM.md +++ b/docs/available_software/detail/LLVM.md @@ -1,17 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The LLVM Core libraries provide a modern source- and target-independent - optimizer, along with code generation support for many popular CPUs (as well as - some less common ones!) These libraries are built around a well specified code - representation known as the LLVM intermediate representation ("LLVM IR"). The - LLVM Core libraries are well documented, and it is particularly easy to invent - your own language (or port an existing compiler) to use LLVM as an optimizer and - code generator. + description: "The LLVM Core libraries provide a modern source- and target-independent\n\ + \ optimizer, along with code generation support for many popular CPUs\n (as well\ + \ as some less common ones!) These libraries are built around a well\n specified\ + \ code representation known as the LLVM intermediate representation\n (\"LLVM\ + \ IR\"). The LLVM Core libraries are well documented, and it is\n particularly\ + \ easy to invent your own language (or port an existing compiler)\n to use LLVM\ + \ as an optimizer and code generator." license: Not confirmed name: LLVM offers: @@ -30,34 +28,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LLVM/14.0.6-GCCcore-12.3.0-llvmlite'', ''LLVM/15.0.5-GCCcore-12.2.0'', - ''LLVM/16.0.6-GCCcore-12.3.0'', ''LLVM/16.0.6-GCCcore-13.2.0'']' + softwareVersion: '[''20.1.8'', ''20.1.7'', ''18.1.8'', ''16.0.6'', ''15.0.5'', ''14.0.6'']' url: https://llvm.org/ --- +# LLVM -LLVM -==== +The LLVM Core libraries provide a modern source- and target-independent + optimizer, along with code generation support for many popular CPUs + (as well as some less common ones!) These libraries are built around a well + specified code representation known as the LLVM intermediate representation + ("LLVM IR"). The LLVM Core libraries are well documented, and it is + particularly easy to invent your own language (or port an existing compiler) + to use LLVM as an optimizer and code generator. -The LLVM Core libraries provide a modern source- and target-independent optimizer, along with code generation support for many popular CPUs (as well as some less common ones!) These libraries are built around a well specified code representation known as the LLVM intermediate representation ("LLVM IR"). The LLVM Core libraries are well documented, and it is particularly easy to invent your own language (or port an existing compiler) to use LLVM as an optimizer and code generator. +homepage: [https://llvm.org/](https://llvm.org/) -https://llvm.org/ -# Available modules +## Available installations -The overview below shows which LLVM installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using LLVM, load one of these modules using a `module load` command like: - -```shell -module load LLVM/16.0.6-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LLVM/16.0.6-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LLVM/16.0.6-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LLVM/15.0.5-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LLVM/14.0.6-GCCcore-12.3.0-llvmlite|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LLVM version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|20.1.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LLVM/20.1.8-GCCcore-14.3.0`| +|20.1.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LLVM/20.1.7-GCCcore-14.2.0`| +|18.1.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LLVM/18.1.8-GCCcore-13.3.0-minimal`| +|16.0.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LLVM/16.0.6-GCCcore-13.2.0`| +|16.0.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LLVM/16.0.6-GCCcore-12.3.0`| +|15.0.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LLVM/15.0.5-GCCcore-12.2.0`| +|14.0.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LLVM/14.0.6-GCCcore-12.3.0-llvmlite`| \ No newline at end of file diff --git a/docs/available_software/detail/LMDB.md b/docs/available_software/detail/LMDB.md index 8e20ef2705..4c23d1dde8 100644 --- a/docs/available_software/detail/LMDB.md +++ b/docs/available_software/detail/LMDB.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: LMDB is a fast, memory-efficient database. With memory-mapped files, - it has the read performance of a pure in-memory database while retaining the persistence - of standard disk-based databases. + description: "LMDB is a fast, memory-efficient database. With memory-mapped files,\ + \ it has the read performance\n of a pure in-memory database while retaining the\ + \ persistence of standard disk-based databases." license: Not confirmed name: LMDB offers: @@ -26,31 +24,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LMDB/0.9.29-GCCcore-12.2.0'', ''LMDB/0.9.31-GCCcore-12.3.0'']' + softwareVersion: '[''0.9.31'', ''0.9.29'']' url: https://symas.com/lmdb --- +# LMDB -LMDB -==== +LMDB is a fast, memory-efficient database. With memory-mapped files, it has the read performance + of a pure in-memory database while retaining the persistence of standard disk-based databases. -LMDB is a fast, memory-efficient database. With memory-mapped files, it has the read performance of a pure in-memory database while retaining the persistence of standard disk-based databases. +homepage: [https://symas.com/lmdb](https://symas.com/lmdb) -https://symas.com/lmdb -# Available modules +## Available installations -The overview below shows which LMDB installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using LMDB, load one of these modules using a `module load` command like: - -```shell -module load LMDB/0.9.31-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LMDB/0.9.31-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LMDB/0.9.29-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LMDB version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.31|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LMDB/0.9.31-GCCcore-14.2.0`| +|0.9.31|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LMDB/0.9.31-GCCcore-12.3.0`| +|0.9.29|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LMDB/0.9.29-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/LPC3D.md b/docs/available_software/detail/LPC3D.md index 1bd7548742..0bebc09ee2 100644 --- a/docs/available_software/detail/LPC3D.md +++ b/docs/available_software/detail/LPC3D.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A code to do mesoscopic simulations of ions diffusing in carbon particles - and of full supercapacitors. + description: "\nA code to do mesoscopic simulations of ions diffusing in carbon\ + \ particles and\n of full supercapacitors.\n" license: Not confirmed name: LPC3D offers: @@ -25,37 +23,34 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LPC3D/0.1.2-foss-2023a'']' + softwareVersion: '[''0.1.2'']' url: https://github.com/multixscale/LPC3D --- +# LPC3D -LPC3D -===== -A code to do mesoscopic simulations of ions diffusing in carbon particles and of full supercapacitors. +A code to do mesoscopic simulations of ions diffusing in carbon particles and + of full supercapacitors. -https://github.com/multixscale/LPC3D -# Available modules +homepage: [https://github.com/multixscale/LPC3D](https://github.com/multixscale/LPC3D) -The overview below shows which LPC3D installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using LPC3D, load one of these modules using a `module load` command like: -```shell -module load LPC3D/0.1.2-foss-2023a -``` +|LPC3D version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LPC3D/0.1.2-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LPC3D/0.1.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in LPC3D installations -### LPC3D/0.1.2-foss-2023a +### lpc3d -This is a list of extensions included in the module: -lpc3d-0.1.2 \ No newline at end of file +|`lpc3d` version|LPC3D modules that include it| +| --- | --- | +|0.1.2|`LPC3D/0.1.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/LRBinner.md b/docs/available_software/detail/LRBinner.md index f35df1819c..223f0ab446 100644 --- a/docs/available_software/detail/LRBinner.md +++ b/docs/available_software/detail/LRBinner.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: LRBinner is a long-read binning tool published in WABI 2021 proceedings - and AMB. + description: 'LRBinner is a long-read binning tool published in WABI 2021 proceedings + and AMB. ' license: Not confirmed name: LRBinner offers: @@ -25,37 +23,38 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LRBinner/0.1-foss-2023a'']' + softwareVersion: '[''0.1'']' url: https://github.com/anuradhawick/LRBinner --- +# LRBinner -LRBinner -======== +LRBinner is a long-read binning tool published in WABI 2021 proceedings and AMB. -LRBinner is a long-read binning tool published in WABI 2021 proceedings and AMB. +homepage: [https://github.com/anuradhawick/LRBinner](https://github.com/anuradhawick/LRBinner) -https://github.com/anuradhawick/LRBinner -# Available modules +## Available installations -The overview below shows which LRBinner installations are available per target architecture in EESSI, ordered based on software version (new to old). +|LRBinner version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LRBinner/0.1-foss-2023a`| -To start using LRBinner, load one of these modules using a `module load` command like: +## Extensions -```shell -module load LRBinner/0.1-foss-2023a -``` +Overview of extensions included in LRBinner installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LRBinner/0.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### LRBinner -### LRBinner/0.1-foss-2023a +|`LRBinner` version|LRBinner modules that include it| +| --- | --- | +|0.1|`LRBinner/0.1-foss-2023a`| -This is a list of extensions included in the module: +### tabulate -LRBinner-0.1, tabulate-0.9.0 \ No newline at end of file + +|`tabulate` version|LRBinner modules that include it| +| --- | --- | +|0.9.0|`LRBinner/0.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/LSD2.md b/docs/available_software/detail/LSD2.md index 351b034c74..6eff4a8099 100644 --- a/docs/available_software/detail/LSD2.md +++ b/docs/available_software/detail/LSD2.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LSD2/2.4.1-GCCcore-12.3.0'']' + softwareVersion: '[''2.4.1'']' url: https://github.com/tothuhien/lsd2 --- - -LSD2 -==== +# LSD2 Least-squares methods to estimate rates and dates from phylogenies -https://github.com/tothuhien/lsd2 -# Available modules - - -The overview below shows which LSD2 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using LSD2, load one of these modules using a `module load` command like: +homepage: [https://github.com/tothuhien/lsd2](https://github.com/tothuhien/lsd2) -```shell -module load LSD2/2.4.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LSD2/2.4.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LSD2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LSD2/2.4.1-GCCcore-14.2.0`| +|2.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LSD2/2.4.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/LSMTool.md b/docs/available_software/detail/LSMTool.md index c8cc8ea60f..d506a2792f 100644 --- a/docs/available_software/detail/LSMTool.md +++ b/docs/available_software/detail/LSMTool.md @@ -1,12 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: LSMTool is a Python package which allows for the manipulation of LOFAR - sky models in the makesourcedb format. + description: ' + + LSMTool is a Python package which allows for the manipulation of LOFAR sky models + in the makesourcedb format. + + ' license: Not confirmed name: LSMTool offers: @@ -25,37 +27,33 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LSMTool/1.7.0-foss-2023b'']' + softwareVersion: '[''1.7.0'']' url: https://lsmtool.readthedocs.io/en/latest/ --- +# LSMTool -LSMTool -======= LSMTool is a Python package which allows for the manipulation of LOFAR sky models in the makesourcedb format. -https://lsmtool.readthedocs.io/en/latest/ -# Available modules +homepage: [https://lsmtool.readthedocs.io/en/latest/](https://lsmtool.readthedocs.io/en/latest/) -The overview below shows which LSMTool installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using LSMTool, load one of these modules using a `module load` command like: -```shell -module load LSMTool/1.7.0-foss-2023b -``` +|LSMTool version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LSMTool/1.7.0-foss-2023b`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LSMTool/1.7.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in LSMTool installations -### LSMTool/1.7.0-foss-2023b +### lsmtool -This is a list of extensions included in the module: -lsmtool-1.7.0 \ No newline at end of file +|`lsmtool` version|LSMTool modules that include it| +| --- | --- | +|1.7.0|`LSMTool/1.7.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/LZO.md b/docs/available_software/detail/LZO.md index 6b1e3c738d..36b976ea8c 100644 --- a/docs/available_software/detail/LZO.md +++ b/docs/available_software/detail/LZO.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LZO/2.10-GCCcore-12.3.0'', ''LZO/2.10-GCCcore-13.2.0'']' + softwareVersion: '[''2.10'']' url: https://www.oberhumer.com/opensource/lzo/ --- - -LZO -=== +# LZO Portable lossless data compression library -https://www.oberhumer.com/opensource/lzo/ -# Available modules - - -The overview below shows which LZO installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using LZO, load one of these modules using a `module load` command like: +homepage: [https://www.oberhumer.com/opensource/lzo/](https://www.oberhumer.com/opensource/lzo/) -```shell -module load LZO/2.10-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LZO/2.10-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LZO/2.10-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LZO version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LZO/2.10-GCCcore-14.2.0`| +|2.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LZO/2.10-GCCcore-13.2.0`| +|2.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LZO/2.10-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/LavaVu.md b/docs/available_software/detail/LavaVu.md new file mode 100644 index 0000000000..8d73d63c5b --- /dev/null +++ b/docs/available_software/detail/LavaVu.md @@ -0,0 +1,85 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' + + A lightweight scientific visualisation tool with a python interface for fast + + and flexible visual analysis. + + + LavaVu provides access to OpenGL powered 3D rendering of point, line, surface + + and volume data with minimal setup and an interface focused on simple mapping + + of values to visual properties while abstracting all the intricacies of OpenGL. + + A scientific visualisation tool with a python interface for fast and flexible + + visual analysis. + + ' + license: Not confirmed + name: LavaVu + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.9.9'']' + url: https://lavavu.github.io/Documentation/ +--- +# LavaVu + + + +A lightweight scientific visualisation tool with a python interface for fast +and flexible visual analysis. + +LavaVu provides access to OpenGL powered 3D rendering of point, line, surface +and volume data with minimal setup and an interface focused on simple mapping +of values to visual properties while abstracting all the intricacies of OpenGL. +A scientific visualisation tool with a python interface for fast and flexible +visual analysis. + + +homepage: [https://lavavu.github.io/Documentation/](https://lavavu.github.io/Documentation/) + +## Available installations + + +|LavaVu version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LavaVu/1.9.9-foss-2023b-egl`| + +## Extensions + +Overview of extensions included in LavaVu installations + + +### lavavu + + +|`lavavu` version|LavaVu modules that include it| +| --- | --- | +|1.9.9|`LavaVu/1.9.9-foss-2023b-egl`| + +### numpy_quaternion + + +|`numpy_quaternion` version|LavaVu modules that include it| +| --- | --- | +|2024.0.9|`LavaVu/1.9.9-foss-2023b-egl`| \ No newline at end of file diff --git a/docs/available_software/detail/LibRaw.md b/docs/available_software/detail/LibRaw.md new file mode 100644 index 0000000000..875a961178 --- /dev/null +++ b/docs/available_software/detail/LibRaw.md @@ -0,0 +1,59 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'The LibRaw library provides a simple and unified interface for extracting + out of RAW files + + generated by digital photo cameras the following: + + + - RAW data (pixel values) + + - Metadata necessary for processing RAW (geometry, CFA / Bayer pattern, black + level, white balance, etc.) + + - Embedded preview / thumbnail. + + ' + license: Not confirmed + name: LibRaw + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.21.4'']' + url: https://www.libraw.org/ +--- +# LibRaw + + +The LibRaw library provides a simple and unified interface for extracting out of RAW files +generated by digital photo cameras the following: + +- RAW data (pixel values) +- Metadata necessary for processing RAW (geometry, CFA / Bayer pattern, black level, white balance, etc.) +- Embedded preview / thumbnail. + + +homepage: [https://www.libraw.org/](https://www.libraw.org/) + +## Available installations + + +|LibRaw version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.21.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LibRaw/0.21.4-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/LibSoup.md b/docs/available_software/detail/LibSoup.md index 2b5df5a7e3..3159bbe177 100644 --- a/docs/available_software/detail/LibSoup.md +++ b/docs/available_software/detail/LibSoup.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: libsoup is an HTTP client/server library for GNOME. Ituses GObjects - and the glib main loop, to integrate well with GNOMEapplications, and also has - a synchronous API, for use in threadedapplications. + description: 'libsoup is an HTTP client/server library for GNOME. It + + uses GObjects and the glib main loop, to integrate well with GNOME + + applications, and also has a synchronous API, for use in threaded + + applications.' license: Not confirmed name: LibSoup offers: @@ -26,30 +28,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LibSoup/3.6.1-GCC-12.3.0'']' + softwareVersion: '[''3.6.1'']' url: https://wiki.gnome.org/Projects/libsoup --- - -LibSoup -======= - - -libsoup is an HTTP client/server library for GNOME. Ituses GObjects and the glib main loop, to integrate well with GNOMEapplications, and also has a synchronous API, for use in threadedapplications. - -https://wiki.gnome.org/Projects/libsoup -# Available modules +# LibSoup -The overview below shows which LibSoup installations are available per target architecture in EESSI, ordered based on software version (new to old). +libsoup is an HTTP client/server library for GNOME. It +uses GObjects and the glib main loop, to integrate well with GNOME +applications, and also has a synchronous API, for use in threaded +applications. -To start using LibSoup, load one of these modules using a `module load` command like: +homepage: [https://wiki.gnome.org/Projects/libsoup](https://wiki.gnome.org/Projects/libsoup) -```shell -module load LibSoup/3.6.1-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LibSoup/3.6.1-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LibSoup version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LibSoup/3.6.1-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/LibTIFF.md b/docs/available_software/detail/LibTIFF.md index b136831c2f..40a2ada05d 100644 --- a/docs/available_software/detail/LibTIFF.md +++ b/docs/available_software/detail/LibTIFF.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LibTIFF/4.4.0-GCCcore-12.2.0'', ''LibTIFF/4.5.0-GCCcore-12.3.0'', - ''LibTIFF/4.6.0-GCCcore-13.2.0'']' + softwareVersion: '[''4.7.0'', ''4.6.0'', ''4.5.0'', ''4.4.0'']' url: https://libtiff.gitlab.io/libtiff/ --- - -LibTIFF -======= +# LibTIFF tiff: Library and tools for reading and writing TIFF data files -https://libtiff.gitlab.io/libtiff/ -# Available modules - - -The overview below shows which LibTIFF installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using LibTIFF, load one of these modules using a `module load` command like: +homepage: [https://libtiff.gitlab.io/libtiff/](https://libtiff.gitlab.io/libtiff/) -```shell -module load LibTIFF/4.6.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LibTIFF/4.6.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LibTIFF/4.5.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LibTIFF/4.4.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LibTIFF version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LibTIFF/4.7.0-GCCcore-14.3.0`| +|4.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LibTIFF/4.7.0-GCCcore-14.2.0`| +|4.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LibTIFF/4.6.0-GCCcore-13.3.0`| +|4.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LibTIFF/4.6.0-GCCcore-13.2.0`| +|4.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LibTIFF/4.5.0-GCCcore-12.3.0`| +|4.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LibTIFF/4.4.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Libint.md b/docs/available_software/detail/Libint.md index ddf7c4d29f..cb74aeae5d 100644 --- a/docs/available_software/detail/Libint.md +++ b/docs/available_software/detail/Libint.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Libint library is used to evaluate the traditional (electron repulsion) - and certain novel two-body matrix elements (integrals) over Cartesian Gaussian - functions used in modern atomic and molecular theory. + description: "Libint library is used to evaluate the traditional (electron repulsion)\ + \ and certain novel two-body\n matrix elements (integrals) over Cartesian Gaussian\ + \ functions used in modern atomic and molecular theory." license: Not confirmed name: Libint offers: @@ -26,30 +24,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Libint/2.7.2-GCC-12.3.0-lmax-6-cp2k'']' + softwareVersion: '[''2.7.2'']' url: https://github.com/evaleev/libint --- +# Libint -Libint -====== +Libint library is used to evaluate the traditional (electron repulsion) and certain novel two-body + matrix elements (integrals) over Cartesian Gaussian functions used in modern atomic and molecular theory. -Libint library is used to evaluate the traditional (electron repulsion) and certain novel two-body matrix elements (integrals) over Cartesian Gaussian functions used in modern atomic and molecular theory. +homepage: [https://github.com/evaleev/libint](https://github.com/evaleev/libint) -https://github.com/evaleev/libint -# Available modules +## Available installations -The overview below shows which Libint installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Libint, load one of these modules using a `module load` command like: - -```shell -module load Libint/2.7.2-GCC-12.3.0-lmax-6-cp2k -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Libint/2.7.2-GCC-12.3.0-lmax-6-cp2k|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Libint version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Libint/2.7.2-GCC-12.3.0-lmax-6-cp2k`| \ No newline at end of file diff --git a/docs/available_software/detail/LightGBM.md b/docs/available_software/detail/LightGBM.md index 76165a2293..f5b5b9b171 100644 --- a/docs/available_software/detail/LightGBM.md +++ b/docs/available_software/detail/LightGBM.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A fast, distributed, high performance gradient boosting (GBT, GBDT, - GBRT, GBMor MART) framework based on decision tree algorithms, used for ranking,classification - and many other machine learning tasks. + description: 'A fast, distributed, high performance gradient boosting (GBT, GBDT, + GBRT, GBM + + or MART) framework based on decision tree algorithms, used for ranking, + + classification and many other machine learning tasks.' license: Not confirmed name: LightGBM offers: @@ -26,37 +27,34 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LightGBM/4.5.0-foss-2023a'']' + softwareVersion: '[''4.5.0'']' url: https://lightgbm.readthedocs.io --- +# LightGBM -LightGBM -======== - - -A fast, distributed, high performance gradient boosting (GBT, GBDT, GBRT, GBMor MART) framework based on decision tree algorithms, used for ranking,classification and many other machine learning tasks. -https://lightgbm.readthedocs.io -# Available modules +A fast, distributed, high performance gradient boosting (GBT, GBDT, GBRT, GBM +or MART) framework based on decision tree algorithms, used for ranking, +classification and many other machine learning tasks. +homepage: [https://lightgbm.readthedocs.io](https://lightgbm.readthedocs.io) -The overview below shows which LightGBM installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using LightGBM, load one of these modules using a `module load` command like: -```shell -module load LightGBM/4.5.0-foss-2023a -``` +|LightGBM version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.5.0|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`LightGBM/4.5.0-foss-2023a-CUDA-12.1.1`| +|4.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LightGBM/4.5.0-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LightGBM/4.5.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in LightGBM installations -### LightGBM/4.5.0-foss-2023a +### lightgbm -This is a list of extensions included in the module: -lightgbm-4.5.0 \ No newline at end of file +|`lightgbm` version|LightGBM modules that include it| +| --- | --- | +|4.5.0|`LightGBM/4.5.0-foss-2023a-CUDA-12.1.1`
`LightGBM/4.5.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/LittleCMS.md b/docs/available_software/detail/LittleCMS.md index 2a38f2691c..e447552f47 100644 --- a/docs/available_software/detail/LittleCMS.md +++ b/docs/available_software/detail/LittleCMS.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Little CMS intends to be an OPEN SOURCE small-footprint color management - engine, with special focus on accuracy and performance. + description: " Little CMS intends to be an OPEN SOURCE small-footprint color management\ + \ engine,\n with special focus on accuracy and performance. " license: Not confirmed name: LittleCMS offers: @@ -25,33 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LittleCMS/2.14-GCCcore-12.2.0'', ''LittleCMS/2.15-GCCcore-12.3.0'', - ''LittleCMS/2.15-GCCcore-13.2.0'']' + softwareVersion: '[''2.17'', ''2.16'', ''2.15'', ''2.14'']' url: https://www.littlecms.com/ --- +# LittleCMS -LittleCMS -========= + Little CMS intends to be an OPEN SOURCE small-footprint color management engine, + with special focus on accuracy and performance. -Little CMS intends to be an OPEN SOURCE small-footprint color management engine, with special focus on accuracy and performance. +homepage: [https://www.littlecms.com/](https://www.littlecms.com/) -https://www.littlecms.com/ -# Available modules +## Available installations -The overview below shows which LittleCMS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using LittleCMS, load one of these modules using a `module load` command like: - -```shell -module load LittleCMS/2.15-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LittleCMS/2.15-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LittleCMS/2.15-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|LittleCMS/2.14-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LittleCMS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LittleCMS/2.17-GCCcore-14.3.0`| +|2.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LittleCMS/2.17-GCCcore-14.2.0`| +|2.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`LittleCMS/2.16-GCCcore-13.3.0`| +|2.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LittleCMS/2.15-GCCcore-13.2.0`| +|2.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LittleCMS/2.15-GCCcore-12.3.0`| +|2.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LittleCMS/2.14-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/LoSoTo.md b/docs/available_software/detail/LoSoTo.md index 45d80dfa62..1419730b25 100644 --- a/docs/available_software/detail/LoSoTo.md +++ b/docs/available_software/detail/LoSoTo.md @@ -1,11 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'LoSoTo: LOFAR solutions tool' + description: ' + + LoSoTo: LOFAR solutions tool + + ' license: Not confirmed name: LoSoTo offers: @@ -24,37 +26,40 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LoSoTo/2.5.0-foss-2023b'']' + softwareVersion: '[''2.5.0'']' url: https://revoltek.github.io/losoto/ --- +# LoSoTo -LoSoTo -====== LoSoTo: LOFAR solutions tool -https://revoltek.github.io/losoto/ -# Available modules +homepage: [https://revoltek.github.io/losoto/](https://revoltek.github.io/losoto/) + +## Available installations + + +|LoSoTo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LoSoTo/2.5.0-foss-2023b`| -The overview below shows which LoSoTo installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using LoSoTo, load one of these modules using a `module load` command like: +Overview of extensions included in LoSoTo installations -```shell -module load LoSoTo/2.5.0-foss-2023b -``` -*(This data was automatically generated on {{ generated_time }})* +### configparser -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LoSoTo/2.5.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`configparser` version|LoSoTo modules that include it| +| --- | --- | +|7.2.0|`LoSoTo/2.5.0-foss-2023b`| -### LoSoTo/2.5.0-foss-2023b +### LoSoTo -This is a list of extensions included in the module: -configparser-7.2.0, LoSoTo-2.5.0 \ No newline at end of file +|`LoSoTo` version|LoSoTo modules that include it| +| --- | --- | +|2.5.0|`LoSoTo/2.5.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/LofarStMan.md b/docs/available_software/detail/LofarStMan.md index c728352f35..ae3bfcb610 100644 --- a/docs/available_software/detail/LofarStMan.md +++ b/docs/available_software/detail/LofarStMan.md @@ -1,12 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: This package provides a casacore storage manager to read raw correlator - output of the LOFAR telescope. + description: ' + + This package provides a casacore storage manager to read raw correlator output + of the LOFAR telescope. + + ' license: Not confirmed name: LofarStMan offers: @@ -25,30 +27,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LofarStMan/1.0-foss-2023b'']' + softwareVersion: '[''1.0'']' url: https://github.com/lofar-astron/LofarStMan --- +# LofarStMan -LofarStMan -========== This package provides a casacore storage manager to read raw correlator output of the LOFAR telescope. -https://github.com/lofar-astron/LofarStMan -# Available modules - - -The overview below shows which LofarStMan installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using LofarStMan, load one of these modules using a `module load` command like: +homepage: [https://github.com/lofar-astron/LofarStMan](https://github.com/lofar-astron/LofarStMan) -```shell -module load LofarStMan/1.0-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LofarStMan/1.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LofarStMan version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LofarStMan/1.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/LoopTools.md b/docs/available_software/detail/LoopTools.md index f2bfc3d2e2..eab258bac8 100644 --- a/docs/available_software/detail/LoopTools.md +++ b/docs/available_software/detail/LoopTools.md @@ -1,12 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: LoopTools is a package for evaluation of scalar and tensor one-loop - integrals.It is based on the FF package by G.J. van Oldenborgh. + description: ' + + LoopTools is a package for evaluation of scalar and tensor one-loop integrals. + + + It is based on the FF package by G.J. van Oldenborgh. + + ' license: Not confirmed name: LoopTools offers: @@ -25,30 +29,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''LoopTools/2.15-GCC-12.3.0'']' + softwareVersion: '[''2.15'']' url: https://feynarts.de/looptools/ --- - -LoopTools -========= +# LoopTools -LoopTools is a package for evaluation of scalar and tensor one-loop integrals.It is based on the FF package by G.J. van Oldenborgh. -https://feynarts.de/looptools/ -# Available modules +LoopTools is a package for evaluation of scalar and tensor one-loop integrals. +It is based on the FF package by G.J. van Oldenborgh. -The overview below shows which LoopTools installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using LoopTools, load one of these modules using a `module load` command like: +homepage: [https://feynarts.de/looptools/](https://feynarts.de/looptools/) -```shell -module load LoopTools/2.15-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|LoopTools/2.15-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|LoopTools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`LoopTools/2.15-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Lua.md b/docs/available_software/detail/Lua.md index 0f47e97488..153fd55972 100644 --- a/docs/available_software/detail/Lua.md +++ b/docs/available_software/detail/Lua.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Lua is a powerful, fast, lightweight, embeddable scripting language. - Lua combines simple procedural syntax with powerful data description constructs - based on associative arrays and extensible semantics. Lua is dynamically typed, - runs by interpreting bytecode for a register-based virtual machine, and has automatic - memory management with incremental garbage collection, making it ideal for configuration, - scripting, and rapid prototyping. + description: "Lua is a powerful, fast, lightweight, embeddable scripting language.\n\ + \ Lua combines simple procedural syntax with powerful data description constructs\ + \ based\n on associative arrays and extensible semantics. Lua is dynamically typed,\n\ + \ runs by interpreting bytecode for a register-based virtual machine,\n and has\ + \ automatic memory management with incremental garbage collection,\n making it\ + \ ideal for configuration, scripting, and rapid prototyping." license: Not confirmed name: Lua offers: @@ -29,32 +27,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Lua/5.4.4-GCCcore-12.2.0'', ''Lua/5.4.6-GCCcore-12.3.0'', ''Lua/5.4.6-GCCcore-13.2.0'']' + softwareVersion: '[''5.4.7'', ''5.4.6'', ''5.4.4'']' url: https://www.lua.org/ --- +# Lua -Lua -=== +Lua is a powerful, fast, lightweight, embeddable scripting language. + Lua combines simple procedural syntax with powerful data description constructs based + on associative arrays and extensible semantics. Lua is dynamically typed, + runs by interpreting bytecode for a register-based virtual machine, + and has automatic memory management with incremental garbage collection, + making it ideal for configuration, scripting, and rapid prototyping. -Lua is a powerful, fast, lightweight, embeddable scripting language. Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode for a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping. +homepage: [https://www.lua.org/](https://www.lua.org/) -https://www.lua.org/ -# Available modules +## Available installations -The overview below shows which Lua installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Lua, load one of these modules using a `module load` command like: - -```shell -module load Lua/5.4.6-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Lua/5.4.6-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Lua/5.4.6-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Lua/5.4.4-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Lua version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.4.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Lua/5.4.7-GCCcore-13.3.0`| +|5.4.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Lua/5.4.6-GCCcore-13.2.0`| +|5.4.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Lua/5.4.6-GCCcore-12.3.0`| +|5.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Lua/5.4.4-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/M4.md b/docs/available_software/detail/M4.md new file mode 100644 index 0000000000..aee2112b16 --- /dev/null +++ b/docs/available_software/detail/M4.md @@ -0,0 +1,49 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "GNU M4 is an implementation of the traditional Unix macro processor.\ + \ It is mostly SVR4 compatible\n although it has some extensions (for example,\ + \ handling more than 9 positional parameters to macros).\n GNU M4 also has built-in\ + \ functions for including files, running shell commands, doing arithmetic, etc." + license: Not confirmed + name: M4 + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.4.20'', ''1.4.19'']' + url: https://www.gnu.org/software/m4/m4.html +--- +# M4 + + +GNU M4 is an implementation of the traditional Unix macro processor. It is mostly SVR4 compatible + although it has some extensions (for example, handling more than 9 positional parameters to macros). + GNU M4 also has built-in functions for including files, running shell commands, doing arithmetic, etc. + +homepage: [https://www.gnu.org/software/m4/m4.html](https://www.gnu.org/software/m4/m4.html) + +## Available installations + + +|M4 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.4.20|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`M4/1.4.20-GCCcore-14.3.0`| +|1.4.20|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`M4/1.4.20`| +|1.4.19|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`M4/1.4.19-GCCcore-14.2.0`| +|1.4.19|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`M4/1.4.19-GCCcore-13.3.0`| +|1.4.19|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`M4/1.4.19`| \ No newline at end of file diff --git a/docs/available_software/detail/MAFFT.md b/docs/available_software/detail/MAFFT.md index ac81c096b7..400b092428 100644 --- a/docs/available_software/detail/MAFFT.md +++ b/docs/available_software/detail/MAFFT.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication description: "MAFFT is a multiple sequence alignment program for unix-like operating\ - \ systems.It offers a range of multiple alignment methods, L-INS-i (accurate;\ - \ for alignmentof <\u223C200 sequences), FFT-NS-2 (fast; for alignment of <\u223C\ + \ systems.\nIt offers a range of multiple alignment methods, L-INS-i (accurate;\ + \ for alignment\nof <\u223C200 sequences), FFT-NS-2 (fast; for alignment of <\u223C\ 30,000 sequences), etc." license: Not confirmed name: MAFFT @@ -27,31 +25,43 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MAFFT/7.505-GCC-12.2.0-with-extensions'', ''MAFFT/7.520-GCC-12.3.0-with-extensions'']' + softwareVersion: '[''7.520'', ''7.505'']' url: https://mafft.cbrc.jp/alignment/software/source.html --- +# MAFFT -MAFFT -===== +MAFFT is a multiple sequence alignment program for unix-like operating systems. +It offers a range of multiple alignment methods, L-INS-i (accurate; for alignment +of <∼200 sequences), FFT-NS-2 (fast; for alignment of <∼30,000 sequences), etc. -MAFFT is a multiple sequence alignment program for unix-like operating systems.It offers a range of multiple alignment methods, L-INS-i (accurate; for alignmentof <∼200 sequences), FFT-NS-2 (fast; for alignment of <∼30,000 sequences), etc. +homepage: [https://mafft.cbrc.jp/alignment/software/source.html](https://mafft.cbrc.jp/alignment/software/source.html) -https://mafft.cbrc.jp/alignment/software/source.html -# Available modules +## Available installations -The overview below shows which MAFFT installations are available per target architecture in EESSI, ordered based on software version (new to old). +|MAFFT version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.520|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MAFFT/7.520-GCC-12.3.0-with-extensions`| +|7.505|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MAFFT/7.505-GCC-12.2.0-with-extensions`| -To start using MAFFT, load one of these modules using a `module load` command like: +## Extensions -```shell -module load MAFFT/7.520-GCC-12.3.0-with-extensions -``` +Overview of extensions included in MAFFT installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MAFFT/7.520-GCC-12.3.0-with-extensions|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|MAFFT/7.505-GCC-12.2.0-with-extensions|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### MAFFT + + +|`MAFFT` version|MAFFT modules that include it| +| --- | --- | +|7.520|`MAFFT/7.520-GCC-12.3.0-with-extensions`| +|7.505|`MAFFT/7.505-GCC-12.2.0-with-extensions`| + +### MAFFT Extensions + + +|`MAFFT Extensions` version|MAFFT modules that include it| +| --- | --- | +|7.520|`MAFFT/7.520-GCC-12.3.0-with-extensions`| +|7.505|`MAFFT/7.505-GCC-12.2.0-with-extensions`| \ No newline at end of file diff --git a/docs/available_software/detail/MAQAO.md b/docs/available_software/detail/MAQAO.md index 5a5614c696..a3462a69dc 100644 --- a/docs/available_software/detail/MAQAO.md +++ b/docs/available_software/detail/MAQAO.md @@ -1,18 +1,28 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: MAQAO (Modular Assembly Quality Analyzer and Optimizer) is a performanceanalysis - and optimization framework operating at binary level with a focus on coreperformance. - Its main goal of is to guide application developers along the optimizationprocess - through synthetic reports and hints.MAQAO mixes both dynamic and static analyses - based on its ability to reconstruct highlevel structures such as functions and - loops from an application binary. Since MAQAOoperates at binary level, it is agnostic - with regard to the language used in the sourcecode and does not require recompiling - the application to perform analyses. + description: 'MAQAO (Modular Assembly Quality Analyzer and Optimizer) is a performance + + analysis and optimization framework operating at binary level with a focus on + core + + performance. Its main goal of is to guide application developers along the optimization + + process through synthetic reports and hints. + + + MAQAO mixes both dynamic and static analyses based on its ability to reconstruct + high + + level structures such as functions and loops from an application binary. Since + MAQAO + + operates at binary level, it is agnostic with regard to the language used in the + source + + code and does not require recompiling the application to perform analyses.' license: Not confirmed name: MAQAO offers: @@ -31,30 +41,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MAQAO/2.21.1'']' + softwareVersion: '[''2.21.1'']' url: https://maqao.org --- +# MAQAO -MAQAO -===== - - -MAQAO (Modular Assembly Quality Analyzer and Optimizer) is a performanceanalysis and optimization framework operating at binary level with a focus on coreperformance. Its main goal of is to guide application developers along the optimizationprocess through synthetic reports and hints.MAQAO mixes both dynamic and static analyses based on its ability to reconstruct highlevel structures such as functions and loops from an application binary. Since MAQAOoperates at binary level, it is agnostic with regard to the language used in the sourcecode and does not require recompiling the application to perform analyses. - -https://maqao.org -# Available modules +MAQAO (Modular Assembly Quality Analyzer and Optimizer) is a performance +analysis and optimization framework operating at binary level with a focus on core +performance. Its main goal of is to guide application developers along the optimization +process through synthetic reports and hints. -The overview below shows which MAQAO installations are available per target architecture in EESSI, ordered based on software version (new to old). +MAQAO mixes both dynamic and static analyses based on its ability to reconstruct high +level structures such as functions and loops from an application binary. Since MAQAO +operates at binary level, it is agnostic with regard to the language used in the source +code and does not require recompiling the application to perform analyses. -To start using MAQAO, load one of these modules using a `module load` command like: +homepage: [https://maqao.org](https://maqao.org) -```shell -module load MAQAO/2.21.1 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MAQAO/2.21.1|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MAQAO version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.21.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MAQAO/2.21.1`| \ No newline at end of file diff --git a/docs/available_software/detail/MBX.md b/docs/available_software/detail/MBX.md index a4961beadc..7c6cbcf402 100644 --- a/docs/available_software/detail/MBX.md +++ b/docs/available_software/detail/MBX.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MBX/1.1.0-foss-2023a'']' + softwareVersion: '[''1.1.0'']' url: https://github.com/paesanilab/MBX --- - -MBX -=== +# MBX MBX is an energy and force calculator for data-driven many-body simulations -https://github.com/paesanilab/MBX -# Available modules - - -The overview below shows which MBX installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using MBX, load one of these modules using a `module load` command like: +homepage: [https://github.com/paesanilab/MBX](https://github.com/paesanilab/MBX) -```shell -module load MBX/1.1.0-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MBX/1.1.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MBX version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MBX/1.1.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/MCL.md b/docs/available_software/detail/MCL.md index f939dad81b..07aa27bc98 100644 --- a/docs/available_software/detail/MCL.md +++ b/docs/available_software/detail/MCL.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The MCL algorithm is short for the Markov Cluster Algorithm, a fastand - scalable unsupervised cluster algorithm for graphs (also known as networks) basedon - simulation of (stochastic) flow in graphs. + description: 'The MCL algorithm is short for the Markov Cluster Algorithm, a fast + + and scalable unsupervised cluster algorithm for graphs (also known as networks) + based + + on simulation of (stochastic) flow in graphs. ' license: Not confirmed name: MCL offers: @@ -26,30 +27,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MCL/22.282-GCCcore-12.3.0'']' + softwareVersion: '[''22.282'']' url: https://micans.org/mcl/ --- - -MCL -=== - - -The MCL algorithm is short for the Markov Cluster Algorithm, a fastand scalable unsupervised cluster algorithm for graphs (also known as networks) basedon simulation of (stochastic) flow in graphs. - -https://micans.org/mcl/ -# Available modules +# MCL -The overview below shows which MCL installations are available per target architecture in EESSI, ordered based on software version (new to old). +The MCL algorithm is short for the Markov Cluster Algorithm, a fast +and scalable unsupervised cluster algorithm for graphs (also known as networks) based +on simulation of (stochastic) flow in graphs. -To start using MCL, load one of these modules using a `module load` command like: +homepage: [https://micans.org/mcl/](https://micans.org/mcl/) -```shell -module load MCL/22.282-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MCL/22.282-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MCL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|22.282|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MCL/22.282-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/MDAnalysis.md b/docs/available_software/detail/MDAnalysis.md index e08221dc3d..f55f4c894c 100644 --- a/docs/available_software/detail/MDAnalysis.md +++ b/docs/available_software/detail/MDAnalysis.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: MDAnalysis is an object-oriented Python library to analyze trajectories - from molecular dynamics (MD)simulations in many popular formats. + description: 'MDAnalysis is an object-oriented Python library to analyze trajectories + from molecular dynamics (MD) + + simulations in many popular formats.' license: Not confirmed name: MDAnalysis offers: @@ -25,37 +25,81 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MDAnalysis/2.4.2-foss-2022b'']' + softwareVersion: '[''2.4.2'']' url: https://www.mdanalysis.org/ --- +# MDAnalysis + + +MDAnalysis is an object-oriented Python library to analyze trajectories from molecular dynamics (MD) +simulations in many popular formats. + +homepage: [https://www.mdanalysis.org/](https://www.mdanalysis.org/) + +## Available installations + + +|MDAnalysis version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MDAnalysis/2.4.2-foss-2022b`| + +## Extensions + +Overview of extensions included in MDAnalysis installations + + +### fasteners + + +|`fasteners` version|MDAnalysis modules that include it| +| --- | --- | +|0.18|`MDAnalysis/2.4.2-foss-2022b`| + +### funcsigs + + +|`funcsigs` version|MDAnalysis modules that include it| +| --- | --- | +|1.0.2|`MDAnalysis/2.4.2-foss-2022b`| + +### GridDataFormats + + +|`GridDataFormats` version|MDAnalysis modules that include it| +| --- | --- | +|1.0.1|`MDAnalysis/2.4.2-foss-2022b`| + +### gsd -MDAnalysis -========== +|`gsd` version|MDAnalysis modules that include it| +| --- | --- | +|2.8.0|`MDAnalysis/2.4.2-foss-2022b`| -MDAnalysis is an object-oriented Python library to analyze trajectories from molecular dynamics (MD)simulations in many popular formats. +### MDAnalysis -https://www.mdanalysis.org/ -# Available modules +|`MDAnalysis` version|MDAnalysis modules that include it| +| --- | --- | +|2.4.2|`MDAnalysis/2.4.2-foss-2022b`| -The overview below shows which MDAnalysis installations are available per target architecture in EESSI, ordered based on software version (new to old). +### mmtf-python -To start using MDAnalysis, load one of these modules using a `module load` command like: -```shell -module load MDAnalysis/2.4.2-foss-2022b -``` +|`mmtf-python` version|MDAnalysis modules that include it| +| --- | --- | +|1.1.3|`MDAnalysis/2.4.2-foss-2022b`| -*(This data was automatically generated on {{ generated_time }})* +### mrcfile -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MDAnalysis/2.4.2-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`mrcfile` version|MDAnalysis modules that include it| +| --- | --- | +|1.4.3|`MDAnalysis/2.4.2-foss-2022b`| -### MDAnalysis/2.4.2-foss-2022b +### msgpack -This is a list of extensions included in the module: -fasteners-0.18, funcsigs-1.0.2, GridDataFormats-1.0.1, gsd-2.8.0, MDAnalysis-2.4.2, mmtf-python-1.1.3, mrcfile-1.4.3, msgpack-1.0.5 \ No newline at end of file +|`msgpack` version|MDAnalysis modules that include it| +| --- | --- | +|1.0.5|`MDAnalysis/2.4.2-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/MDI.md b/docs/available_software/detail/MDI.md index d772ec0332..91e07a9397 100644 --- a/docs/available_software/detail/MDI.md +++ b/docs/available_software/detail/MDI.md @@ -1,19 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The MolSSI Driver Interface (MDI) project provides a standardized API - for fast, on-the-fly communication between computational chemistry codes. This - greatly simplifies the process of implementing methods that require the cooperation - of multiple software packages and enables developers to write a single implementation - that works across many different codes. The API is sufficiently general to support - a wide variety of techniques, including QM/MM, ab initio MD, machine learning, - advanced sampling, and path integral MD, while also being straightforwardly extensible. - Communication between codes is handled by the MDI Library, which enables tight - coupling between codes using either the MPI or TCP/IP methods. + description: "The MolSSI Driver Interface (MDI) project provides a \nstandardized\ + \ API for fast, on-the-fly communication between computational \nchemistry codes.\ + \ This greatly simplifies the process of implementing \nmethods that require the\ + \ cooperation of multiple software packages and \nenables developers to write\ + \ a single implementation that works across \nmany different codes. The API is\ + \ sufficiently general to support a wide \nvariety of techniques, including QM/MM,\ + \ ab initio MD, machine learning, \nadvanced sampling, and path integral MD, while\ + \ also being straightforwardly \nextensible. Communication between codes is handled\ + \ by the MDI Library, which \nenables tight coupling between codes using either\ + \ the MPI or TCP/IP methods.\n" license: Not confirmed name: MDI offers: @@ -32,31 +31,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MDI/1.4.26-gompi-2023a'', ''MDI/1.4.29-gompi-2023b'']' + softwareVersion: '[''1.4.29'', ''1.4.26'']' url: https://github.com/MolSSI-MDI/MDI_Library --- +# MDI -MDI -=== +The MolSSI Driver Interface (MDI) project provides a +standardized API for fast, on-the-fly communication between computational +chemistry codes. This greatly simplifies the process of implementing +methods that require the cooperation of multiple software packages and +enables developers to write a single implementation that works across +many different codes. The API is sufficiently general to support a wide +variety of techniques, including QM/MM, ab initio MD, machine learning, +advanced sampling, and path integral MD, while also being straightforwardly +extensible. Communication between codes is handled by the MDI Library, which +enables tight coupling between codes using either the MPI or TCP/IP methods. -The MolSSI Driver Interface (MDI) project provides a standardized API for fast, on-the-fly communication between computational chemistry codes. This greatly simplifies the process of implementing methods that require the cooperation of multiple software packages and enables developers to write a single implementation that works across many different codes. The API is sufficiently general to support a wide variety of techniques, including QM/MM, ab initio MD, machine learning, advanced sampling, and path integral MD, while also being straightforwardly extensible. Communication between codes is handled by the MDI Library, which enables tight coupling between codes using either the MPI or TCP/IP methods. -https://github.com/MolSSI-MDI/MDI_Library -# Available modules +homepage: [https://github.com/MolSSI-MDI/MDI_Library](https://github.com/MolSSI-MDI/MDI_Library) +## Available installations -The overview below shows which MDI installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using MDI, load one of these modules using a `module load` command like: - -```shell -module load MDI/1.4.29-gompi-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MDI/1.4.29-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|MDI/1.4.26-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MDI version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.4.29|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MDI/1.4.29-gompi-2023b`| +|1.4.26|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MDI/1.4.26-gompi-2024a`| +|1.4.26|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MDI/1.4.26-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/MEGAHIT.md b/docs/available_software/detail/MEGAHIT.md index c0f4f82aea..c20ad3ecfc 100644 --- a/docs/available_software/detail/MEGAHIT.md +++ b/docs/available_software/detail/MEGAHIT.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: An ultra-fast single-node solution for large and complexmetagenomics - assembly via succinct de Bruijn graph + description: 'An ultra-fast single-node solution for large and complex + + metagenomics assembly via succinct de Bruijn graph' license: Not confirmed name: MEGAHIT offers: @@ -25,30 +24,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MEGAHIT/1.2.9-GCCcore-12.3.0'']' + softwareVersion: '[''1.2.9'']' url: https://github.com/voutcn/megahit --- - -MEGAHIT -======= - - -An ultra-fast single-node solution for large and complexmetagenomics assembly via succinct de Bruijn graph - -https://github.com/voutcn/megahit -# Available modules +# MEGAHIT -The overview below shows which MEGAHIT installations are available per target architecture in EESSI, ordered based on software version (new to old). +An ultra-fast single-node solution for large and complex +metagenomics assembly via succinct de Bruijn graph -To start using MEGAHIT, load one of these modules using a `module load` command like: +homepage: [https://github.com/voutcn/megahit](https://github.com/voutcn/megahit) -```shell -module load MEGAHIT/1.2.9-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MEGAHIT/1.2.9-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MEGAHIT version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MEGAHIT/1.2.9-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/METIS.md b/docs/available_software/detail/METIS.md index 5fb7931c90..3846328a20 100644 --- a/docs/available_software/detail/METIS.md +++ b/docs/available_software/detail/METIS.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: METIS is a set of serial programs for partitioning graphs, partitioning - finite element meshes, and producing fill reducing orderings for sparse matrices. - The algorithms implemented in METIS are based on the multilevel recursive-bisection, - multilevel k-way, and multi-constraint partitioning schemes. + description: "\n METIS is a set of serial programs for partitioning graphs, partitioning\n\ + \ finite element meshes, and producing fill reducing orderings for sparse\n matrices.\ + \ The algorithms implemented in METIS are based on the multilevel\n recursive-bisection,\ + \ multilevel k-way, and multi-constraint partitioning\n schemes.\n" license: Not confirmed name: METIS offers: @@ -27,33 +25,29 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''METIS/5.1.0-GCCcore-12.2.0'', ''METIS/5.1.0-GCCcore-12.3.0'', - ''METIS/5.1.0-GCCcore-13.2.0'']' - url: https://karypis.github.io/glaros/projects/gp.html + softwareVersion: '[''5.1.0'']' + url: http://glaros.dtc.umn.edu/gkhome/metis/metis/overview --- +# METIS -METIS -===== -METIS is a set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices. The algorithms implemented in METIS are based on the multilevel recursive-bisection, multilevel k-way, and multi-constraint partitioning schemes. + METIS is a set of serial programs for partitioning graphs, partitioning + finite element meshes, and producing fill reducing orderings for sparse + matrices. The algorithms implemented in METIS are based on the multilevel + recursive-bisection, multilevel k-way, and multi-constraint partitioning + schemes. -https://karypis.github.io/glaros/projects/gp.html -# Available modules +homepage: [http://glaros.dtc.umn.edu/gkhome/metis/metis/overview](http://glaros.dtc.umn.edu/gkhome/metis/metis/overview) -The overview below shows which METIS installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using METIS, load one of these modules using a `module load` command like: -```shell -module load METIS/5.1.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|METIS/5.1.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|METIS/5.1.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|METIS/5.1.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|METIS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`METIS/5.1.0-GCCcore-14.2.0`| +|5.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`METIS/5.1.0-GCCcore-13.3.0`| +|5.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`METIS/5.1.0-GCCcore-13.2.0`| +|5.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`METIS/5.1.0-GCCcore-12.3.0`| +|5.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`METIS/5.1.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/MLflow.md b/docs/available_software/detail/MLflow.md index 6b88263efb..683f67b242 100644 --- a/docs/available_software/detail/MLflow.md +++ b/docs/available_software/detail/MLflow.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: MLflow is a platform to streamline machine learning development, including - tracking experiments,packaging code into reproducible runs, and sharing and deploying - models. + description: 'MLflow is a platform to streamline machine learning development, including + tracking experiments, + + packaging code into reproducible runs, and sharing and deploying models.' license: Not confirmed name: MLflow offers: @@ -26,44 +25,236 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MLflow/2.10.2-gfbf-2023a'', ''MLflow/2.18.0-gfbf-2023b'']' + softwareVersion: '[''2.22.4'', ''2.18.0'', ''2.10.2'']' url: https://mlflow.org --- +# MLflow + + +MLflow is a platform to streamline machine learning development, including tracking experiments, +packaging code into reproducible runs, and sharing and deploying models. + +homepage: [https://mlflow.org](https://mlflow.org) + +## Available installations + + +|MLflow version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.22.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MLflow/2.22.4-gfbf-2024a`| +|2.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MLflow/2.18.0-gfbf-2023b`| +|2.10.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MLflow/2.10.2-gfbf-2023a`| + +## Extensions + +Overview of extensions included in MLflow installations + + +### alembic + + +|`alembic` version|MLflow modules that include it| +| --- | --- | +|1.14.0|`MLflow/2.18.0-gfbf-2023b`| + +### annotated_doc + + +|`annotated_doc` version|MLflow modules that include it| +| --- | --- | +|0.0.4|`MLflow/2.22.4-gfbf-2024a`| + +### anyio + + +|`anyio` version|MLflow modules that include it| +| --- | --- | +|4.9.0|`MLflow/2.22.4-gfbf-2024a`| + +### cachetools + + +|`cachetools` version|MLflow modules that include it| +| --- | --- | +|5.5.0|`MLflow/2.22.4-gfbf-2024a`
`MLflow/2.18.0-gfbf-2023b`| + +### databricks_sdk + + +|`databricks_sdk` version|MLflow modules that include it| +| --- | --- | +|0.72.0|`MLflow/2.22.4-gfbf-2024a`| +|0.36.0|`MLflow/2.18.0-gfbf-2023b`| + +### docker + + +|`docker` version|MLflow modules that include it| +| --- | --- | +|7.1.0|`MLflow/2.22.4-gfbf-2024a`
`MLflow/2.18.0-gfbf-2023b`| +|7.0.0|`MLflow/2.10.2-gfbf-2023a`| + +### entrypoints + + +|`entrypoints` version|MLflow modules that include it| +| --- | --- | +|0.4|`MLflow/2.10.2-gfbf-2023a`| + +### fastapi + + +|`fastapi` version|MLflow modules that include it| +| --- | --- | +|0.126.0|`MLflow/2.22.4-gfbf-2024a`| + +### google-auth + + +|`google-auth` version|MLflow modules that include it| +| --- | --- | +|2.35.0|`MLflow/2.18.0-gfbf-2023b`| + +### graphene + + +|`graphene` version|MLflow modules that include it| +| --- | --- | +|3.4.3|`MLflow/2.22.4-gfbf-2024a`| +|3.4.1|`MLflow/2.18.0-gfbf-2023b`| + +### graphql-relay + + +|`graphql-relay` version|MLflow modules that include it| +| --- | --- | +|3.2.0|`MLflow/2.18.0-gfbf-2023b`| + +### graphql_core + + +|`graphql_core` version|MLflow modules that include it| +| --- | --- | +|3.2.7|`MLflow/2.22.4-gfbf-2024a`| +|3.2.5|`MLflow/2.18.0-gfbf-2023b`| + +### graphql_relay + + +|`graphql_relay` version|MLflow modules that include it| +| --- | --- | +|3.2.0|`MLflow/2.22.4-gfbf-2024a`| + +### gunicorn + + +|`gunicorn` version|MLflow modules that include it| +| --- | --- | +|23.0.0|`MLflow/2.22.4-gfbf-2024a`
`MLflow/2.18.0-gfbf-2023b`| +|21.2.0|`MLflow/2.10.2-gfbf-2023a`| + +### h11 + + +|`h11` version|MLflow modules that include it| +| --- | --- | +|0.16.0|`MLflow/2.22.4-gfbf-2024a`| + +### Markdown + + +|`Markdown` version|MLflow modules that include it| +| --- | --- | +|3.5.2|`MLflow/2.10.2-gfbf-2023a`| + +### mlflow + + +|`mlflow` version|MLflow modules that include it| +| --- | --- | +|2.22.4|`MLflow/2.22.4-gfbf-2024a`| +|2.18.0|`MLflow/2.18.0-gfbf-2023b`| +|2.10.2|`MLflow/2.10.2-gfbf-2023a`| + +### mlflow_skinny + + +|`mlflow_skinny` version|MLflow modules that include it| +| --- | --- | +|2.22.4|`MLflow/2.22.4-gfbf-2024a`| +|2.18.0|`MLflow/2.18.0-gfbf-2023b`| + +### opentelemetry_api + + +|`opentelemetry_api` version|MLflow modules that include it| +| --- | --- | +|1.36.0|`MLflow/2.22.4-gfbf-2024a`| +|1.27.0|`MLflow/2.18.0-gfbf-2023b`| + +### opentelemetry_sdk + + +|`opentelemetry_sdk` version|MLflow modules that include it| +| --- | --- | +|1.36.0|`MLflow/2.22.4-gfbf-2024a`| +|1.27.0|`MLflow/2.18.0-gfbf-2023b`| + +### opentelemetry_semantic_conventions + + +|`opentelemetry_semantic_conventions` version|MLflow modules that include it| +| --- | --- | +|0.57b0|`MLflow/2.22.4-gfbf-2024a`| +|0.48b0|`MLflow/2.18.0-gfbf-2023b`| + +### pyasn1-modules + + +|`pyasn1-modules` version|MLflow modules that include it| +| --- | --- | +|0.4.1|`MLflow/2.18.0-gfbf-2023b`| + +### querystring_parser -MLflow -====== +|`querystring_parser` version|MLflow modules that include it| +| --- | --- | +|1.2.4|`MLflow/2.10.2-gfbf-2023a`| -MLflow is a platform to streamline machine learning development, including tracking experiments,packaging code into reproducible runs, and sharing and deploying models. +### rsa -https://mlflow.org -# Available modules +|`rsa` version|MLflow modules that include it| +| --- | --- | +|4.9|`MLflow/2.18.0-gfbf-2023b`| -The overview below shows which MLflow installations are available per target architecture in EESSI, ordered based on software version (new to old). +### sniffio -To start using MLflow, load one of these modules using a `module load` command like: -```shell -module load MLflow/2.18.0-gfbf-2023b -``` +|`sniffio` version|MLflow modules that include it| +| --- | --- | +|1.3.1|`MLflow/2.22.4-gfbf-2024a`| -*(This data was automatically generated on {{ generated_time }})* +### sqlparse -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MLflow/2.18.0-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|MLflow/2.10.2-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`sqlparse` version|MLflow modules that include it| +| --- | --- | +|0.5.5|`MLflow/2.22.4-gfbf-2024a`| +|0.5.1|`MLflow/2.18.0-gfbf-2023b`| +|0.4.4|`MLflow/2.10.2-gfbf-2023a`| -### MLflow/2.18.0-gfbf-2023b +### starlette -This is a list of extensions included in the module: -alembic-1.14.0, cachetools-5.5.0, databricks_sdk-0.36.0, docker-7.1.0, google-auth-2.35.0, graphene-3.4.1, graphql-relay-3.2.0, graphql_core-3.2.5, gunicorn-23.0.0, mlflow-2.18.0, mlflow_skinny-2.18.0, opentelemetry_api-1.27.0, opentelemetry_sdk-1.27.0, opentelemetry_semantic_conventions-0.48b0, pyasn1-modules-0.4.1, rsa-4.9, sqlparse-0.5.1 +|`starlette` version|MLflow modules that include it| +| --- | --- | +|0.50.0|`MLflow/2.22.4-gfbf-2024a`| -### MLflow/2.10.2-gfbf-2023a +### uvicorn -This is a list of extensions included in the module: -docker-7.0.0, entrypoints-0.4, gunicorn-21.2.0, Markdown-3.5.2, mlflow-2.10.2, querystring_parser-1.2.4, sqlparse-0.4.4 \ No newline at end of file +|`uvicorn` version|MLflow modules that include it| +| --- | --- | +|0.38.0|`MLflow/2.22.4-gfbf-2024a`| \ No newline at end of file diff --git a/docs/available_software/detail/MMseqs2.md b/docs/available_software/detail/MMseqs2.md index a6c997a8cf..71147c1fb7 100644 --- a/docs/available_software/detail/MMseqs2.md +++ b/docs/available_software/detail/MMseqs2.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MMseqs2/14-7e284-gompi-2023a'']' + softwareVersion: '[''14-7e284'']' url: https://mmseqs.com --- - -MMseqs2 -======= +# MMseqs2 MMseqs2: ultra fast and sensitive search and clustering suite -https://mmseqs.com -# Available modules - - -The overview below shows which MMseqs2 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using MMseqs2, load one of these modules using a `module load` command like: +homepage: [https://mmseqs.com](https://mmseqs.com) -```shell -module load MMseqs2/14-7e284-gompi-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MMseqs2/14-7e284-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MMseqs2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|14-7e284|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MMseqs2/14-7e284-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/MODFLOW.md b/docs/available_software/detail/MODFLOW.md index 40f27b14d3..3da52cfdb1 100644 --- a/docs/available_software/detail/MODFLOW.md +++ b/docs/available_software/detail/MODFLOW.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: MODFLOW is the USGS's modular hydrologic model. MODFLOW is considered - an international standard for simulating and predicting groundwater conditions - and groundwater/surface-water interactions. + description: "\nMODFLOW is the USGS's modular hydrologic model. MODFLOW is considered\ + \ an\n international standard for simulating and predicting groundwater conditions\n\ + \ and groundwater/surface-water interactions. \n" license: Not confirmed name: MODFLOW offers: @@ -26,30 +24,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MODFLOW/6.4.4-foss-2023a'']' + softwareVersion: '[''6.4.4'']' url: https://www.usgs.gov/mission-areas/water-resources/science/modflow-and-related-programs --- +# MODFLOW -MODFLOW -======= -MODFLOW is the USGS's modular hydrologic model. MODFLOW is considered an international standard for simulating and predicting groundwater conditions and groundwater/surface-water interactions. +MODFLOW is the USGS's modular hydrologic model. MODFLOW is considered an + international standard for simulating and predicting groundwater conditions + and groundwater/surface-water interactions. -https://www.usgs.gov/mission-areas/water-resources/science/modflow-and-related-programs -# Available modules +homepage: [https://www.usgs.gov/mission-areas/water-resources/science/modflow-and-related-programs](https://www.usgs.gov/mission-areas/water-resources/science/modflow-and-related-programs) -The overview below shows which MODFLOW installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using MODFLOW, load one of these modules using a `module load` command like: -```shell -module load MODFLOW/6.4.4-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MODFLOW/6.4.4-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MODFLOW version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MODFLOW/6.4.4-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/MPC.md b/docs/available_software/detail/MPC.md index 5cc0b7d632..e86ba98149 100644 --- a/docs/available_software/detail/MPC.md +++ b/docs/available_software/detail/MPC.md @@ -1,15 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Gnu Mpc is a C library for the arithmetic of complex numbers with arbitrarily - high precision and correct rounding of the result. It extends the principles of - the IEEE-754 standard for fixed precision real floating point numbers to complex - numbers, providing well-defined semantics for every operation. At the same time, - speed of operation at high precision is a major design goal. + description: "Gnu Mpc is a C library for the arithmetic of\n complex numbers with\ + \ arbitrarily high precision and correct\n rounding of the result. It extends\ + \ the principles of the IEEE-754\n standard for fixed precision real floating\ + \ point numbers to\n complex numbers, providing well-defined semantics for every\n\ + \ operation. At the same time, speed of operation at high precision\n is a major\ + \ design goal." license: Not confirmed name: MPC offers: @@ -28,32 +27,30 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MPC/1.3.1-GCCcore-12.2.0'', ''MPC/1.3.1-GCCcore-12.3.0'', ''MPC/1.3.1-GCCcore-13.2.0'']' + softwareVersion: '[''1.3.1'']' url: http://www.multiprecision.org/ --- +# MPC -MPC -=== +Gnu Mpc is a C library for the arithmetic of + complex numbers with arbitrarily high precision and correct + rounding of the result. It extends the principles of the IEEE-754 + standard for fixed precision real floating point numbers to + complex numbers, providing well-defined semantics for every + operation. At the same time, speed of operation at high precision + is a major design goal. -Gnu Mpc is a C library for the arithmetic of complex numbers with arbitrarily high precision and correct rounding of the result. It extends the principles of the IEEE-754 standard for fixed precision real floating point numbers to complex numbers, providing well-defined semantics for every operation. At the same time, speed of operation at high precision is a major design goal. +homepage: [http://www.multiprecision.org/](http://www.multiprecision.org/) -http://www.multiprecision.org/ -# Available modules +## Available installations -The overview below shows which MPC installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using MPC, load one of these modules using a `module load` command like: - -```shell -module load MPC/1.3.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MPC/1.3.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|MPC/1.3.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|MPC/1.3.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MPC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MPC/1.3.1-GCCcore-14.3.0`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MPC/1.3.1-GCCcore-14.2.0`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MPC/1.3.1-GCCcore-13.3.0`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MPC/1.3.1-GCCcore-13.2.0`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MPC/1.3.1-GCCcore-12.3.0`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MPC/1.3.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/MPFR.md b/docs/available_software/detail/MPFR.md index 9f70965482..46b3b3be0f 100644 --- a/docs/available_software/detail/MPFR.md +++ b/docs/available_software/detail/MPFR.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The MPFR library is a C library for multiple-precision floating-point - computations with correct rounding. + description: "\n The MPFR library is a C library for multiple-precision floating-point\n\ + \ computations with correct rounding.\n" license: Not confirmed name: MPFR offers: @@ -25,33 +23,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MPFR/4.2.0-GCCcore-12.2.0'', ''MPFR/4.2.0-GCCcore-12.3.0'', - ''MPFR/4.2.1-GCCcore-13.2.0'']' + softwareVersion: '[''4.2.2'', ''4.2.1'', ''4.2.0'']' url: https://www.mpfr.org --- +# MPFR -MPFR -==== -The MPFR library is a C library for multiple-precision floating-point computations with correct rounding. + The MPFR library is a C library for multiple-precision floating-point + computations with correct rounding. -https://www.mpfr.org -# Available modules +homepage: [https://www.mpfr.org](https://www.mpfr.org) -The overview below shows which MPFR installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using MPFR, load one of these modules using a `module load` command like: -```shell -module load MPFR/4.2.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MPFR/4.2.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|MPFR/4.2.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|MPFR/4.2.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MPFR version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MPFR/4.2.2-GCCcore-14.3.0`| +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MPFR/4.2.2-GCCcore-14.2.0`| +|4.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MPFR/4.2.1-GCCcore-13.3.0`| +|4.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MPFR/4.2.1-GCCcore-13.2.0`| +|4.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MPFR/4.2.0-GCCcore-12.3.0`| +|4.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MPFR/4.2.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/MUMPS.md b/docs/available_software/detail/MUMPS.md index 79b09db22d..7b9c6ca413 100644 --- a/docs/available_software/detail/MUMPS.md +++ b/docs/available_software/detail/MUMPS.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MUMPS/5.6.1-foss-2022b-metis'', ''MUMPS/5.6.1-foss-2023a-metis'', - ''MUMPS/5.6.1-foss-2023b-metis'']' - url: https://mumps-solver.org + softwareVersion: '[''5.8.1'', ''5.7.2'', ''5.6.1'']' + url: https://graal.ens-lyon.fr/MUMPS/ --- - -MUMPS -===== +# MUMPS A parallel sparse direct solver -https://mumps-solver.org -# Available modules - - -The overview below shows which MUMPS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using MUMPS, load one of these modules using a `module load` command like: +homepage: [https://graal.ens-lyon.fr/MUMPS/](https://graal.ens-lyon.fr/MUMPS/) -```shell -module load MUMPS/5.6.1-foss-2023b-metis -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MUMPS/5.6.1-foss-2023b-metis|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|MUMPS/5.6.1-foss-2023a-metis|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|MUMPS/5.6.1-foss-2022b-metis|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MUMPS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MUMPS/5.8.1-foss-2025a-metis`| +|5.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MUMPS/5.7.2-foss-2024a-metis`| +|5.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MUMPS/5.6.1-foss-2023b-metis`| +|5.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MUMPS/5.6.1-foss-2023a-metis`| +|5.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MUMPS/5.6.1-foss-2022b-metis`| \ No newline at end of file diff --git a/docs/available_software/detail/MUSCLE.md b/docs/available_software/detail/MUSCLE.md index d677bdc153..548c287c35 100644 --- a/docs/available_software/detail/MUSCLE.md +++ b/docs/available_software/detail/MUSCLE.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: MUSCLE is one of the best-performing multiple alignment programs according - to published benchmark tests, with accuracy and speed that are consistently better - than CLUSTALW. MUSCLE can align hundreds of sequences in seconds. Most users learn - everything they need to know about MUSCLE in a few minutes-only a handful of command-line - options are needed to perform common alignment tasks. + description: "MUSCLE is one of the best-performing multiple alignment programs\n\ + \ according to published benchmark tests, with accuracy and speed that are consistently\n\ + \ better than CLUSTALW. MUSCLE can align hundreds of sequences in seconds. Most\ + \ users\n learn everything they need to know about MUSCLE in a few minutes-only\ + \ a handful of\n command-line options are needed to perform common alignment tasks." license: Not confirmed name: MUSCLE offers: @@ -28,30 +26,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MUSCLE/5.1.0-GCCcore-12.3.0'']' + softwareVersion: '[''5.1.0'']' url: https://drive5.com/muscle/ --- +# MUSCLE -MUSCLE -====== +MUSCLE is one of the best-performing multiple alignment programs + according to published benchmark tests, with accuracy and speed that are consistently + better than CLUSTALW. MUSCLE can align hundreds of sequences in seconds. Most users + learn everything they need to know about MUSCLE in a few minutes-only a handful of + command-line options are needed to perform common alignment tasks. -MUSCLE is one of the best-performing multiple alignment programs according to published benchmark tests, with accuracy and speed that are consistently better than CLUSTALW. MUSCLE can align hundreds of sequences in seconds. Most users learn everything they need to know about MUSCLE in a few minutes-only a handful of command-line options are needed to perform common alignment tasks. +homepage: [https://drive5.com/muscle/](https://drive5.com/muscle/) -https://drive5.com/muscle/ -# Available modules +## Available installations -The overview below shows which MUSCLE installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using MUSCLE, load one of these modules using a `module load` command like: - -```shell -module load MUSCLE/5.1.0-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MUSCLE/5.1.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MUSCLE version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MUSCLE/5.1.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Mako.md b/docs/available_software/detail/Mako.md index a5f53a04f3..d0c2bd9397 100644 --- a/docs/available_software/detail/Mako.md +++ b/docs/available_software/detail/Mako.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,46 +23,53 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Mako/1.2.4-GCCcore-12.2.0'', ''Mako/1.2.4-GCCcore-12.3.0'', - ''Mako/1.2.4-GCCcore-13.2.0'']' + softwareVersion: '[''1.3.10'', ''1.3.5'', ''1.2.4'']' url: https://www.makotemplates.org --- - -Mako -==== +# Mako A super-fast templating language that borrows the best ideas from the existing templating languages -https://www.makotemplates.org -# Available modules +homepage: [https://www.makotemplates.org](https://www.makotemplates.org) + +## Available installations + +|Mako version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Mako/1.3.10-GCCcore-14.3.0`| +|1.3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Mako/1.3.10-GCCcore-14.2.0`| +|1.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Mako/1.3.5-GCCcore-13.3.0`| +|1.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Mako/1.2.4-GCCcore-13.2.0`| +|1.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Mako/1.2.4-GCCcore-12.3.0`| +|1.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Mako/1.2.4-GCCcore-12.2.0`| -The overview below shows which Mako installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using Mako, load one of these modules using a `module load` command like: +Overview of extensions included in Mako installations -```shell -module load Mako/1.2.4-GCCcore-13.2.0 -``` -*(This data was automatically generated on {{ generated_time }})* +### Mako -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Mako/1.2.4-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Mako/1.2.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Mako/1.2.4-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`Mako` version|Mako modules that include it| +| --- | --- | +|1.3.10|`Mako/1.3.10-GCCcore-14.3.0`
`Mako/1.3.10-GCCcore-14.2.0`| +|1.3.5|`Mako/1.3.5-GCCcore-13.3.0`| +|1.2.4|`Mako/1.2.4-GCCcore-13.2.0`
`Mako/1.2.4-GCCcore-12.3.0`| -### Mako/1.2.4-GCCcore-13.2.0 +### MarkupSafe -This is a list of extensions included in the module: -Mako-1.2.4, MarkupSafe-2.1.3 +|`MarkupSafe` version|Mako modules that include it| +| --- | --- | +|2.1.5|`Mako/1.3.5-GCCcore-13.3.0`| +|2.1.3|`Mako/1.2.4-GCCcore-13.2.0`
`Mako/1.2.4-GCCcore-12.3.0`| -### Mako/1.2.4-GCCcore-12.3.0 +### MarkUpSafe -This is a list of extensions included in the module: -Mako-1.2.4, MarkupSafe-2.1.3 \ No newline at end of file +|`MarkUpSafe` version|Mako modules that include it| +| --- | --- | +|3.0.2|`Mako/1.3.10-GCCcore-14.3.0`
`Mako/1.3.10-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/MariaDB.md b/docs/available_software/detail/MariaDB.md index 0d90e39468..cd2e49cf6a 100644 --- a/docs/available_software/detail/MariaDB.md +++ b/docs/available_software/detail/MariaDB.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'MariaDB is an enhanced, drop-in replacement for MySQL.Included engines: - myISAM, Aria, InnoDB, RocksDB, TokuDB, OQGraph, Mroonga.' + description: 'MariaDB is an enhanced, drop-in replacement for MySQL. + + Included engines: myISAM, Aria, InnoDB, RocksDB, TokuDB, OQGraph, Mroonga.' license: Not confirmed name: MariaDB offers: @@ -25,30 +24,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MariaDB/11.6.0-GCC-12.3.0'']' + softwareVersion: '[''11.6.0'']' url: https://mariadb.org/ --- - -MariaDB -======= - - -MariaDB is an enhanced, drop-in replacement for MySQL.Included engines: myISAM, Aria, InnoDB, RocksDB, TokuDB, OQGraph, Mroonga. - -https://mariadb.org/ -# Available modules +# MariaDB -The overview below shows which MariaDB installations are available per target architecture in EESSI, ordered based on software version (new to old). +MariaDB is an enhanced, drop-in replacement for MySQL. +Included engines: myISAM, Aria, InnoDB, RocksDB, TokuDB, OQGraph, Mroonga. -To start using MariaDB, load one of these modules using a `module load` command like: +homepage: [https://mariadb.org/](https://mariadb.org/) -```shell -module load MariaDB/11.6.0-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MariaDB/11.6.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MariaDB version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|11.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MariaDB/11.6.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Markdown.md b/docs/available_software/detail/Markdown.md index a2a5b2e4d8..c95f9c8df5 100644 --- a/docs/available_software/detail/Markdown.md +++ b/docs/available_software/detail/Markdown.md @@ -1,13 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: This is a Python implementation of John Gruber's Markdown.It is almost - completely compliant with the reference implementation, though there are a few - known issues.Additional features are supported by the Available Extensions. + description: 'This is a Python implementation of John Gruber''s Markdown. + + It is almost completely compliant with the reference implementation, though there + are a few known issues. + + Additional features are supported by the Available Extensions. + + ' license: Not confirmed name: Markdown offers: @@ -26,30 +29,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Markdown/3.6-GCCcore-13.2.0'']' + softwareVersion: '[''3.7'', ''3.6'']' url: https://python-markdown.github.io/ --- +# Markdown -Markdown -======== - - -This is a Python implementation of John Gruber's Markdown.It is almost completely compliant with the reference implementation, though there are a few known issues.Additional features are supported by the Available Extensions. - -https://python-markdown.github.io/ -# Available modules +This is a Python implementation of John Gruber's Markdown. +It is almost completely compliant with the reference implementation, though there are a few known issues. +Additional features are supported by the Available Extensions. -The overview below shows which Markdown installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using Markdown, load one of these modules using a `module load` command like: +homepage: [https://python-markdown.github.io/](https://python-markdown.github.io/) -```shell -module load Markdown/3.6-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Markdown/3.6-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Markdown version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Markdown/3.7-GCCcore-13.3.0`| +|3.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Markdown/3.6-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Mash.md b/docs/available_software/detail/Mash.md index 3d304786d2..2887caad2f 100644 --- a/docs/available_software/detail/Mash.md +++ b/docs/available_software/detail/Mash.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Mash/2.3-GCC-12.2.0'']' + softwareVersion: '[''2.3'']' url: http://mash.readthedocs.org --- - -Mash -==== +# Mash Fast genome and metagenome distance estimation using MinHash -http://mash.readthedocs.org -# Available modules - - -The overview below shows which Mash installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Mash, load one of these modules using a `module load` command like: +homepage: [http://mash.readthedocs.org](http://mash.readthedocs.org) -```shell -module load Mash/2.3-GCC-12.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Mash/2.3-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Mash version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Mash/2.3-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Mesa.md b/docs/available_software/detail/Mesa.md index 550f751365..0fe4822def 100644 --- a/docs/available_software/detail/Mesa.md +++ b/docs/available_software/detail/Mesa.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Mesa is an open-source implementation of the OpenGL specification - - a system for rendering interactive 3D graphics. + description: "Mesa is an open-source implementation of the OpenGL specification\ + \ -\n a system for rendering interactive 3D graphics." license: Not confirmed name: Mesa offers: @@ -25,33 +23,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Mesa/22.2.4-GCCcore-12.2.0'', ''Mesa/23.1.4-GCCcore-12.3.0'', - ''Mesa/23.1.9-GCCcore-13.2.0'']' + softwareVersion: '[''25.1.3'', ''24.1.3'', ''23.1.9'', ''23.1.4'', ''22.2.4'']' url: https://www.mesa3d.org/ --- +# Mesa -Mesa -==== +Mesa is an open-source implementation of the OpenGL specification - + a system for rendering interactive 3D graphics. -Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics. +homepage: [https://www.mesa3d.org/](https://www.mesa3d.org/) -https://www.mesa3d.org/ -# Available modules +## Available installations -The overview below shows which Mesa installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Mesa, load one of these modules using a `module load` command like: - -```shell -module load Mesa/23.1.9-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Mesa/23.1.9-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Mesa/23.1.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Mesa/22.2.4-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Mesa version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|25.1.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Mesa/25.1.3-GCCcore-14.2.0`| +|24.1.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Mesa/24.1.3-GCCcore-13.3.0`| +|23.1.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Mesa/23.1.9-GCCcore-13.2.0`| +|23.1.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Mesa/23.1.4-GCCcore-12.3.0`| +|22.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Mesa/22.2.4-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Meson.md b/docs/available_software/detail/Meson.md index 684a950e01..447d1bdceb 100644 --- a/docs/available_software/detail/Meson.md +++ b/docs/available_software/detail/Meson.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,34 +23,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Meson/0.64.0-GCCcore-12.2.0'', ''Meson/1.1.1-GCCcore-12.3.0'', - ''Meson/1.2.3-GCCcore-13.2.0'', ''Meson/1.3.1-GCCcore-12.3.0'']' + softwareVersion: '[''1.8.2'', ''1.6.1'', ''1.4.0'', ''1.3.1'', ''1.2.3'', ''1.1.1'', + ''0.64.0'']' url: https://mesonbuild.com --- - -Meson -===== +# Meson Meson is a cross-platform build system designed to be both as fast and as user friendly as possible. -https://mesonbuild.com -# Available modules - - -The overview below shows which Meson installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Meson, load one of these modules using a `module load` command like: +homepage: [https://mesonbuild.com](https://mesonbuild.com) -```shell -module load Meson/1.3.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Meson/1.3.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Meson/1.2.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Meson/1.1.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Meson/0.64.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Meson version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Meson/1.8.2-GCCcore-14.3.0`| +|1.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Meson/1.6.1-GCCcore-14.2.0`| +|1.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Meson/1.4.0-GCCcore-13.3.0`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Meson/1.3.1-GCCcore-12.3.0`| +|1.2.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Meson/1.2.3-GCCcore-13.2.0`| +|1.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Meson/1.1.1-GCCcore-12.3.0`| +|0.64.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Meson/0.64.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/MetaBAT.md b/docs/available_software/detail/MetaBAT.md new file mode 100644 index 0000000000..d7cf8614d4 --- /dev/null +++ b/docs/available_software/detail/MetaBAT.md @@ -0,0 +1,43 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'MetaBAT: A robust statistical framework for + + reconstructing genomes from metagenomic data' + license: Not confirmed + name: MetaBAT + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.17'']' + url: https://bitbucket.org/berkeleylab/metabat +--- +# MetaBAT + + +MetaBAT: A robust statistical framework for +reconstructing genomes from metagenomic data + +homepage: [https://bitbucket.org/berkeleylab/metabat](https://bitbucket.org/berkeleylab/metabat) + +## Available installations + + +|MetaBAT version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MetaBAT/2.17-GCC-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/MetaEuk.md b/docs/available_software/detail/MetaEuk.md index 03ef279194..d307254cbe 100644 --- a/docs/available_software/detail/MetaEuk.md +++ b/docs/available_software/detail/MetaEuk.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: MetaEuk is a modular toolkit designed for large-scale gene discovery - and annotation in eukaryotic metagenomic contigs. + description: "MetaEuk is a modular toolkit designed for large-scale gene discovery\ + \ and annotation in eukaryotic\n metagenomic contigs." license: Not confirmed name: MetaEuk offers: @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MetaEuk/6-GCC-12.2.0'']' + softwareVersion: '[''6'']' url: https://metaeuk.soedinglab.org --- +# MetaEuk -MetaEuk -======= +MetaEuk is a modular toolkit designed for large-scale gene discovery and annotation in eukaryotic + metagenomic contigs. -MetaEuk is a modular toolkit designed for large-scale gene discovery and annotation in eukaryotic metagenomic contigs. +homepage: [https://metaeuk.soedinglab.org](https://metaeuk.soedinglab.org) -https://metaeuk.soedinglab.org -# Available modules +## Available installations -The overview below shows which MetaEuk installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using MetaEuk, load one of these modules using a `module load` command like: - -```shell -module load MetaEuk/6-GCC-12.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MetaEuk/6-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MetaEuk version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MetaEuk/6-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/MetalWalls.md b/docs/available_software/detail/MetalWalls.md index 2bac71fa68..37c0abb62a 100644 --- a/docs/available_software/detail/MetalWalls.md +++ b/docs/available_software/detail/MetalWalls.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: MetalWalls (MW) is a molecular dynamics code dedicated to the modelling - of electrochemical systems.Its main originality is the inclusion of a series of - methods allowing to apply a constant potential within theelectrode materials. + description: 'MetalWalls (MW) is a molecular dynamics code dedicated to the modelling + of electrochemical systems. + + Its main originality is the inclusion of a series of methods allowing to apply + a constant potential within the + + electrode materials.' license: Not confirmed name: MetalWalls offers: @@ -26,30 +28,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MetalWalls/21.06.1-foss-2023a'']' + softwareVersion: '[''21.06.1'']' url: https://gitlab.com/ampere2/metalwalls --- - -MetalWalls -========== - - -MetalWalls (MW) is a molecular dynamics code dedicated to the modelling of electrochemical systems.Its main originality is the inclusion of a series of methods allowing to apply a constant potential within theelectrode materials. - -https://gitlab.com/ampere2/metalwalls -# Available modules +# MetalWalls -The overview below shows which MetalWalls installations are available per target architecture in EESSI, ordered based on software version (new to old). +MetalWalls (MW) is a molecular dynamics code dedicated to the modelling of electrochemical systems. +Its main originality is the inclusion of a series of methods allowing to apply a constant potential within the +electrode materials. -To start using MetalWalls, load one of these modules using a `module load` command like: +homepage: [https://gitlab.com/ampere2/metalwalls](https://gitlab.com/ampere2/metalwalls) -```shell -module load MetalWalls/21.06.1-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MetalWalls/21.06.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MetalWalls version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|21.06.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MetalWalls/21.06.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/MrBayes.md b/docs/available_software/detail/MrBayes.md index a5618379ac..b16169810b 100644 --- a/docs/available_software/detail/MrBayes.md +++ b/docs/available_software/detail/MrBayes.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: MrBayes is a program for Bayesian inference and model choice across - a wide range of phylogenetic and evolutionary models. + description: "MrBayes is a program for Bayesian inference and model choice across\n\ + \ a wide range of phylogenetic and evolutionary models." license: Not confirmed name: MrBayes offers: @@ -25,30 +23,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MrBayes/3.2.7-gompi-2023a'']' + softwareVersion: '[''3.2.7'']' url: https://nbisweden.github.io/MrBayes/ --- +# MrBayes -MrBayes -======= +MrBayes is a program for Bayesian inference and model choice across + a wide range of phylogenetic and evolutionary models. -MrBayes is a program for Bayesian inference and model choice across a wide range of phylogenetic and evolutionary models. +homepage: [https://nbisweden.github.io/MrBayes/](https://nbisweden.github.io/MrBayes/) -https://nbisweden.github.io/MrBayes/ -# Available modules +## Available installations -The overview below shows which MrBayes installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using MrBayes, load one of these modules using a `module load` command like: - -```shell -module load MrBayes/3.2.7-gompi-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MrBayes/3.2.7-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|MrBayes version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.2.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`MrBayes/3.2.7-gompi-2025a`| +|3.2.7|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`MrBayes/3.2.7-gompi-2023a-CUDA-12.1.1`| +|3.2.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MrBayes/3.2.7-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/MultiQC.md b/docs/available_software/detail/MultiQC.md index 63e3622a91..e94607c402 100644 --- a/docs/available_software/detail/MultiQC.md +++ b/docs/available_software/detail/MultiQC.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Aggregate results from bioinformatics analyses across many samples - into a single report. MultiQC searches a given directory for analysis logs and - compiles an HTML report. It's a general use tool, perfect for summarising the - output from numerous bioinformatics tools. + description: "Aggregate results from bioinformatics analyses across many samples\ + \ into a single report.\n\n MultiQC searches a given directory for analysis logs\ + \ and compiles an HTML report. It's a general\n use tool, perfect for summarising\ + \ the output from numerous bioinformatics tools." license: Not confirmed name: MultiQC offers: @@ -27,37 +25,118 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''MultiQC/1.14-foss-2022b'']' + softwareVersion: '[''1.14'']' url: https://multiqc.info --- +# MultiQC -MultiQC -======= +Aggregate results from bioinformatics analyses across many samples into a single report. -Aggregate results from bioinformatics analyses across many samples into a single report. MultiQC searches a given directory for analysis logs and compiles an HTML report. It's a general use tool, perfect for summarising the output from numerous bioinformatics tools. + MultiQC searches a given directory for analysis logs and compiles an HTML report. It's a general + use tool, perfect for summarising the output from numerous bioinformatics tools. -https://multiqc.info -# Available modules +homepage: [https://multiqc.info](https://multiqc.info) +## Available installations -The overview below shows which MultiQC installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using MultiQC, load one of these modules using a `module load` command like: +|MultiQC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`MultiQC/1.14-foss-2022b`| -```shell -module load MultiQC/1.14-foss-2022b -``` +## Extensions -*(This data was automatically generated on {{ generated_time }})* +Overview of extensions included in MultiQC installations -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|MultiQC/1.14-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### coloredlogs -### MultiQC/1.14-foss-2022b -This is a list of extensions included in the module: +|`coloredlogs` version|MultiQC modules that include it| +| --- | --- | +|15.0.1|`MultiQC/1.14-foss-2022b`| -coloredlogs-15.0.1, colormath-3.0.0, commonmark-0.9.1, humanfriendly-10.0, lzstring-1.0.4, Markdown-3.4.1, markdown-it-py-2.1.0, mdurl-0.1.2, multiqc-1.14, Pygments-2.14.0, rich-13.3.1, rich-click-1.6.1, spectra-0.0.11 \ No newline at end of file +### colormath + + +|`colormath` version|MultiQC modules that include it| +| --- | --- | +|3.0.0|`MultiQC/1.14-foss-2022b`| + +### commonmark + + +|`commonmark` version|MultiQC modules that include it| +| --- | --- | +|0.9.1|`MultiQC/1.14-foss-2022b`| + +### humanfriendly + + +|`humanfriendly` version|MultiQC modules that include it| +| --- | --- | +|10.0|`MultiQC/1.14-foss-2022b`| + +### lzstring + + +|`lzstring` version|MultiQC modules that include it| +| --- | --- | +|1.0.4|`MultiQC/1.14-foss-2022b`| + +### Markdown + + +|`Markdown` version|MultiQC modules that include it| +| --- | --- | +|3.4.1|`MultiQC/1.14-foss-2022b`| + +### markdown-it-py + + +|`markdown-it-py` version|MultiQC modules that include it| +| --- | --- | +|2.1.0|`MultiQC/1.14-foss-2022b`| + +### mdurl + + +|`mdurl` version|MultiQC modules that include it| +| --- | --- | +|0.1.2|`MultiQC/1.14-foss-2022b`| + +### multiqc + + +|`multiqc` version|MultiQC modules that include it| +| --- | --- | +|1.14|`MultiQC/1.14-foss-2022b`| + +### Pygments + + +|`Pygments` version|MultiQC modules that include it| +| --- | --- | +|2.14.0|`MultiQC/1.14-foss-2022b`| + +### rich + + +|`rich` version|MultiQC modules that include it| +| --- | --- | +|13.3.1|`MultiQC/1.14-foss-2022b`| + +### rich-click + + +|`rich-click` version|MultiQC modules that include it| +| --- | --- | +|1.6.1|`MultiQC/1.14-foss-2022b`| + +### spectra + + +|`spectra` version|MultiQC modules that include it| +| --- | --- | +|0.0.11|`MultiQC/1.14-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/Mustache.md b/docs/available_software/detail/Mustache.md index b1abe49452..98772c736f 100644 --- a/docs/available_software/detail/Mustache.md +++ b/docs/available_software/detail/Mustache.md @@ -1,16 +1,20 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Mustache (Multi-scale Detection of Chromatin Loops from Hi-C and Micro-C - Maps usingScale-Space Representation) is a tool for multi-scale detection of chromatin - loops from Hi-C and Micro-Ccontact maps in high resolutions (10kbp all the way - to 500bp and even more).Mustache uses recent technical advances in scale-space - theory inComputer Vision to detect chromatin loops caused by interaction of DNA - segments with a variable size. + description: 'Mustache (Multi-scale Detection of Chromatin Loops from Hi-C and Micro-C + Maps using + + Scale-Space Representation) is a tool for multi-scale detection of chromatin loops + from Hi-C and Micro-C + + contact maps in high resolutions (10kbp all the way to 500bp and even more). + + Mustache uses recent technical advances in scale-space theory in + + Computer Vision to detect chromatin loops caused by interaction of DNA segments + with a variable size.' license: Not confirmed name: Mustache offers: @@ -29,30 +33,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Mustache/1.3.3-foss-2023b'']' + softwareVersion: '[''1.3.3'']' url: https://github.com/ay-lab/mustache --- - -Mustache -======== - - -Mustache (Multi-scale Detection of Chromatin Loops from Hi-C and Micro-C Maps usingScale-Space Representation) is a tool for multi-scale detection of chromatin loops from Hi-C and Micro-Ccontact maps in high resolutions (10kbp all the way to 500bp and even more).Mustache uses recent technical advances in scale-space theory inComputer Vision to detect chromatin loops caused by interaction of DNA segments with a variable size. - -https://github.com/ay-lab/mustache -# Available modules +# Mustache -The overview below shows which Mustache installations are available per target architecture in EESSI, ordered based on software version (new to old). +Mustache (Multi-scale Detection of Chromatin Loops from Hi-C and Micro-C Maps using +Scale-Space Representation) is a tool for multi-scale detection of chromatin loops from Hi-C and Micro-C +contact maps in high resolutions (10kbp all the way to 500bp and even more). +Mustache uses recent technical advances in scale-space theory in +Computer Vision to detect chromatin loops caused by interaction of DNA segments with a variable size. -To start using Mustache, load one of these modules using a `module load` command like: +homepage: [https://github.com/ay-lab/mustache](https://github.com/ay-lab/mustache) -```shell -module load Mustache/1.3.3-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Mustache/1.3.3-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Mustache version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Mustache/1.3.3-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/NASM.md b/docs/available_software/detail/NASM.md index 1096a2aace..2a85c36aba 100644 --- a/docs/available_software/detail/NASM.md +++ b/docs/available_software/detail/NASM.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''NASM/2.15.05-GCCcore-12.2.0'', ''NASM/2.16.01-GCCcore-12.3.0'', - ''NASM/2.16.01-GCCcore-13.2.0'']' + softwareVersion: '[''2.16.03'', ''2.16.01'', ''2.15.05'']' url: https://www.nasm.us/ --- - -NASM -==== +# NASM NASM: General-purpose x86 assembler -https://www.nasm.us/ -# Available modules - - -The overview below shows which NASM installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using NASM, load one of these modules using a `module load` command like: +homepage: [https://www.nasm.us/](https://www.nasm.us/) -```shell -module load NASM/2.16.01-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|NASM/2.16.01-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|NASM/2.16.01-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|NASM/2.15.05-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|NASM version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.16.03|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NASM/2.16.03-GCCcore-14.3.0`| +|2.16.03|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NASM/2.16.03-GCCcore-14.2.0`| +|2.16.03|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NASM/2.16.03-GCCcore-13.3.0`| +|2.16.01|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NASM/2.16.01-GCCcore-13.2.0`| +|2.16.01|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NASM/2.16.01-GCCcore-12.3.0`| +|2.15.05|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NASM/2.15.05-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/NCCL.md b/docs/available_software/detail/NCCL.md new file mode 100644 index 0000000000..20cd299f69 --- /dev/null +++ b/docs/available_software/detail/NCCL.md @@ -0,0 +1,48 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'The NVIDIA Collective Communications Library (NCCL) implements multi-GPU + and multi-node collective + + communication primitives that are performance optimized for NVIDIA GPUs.' + license: Not confirmed + name: NCCL + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.27.7'', ''2.22.3'', ''2.20.5'', ''2.18.3'']' + url: https://developer.nvidia.com/nccl +--- +# NCCL + + +The NVIDIA Collective Communications Library (NCCL) implements multi-GPU and multi-node collective +communication primitives that are performance optimized for NVIDIA GPUs. + +homepage: [https://developer.nvidia.com/nccl](https://developer.nvidia.com/nccl) + +## Available installations + + +|NCCL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.27.7|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`NCCL/2.27.7-GCCcore-14.3.0-CUDA-12.9.1`| +|2.27.7|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`NCCL/2.27.7-GCCcore-14.2.0-CUDA-12.8.0`| +|2.22.3|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`NCCL/2.22.3-GCCcore-13.3.0-CUDA-12.6.0`| +|2.20.5|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`NCCL/2.20.5-GCCcore-13.2.0-CUDA-12.4.0`| +|2.18.3|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`NCCL/2.18.3-GCCcore-12.3.0-CUDA-12.1.1`| \ No newline at end of file diff --git a/docs/available_software/detail/NCO.md b/docs/available_software/detail/NCO.md index a341dd3455..22aac3d27f 100644 --- a/docs/available_software/detail/NCO.md +++ b/docs/available_software/detail/NCO.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The NCO toolkit manipulates and analyzes data stored in netCDF-accessible - formats,including DAP, HDF4, and HDF5. + description: 'The NCO toolkit manipulates and analyzes data stored in netCDF-accessible + formats, + + including DAP, HDF4, and HDF5.' license: Not confirmed name: NCO offers: @@ -25,30 +25,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''NCO/5.1.9-foss-2023a'']' + softwareVersion: '[''5.1.9'']' url: https://github.com/nco/nco --- - -NCO -=== - - -The NCO toolkit manipulates and analyzes data stored in netCDF-accessible formats,including DAP, HDF4, and HDF5. - -https://github.com/nco/nco -# Available modules +# NCO -The overview below shows which NCO installations are available per target architecture in EESSI, ordered based on software version (new to old). +The NCO toolkit manipulates and analyzes data stored in netCDF-accessible formats, +including DAP, HDF4, and HDF5. -To start using NCO, load one of these modules using a `module load` command like: +homepage: [https://github.com/nco/nco](https://github.com/nco/nco) -```shell -module load NCO/5.1.9-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|NCO/5.1.9-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|NCO version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.1.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NCO/5.1.9-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/NEST.md b/docs/available_software/detail/NEST.md index 3dbf76dafb..9f7d7ad750 100644 --- a/docs/available_software/detail/NEST.md +++ b/docs/available_software/detail/NEST.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: NEST is a simulator for spiking neural network models that focuses - on the dynamics, size and structure of neural systems rather than on the exact - morphology of individual neurons. + description: "NEST is a simulator for spiking neural network models that focuses\ + \ on the\n dynamics, size and structure of neural systems rather than on the exact\ + \ morphology of individual neurons." license: Not confirmed name: NEST offers: @@ -26,30 +24,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''NEST/3.9-foss-2023a'']' + softwareVersion: '[''3.9'']' url: https://www.nest-simulator.org/ --- +# NEST -NEST -==== +NEST is a simulator for spiking neural network models that focuses on the + dynamics, size and structure of neural systems rather than on the exact morphology of individual neurons. -NEST is a simulator for spiking neural network models that focuses on the dynamics, size and structure of neural systems rather than on the exact morphology of individual neurons. +homepage: [https://www.nest-simulator.org/](https://www.nest-simulator.org/) -https://www.nest-simulator.org/ -# Available modules +## Available installations -The overview below shows which NEST installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using NEST, load one of these modules using a `module load` command like: - -```shell -module load NEST/3.9-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|NEST/3.9-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|NEST version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NEST/3.9-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/NLTK.md b/docs/available_software/detail/NLTK.md index c9dbeb27bf..bc17bb8094 100644 --- a/docs/available_software/detail/NLTK.md +++ b/docs/available_software/detail/NLTK.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,37 +23,45 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''NLTK/3.8.1-foss-2023b'']' + softwareVersion: '[''3.8.1'']' url: https://www.nltk.org/ --- - -NLTK -==== +# NLTK NLTK is a leading platform for building Python programs to work with human language data. -https://www.nltk.org/ -# Available modules +homepage: [https://www.nltk.org/](https://www.nltk.org/) + +## Available installations + + +|NLTK version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NLTK/3.8.1-foss-2023b`| + +## Extensions + +Overview of extensions included in NLTK installations -The overview below shows which NLTK installations are available per target architecture in EESSI, ordered based on software version (new to old). +### NLTK -To start using NLTK, load one of these modules using a `module load` command like: -```shell -module load NLTK/3.8.1-foss-2023b -``` +|`NLTK` version|NLTK modules that include it| +| --- | --- | +|3.8.1|`NLTK/3.8.1-foss-2023b`| -*(This data was automatically generated on {{ generated_time }})* +### python-crfsuite -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|NLTK/3.8.1-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`python-crfsuite` version|NLTK modules that include it| +| --- | --- | +|0.9.10|`NLTK/3.8.1-foss-2023b`| -### NLTK/3.8.1-foss-2023b +### regex -This is a list of extensions included in the module: -NLTK-3.8.1, python-crfsuite-0.9.10, regex-2023.12.25 \ No newline at end of file +|`regex` version|NLTK modules that include it| +| --- | --- | +|2023.12.25|`NLTK/3.8.1-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/NLopt.md b/docs/available_software/detail/NLopt.md index e881dc6fa0..9444004425 100644 --- a/docs/available_software/detail/NLopt.md +++ b/docs/available_software/detail/NLopt.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: NLopt is a free/open-source library for nonlinear optimization, providing - a common interface for a number of different free optimization routines available - online as well as original implementations of various other algorithms. + description: " NLopt is a free/open-source library for nonlinear optimization,\n\ + \ providing a common interface for a number of different free optimization routines\n\ + \ available online as well as original implementations of various other algorithms. " license: Not confirmed name: NLopt offers: @@ -26,33 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''NLopt/2.7.1-GCCcore-12.2.0'', ''NLopt/2.7.1-GCCcore-12.3.0'', - ''NLopt/2.7.1-GCCcore-13.2.0'']' + softwareVersion: '[''2.10.0'', ''2.7.1'']' url: http://ab-initio.mit.edu/wiki/index.php/NLopt --- +# NLopt -NLopt -===== + NLopt is a free/open-source library for nonlinear optimization, + providing a common interface for a number of different free optimization routines + available online as well as original implementations of various other algorithms. -NLopt is a free/open-source library for nonlinear optimization, providing a common interface for a number of different free optimization routines available online as well as original implementations of various other algorithms. +homepage: [http://ab-initio.mit.edu/wiki/index.php/NLopt](http://ab-initio.mit.edu/wiki/index.php/NLopt) -http://ab-initio.mit.edu/wiki/index.php/NLopt -# Available modules +## Available installations -The overview below shows which NLopt installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using NLopt, load one of these modules using a `module load` command like: - -```shell -module load NLopt/2.7.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|NLopt/2.7.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|NLopt/2.7.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|NLopt/2.7.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|NLopt version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NLopt/2.10.0-GCCcore-14.2.0`| +|2.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NLopt/2.7.1-GCCcore-13.3.0`| +|2.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NLopt/2.7.1-GCCcore-13.2.0`| +|2.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NLopt/2.7.1-GCCcore-12.3.0`| +|2.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NLopt/2.7.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/NSPR.md b/docs/available_software/detail/NSPR.md index 82e4d2a17f..fcc9493275 100644 --- a/docs/available_software/detail/NSPR.md +++ b/docs/available_software/detail/NSPR.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Netscape Portable Runtime (NSPR) provides a platform-neutral API for - system level and libc-like functions. + description: "Netscape Portable Runtime (NSPR) provides a platform-neutral API for\ + \ system level\n and libc-like functions." license: Not confirmed name: NSPR offers: @@ -25,32 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''NSPR/4.35-GCCcore-12.2.0'', ''NSPR/4.35-GCCcore-12.3.0'', ''NSPR/4.35-GCCcore-13.2.0'']' + softwareVersion: '[''4.37'', ''4.36'', ''4.35'']' url: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR --- +# NSPR -NSPR -==== +Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level + and libc-like functions. -Netscape Portable Runtime (NSPR) provides a platform-neutral API for system level and libc-like functions. +homepage: [https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR](https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR) -https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR -# Available modules +## Available installations -The overview below shows which NSPR installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using NSPR, load one of these modules using a `module load` command like: - -```shell -module load NSPR/4.35-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|NSPR/4.35-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|NSPR/4.35-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|NSPR/4.35-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|NSPR version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.37|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NSPR/4.37-GCCcore-14.3.0`| +|4.36|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NSPR/4.36-GCCcore-14.2.0`| +|4.35|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NSPR/4.35-GCCcore-13.3.0`| +|4.35|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NSPR/4.35-GCCcore-13.2.0`| +|4.35|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NSPR/4.35-GCCcore-12.3.0`| +|4.35|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NSPR/4.35-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/NSS.md b/docs/available_software/detail/NSS.md index aab36cb7bc..e6a6efa6b1 100644 --- a/docs/available_software/detail/NSS.md +++ b/docs/available_software/detail/NSS.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Network Security Services (NSS) is a set of libraries designed to support - cross-platform development of security-enabled client and server applications. + description: "Network Security Services (NSS) is a set of libraries designed to\ + \ support cross-platform development\n of security-enabled client and server applications." license: Not confirmed name: NSS offers: @@ -25,32 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''NSS/3.85-GCCcore-12.2.0'', ''NSS/3.89.1-GCCcore-12.3.0'', ''NSS/3.94-GCCcore-13.2.0'']' + softwareVersion: '[''3.114'', ''3.113'', ''3.104'', ''3.94'', ''3.89.1'', ''3.85'']' url: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS --- +# NSS -NSS -=== +Network Security Services (NSS) is a set of libraries designed to support cross-platform development + of security-enabled client and server applications. -Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. +homepage: [https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS](https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS) -https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS -# Available modules +## Available installations -The overview below shows which NSS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using NSS, load one of these modules using a `module load` command like: - -```shell -module load NSS/3.94-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|NSS/3.94-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|NSS/3.89.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|NSS/3.85-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|NSS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.114|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NSS/3.114-GCCcore-14.3.0`| +|3.113|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NSS/3.113-GCCcore-14.2.0`| +|3.104|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`NSS/3.104-GCCcore-13.3.0`| +|3.94|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NSS/3.94-GCCcore-13.2.0`| +|3.89.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NSS/3.89.1-GCCcore-12.3.0`| +|3.85|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`NSS/3.85-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Nextflow.md b/docs/available_software/detail/Nextflow.md index 2eb3e0e80d..ab4cb9a789 100644 --- a/docs/available_software/detail/Nextflow.md +++ b/docs/available_software/detail/Nextflow.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Nextflow is a reactive workflow framework and a programming DSL that - eases writing computational pipelines with complex data + description: "Nextflow is a reactive workflow framework and a programming DSL\n\ + \ that eases writing computational pipelines with complex data" license: Not confirmed name: Nextflow offers: @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Nextflow/23.10.0'', ''Nextflow/24.10.2'']' + softwareVersion: '[''24.10.2'', ''23.10.0'']' url: https://www.nextflow.io/ --- +# Nextflow -Nextflow -======== +Nextflow is a reactive workflow framework and a programming DSL + that eases writing computational pipelines with complex data -Nextflow is a reactive workflow framework and a programming DSL that eases writing computational pipelines with complex data +homepage: [https://www.nextflow.io/](https://www.nextflow.io/) -https://www.nextflow.io/ -# Available modules +## Available installations -The overview below shows which Nextflow installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Nextflow, load one of these modules using a `module load` command like: - -```shell -module load Nextflow/24.10.2 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Nextflow/24.10.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Nextflow/23.10.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Nextflow version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|24.10.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Nextflow/24.10.2`| +|23.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Nextflow/23.10.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Ninja.md b/docs/available_software/detail/Ninja.md index 8559257d4c..b31a70f7f4 100644 --- a/docs/available_software/detail/Ninja.md +++ b/docs/available_software/detail/Ninja.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Ninja/1.11.1-GCCcore-12.2.0'', ''Ninja/1.11.1-GCCcore-12.3.0'', - ''Ninja/1.11.1-GCCcore-13.2.0'']' + softwareVersion: '[''1.13.0'', ''1.12.1'', ''1.11.1'']' url: https://ninja-build.org/ --- - -Ninja -===== +# Ninja Ninja is a small build system with a focus on speed. -https://ninja-build.org/ -# Available modules - - -The overview below shows which Ninja installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Ninja, load one of these modules using a `module load` command like: +homepage: [https://ninja-build.org/](https://ninja-build.org/) -```shell -module load Ninja/1.11.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Ninja/1.11.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Ninja/1.11.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Ninja/1.11.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Ninja version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.13.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Ninja/1.13.0-GCCcore-14.3.0`| +|1.12.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Ninja/1.12.1-GCCcore-14.2.0`| +|1.12.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Ninja/1.12.1-GCCcore-13.3.0`| +|1.11.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Ninja/1.11.1-GCCcore-13.2.0`| +|1.11.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Ninja/1.11.1-GCCcore-12.3.0`| +|1.11.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Ninja/1.11.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/OPARI2.md b/docs/available_software/detail/OPARI2.md index 575bae654f..4a54c9a181 100644 --- a/docs/available_software/detail/OPARI2.md +++ b/docs/available_software/detail/OPARI2.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: OPARI2, the successor of Forschungszentrum Juelich's OPARI, is a source-to-source - instrumentation tool for OpenMP and hybrid codes. It surrounds OpenMP directives - and runtime library calls with calls to the POMP2 measurement interface. + description: "\n OPARI2, the successor of Forschungszentrum Juelich's OPARI, is\ + \ a\n source-to-source instrumentation tool for OpenMP and hybrid codes.\n It\ + \ surrounds OpenMP directives and runtime library calls with calls\n to the POMP2\ + \ measurement interface.\n" license: Not confirmed name: OPARI2 offers: @@ -26,30 +25,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OPARI2/2.0.8-GCCcore-13.2.0'']' + softwareVersion: '[''2.0.9'', ''2.0.8'']' url: https://www.score-p.org --- +# OPARI2 -OPARI2 -====== -OPARI2, the successor of Forschungszentrum Juelich's OPARI, is a source-to-source instrumentation tool for OpenMP and hybrid codes. It surrounds OpenMP directives and runtime library calls with calls to the POMP2 measurement interface. + OPARI2, the successor of Forschungszentrum Juelich's OPARI, is a + source-to-source instrumentation tool for OpenMP and hybrid codes. + It surrounds OpenMP directives and runtime library calls with calls + to the POMP2 measurement interface. -https://www.score-p.org -# Available modules +homepage: [https://www.score-p.org](https://www.score-p.org) -The overview below shows which OPARI2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using OPARI2, load one of these modules using a `module load` command like: -```shell -module load OPARI2/2.0.8-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OPARI2/2.0.8-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OPARI2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OPARI2/2.0.9-GCCcore-14.3.0`| +|2.0.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OPARI2/2.0.9-GCCcore-14.2.0`| +|2.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OPARI2/2.0.8-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/OSU-Micro-Benchmarks.md b/docs/available_software/detail/OSU-Micro-Benchmarks.md index a0413cf4ca..c3610189c8 100644 --- a/docs/available_software/detail/OSU-Micro-Benchmarks.md +++ b/docs/available_software/detail/OSU-Micro-Benchmarks.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OSU-Micro-Benchmarks/7.1-1-gompi-2023a'', ''OSU-Micro-Benchmarks/7.2-gompi-2023b'']' + softwareVersion: '[''7.5.1'', ''7.5'', ''7.2'', ''7.1-1'']' url: https://mvapich.cse.ohio-state.edu/benchmarks/ --- - -OSU-Micro-Benchmarks -==================== +# OSU-Micro-Benchmarks OSU Micro-Benchmarks -https://mvapich.cse.ohio-state.edu/benchmarks/ -# Available modules - - -The overview below shows which OSU-Micro-Benchmarks installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using OSU-Micro-Benchmarks, load one of these modules using a `module load` command like: +homepage: [https://mvapich.cse.ohio-state.edu/benchmarks/](https://mvapich.cse.ohio-state.edu/benchmarks/) -```shell -module load OSU-Micro-Benchmarks/7.2-gompi-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OSU-Micro-Benchmarks/7.2-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OSU-Micro-Benchmarks/7.1-1-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OSU-Micro-Benchmarks version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.5.1|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`OSU-Micro-Benchmarks/7.5.1-gompi-2025b-CUDA-12.9.1`| +|7.5|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`OSU-Micro-Benchmarks/7.5-gompi-2025a-CUDA-12.8.0`| +|7.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OSU-Micro-Benchmarks/7.5-gompi-2025a`| +|7.5|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`OSU-Micro-Benchmarks/7.5-gompi-2024a-CUDA-12.6.0`| +|7.5|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`OSU-Micro-Benchmarks/7.5-gompi-2023b-CUDA-12.4.0`| +|7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OSU-Micro-Benchmarks/7.2-gompi-2023b`| +|7.2|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`OSU-Micro-Benchmarks/7.2-gompi-2023a-CUDA-12.1.1`| +|7.1-1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OSU-Micro-Benchmarks/7.1-1-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/OTF2.md b/docs/available_software/detail/OTF2.md index d373766cec..482543282b 100644 --- a/docs/available_software/detail/OTF2.md +++ b/docs/available_software/detail/OTF2.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Open Trace Format 2 is a highly scalable, memory efficient event - trace data format plus support library. It is the new standard trace format for - Scalasca, Vampir, and TAU and is open for other tools. + description: "\n The Open Trace Format 2 is a highly scalable, memory efficient\ + \ event trace\n data format plus support library. It is the new standard trace\ + \ format for\n Scalasca, Vampir, and TAU and is open for other tools.\n\n" license: Not confirmed name: OTF2 offers: @@ -26,30 +24,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OTF2/3.0.3-GCCcore-13.2.0'']' + softwareVersion: '[''3.1.1'', ''3.0.3'']' url: https://www.score-p.org --- +# OTF2 -OTF2 -==== -The Open Trace Format 2 is a highly scalable, memory efficient event trace data format plus support library. It is the new standard trace format for Scalasca, Vampir, and TAU and is open for other tools. + The Open Trace Format 2 is a highly scalable, memory efficient event trace + data format plus support library. It is the new standard trace format for + Scalasca, Vampir, and TAU and is open for other tools. -https://www.score-p.org -# Available modules -The overview below shows which OTF2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +homepage: [https://www.score-p.org](https://www.score-p.org) -To start using OTF2, load one of these modules using a `module load` command like: +## Available installations -```shell -module load OTF2/3.0.3-GCCcore-13.2.0 -``` -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OTF2/3.0.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OTF2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OTF2/3.1.1-GCCcore-14.3.0`| +|3.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OTF2/3.1.1-GCCcore-14.2.0`| +|3.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OTF2/3.0.3-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Octave.md b/docs/available_software/detail/Octave.md index d61ae6f814..cbe705ce75 100644 --- a/docs/available_software/detail/Octave.md +++ b/docs/available_software/detail/Octave.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,37 +23,59 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Octave/10.1.0-foss-2023a'']' + softwareVersion: '[''10.1.0'']' url: https://www.gnu.org/software/octave/ --- - -Octave -====== +# Octave GNU Octave is a high-level interpreted language, primarily intended for numerical computations. -https://www.gnu.org/software/octave/ -# Available modules +homepage: [https://www.gnu.org/software/octave/](https://www.gnu.org/software/octave/) + +## Available installations + + +|Octave version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|10.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Octave/10.1.0-foss-2023a`| + +## Extensions + +Overview of extensions included in Octave installations + + +### general + + +|`general` version|Octave modules that include it| +| --- | --- | +|2.1.3|`Octave/10.1.0-foss-2023a`| + +### io + +|`io` version|Octave modules that include it| +| --- | --- | +|2.6.4|`Octave/10.1.0-foss-2023a`| -The overview below shows which Octave installations are available per target architecture in EESSI, ordered based on software version (new to old). +### optim -To start using Octave, load one of these modules using a `module load` command like: -```shell -module load Octave/10.1.0-foss-2023a -``` +|`optim` version|Octave modules that include it| +| --- | --- | +|1.6.2|`Octave/10.1.0-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### statistics -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Octave/10.1.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`statistics` version|Octave modules that include it| +| --- | --- | +|1.6.6|`Octave/10.1.0-foss-2023a`| -### Octave/10.1.0-foss-2023a +### struct -This is a list of extensions included in the module: -general-2.1.3, io-2.6.4, optim-1.6.2, statistics-1.6.6, struct-1.0.18 \ No newline at end of file +|`struct` version|Octave modules that include it| +| --- | --- | +|1.0.18|`Octave/10.1.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/OpenBLAS.md b/docs/available_software/detail/OpenBLAS.md index e567caa957..581b0cf812 100644 --- a/docs/available_software/detail/OpenBLAS.md +++ b/docs/available_software/detail/OpenBLAS.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OpenBLAS/0.3.21-GCC-12.2.0'', ''OpenBLAS/0.3.23-GCC-12.3.0'', - ''OpenBLAS/0.3.24-GCC-13.2.0'']' + softwareVersion: '[''0.3.30'', ''0.3.29'', ''0.3.27'', ''0.3.24'', ''0.3.23'', ''0.3.21'']' url: http://www.openblas.net/ --- - -OpenBLAS -======== +# OpenBLAS OpenBLAS is an optimized BLAS library based on GotoBLAS2 1.13 BSD version. -http://www.openblas.net/ -# Available modules - - -The overview below shows which OpenBLAS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using OpenBLAS, load one of these modules using a `module load` command like: +homepage: [http://www.openblas.net/](http://www.openblas.net/) -```shell -module load OpenBLAS/0.3.24-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OpenBLAS/0.3.24-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenBLAS/0.3.23-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenBLAS/0.3.21-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OpenBLAS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.3.30|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenBLAS/0.3.30-GCC-14.3.0`| +|0.3.30|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenBLAS/0.3.30-llvm-compilers-20.1.8`| +|0.3.29|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenBLAS/0.3.29-GCC-14.2.0`| +|0.3.27|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenBLAS/0.3.27-GCC-13.3.0`| +|0.3.24|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenBLAS/0.3.24-GCC-13.2.0`| +|0.3.23|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenBLAS/0.3.23-GCC-12.3.0`| +|0.3.21|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenBLAS/0.3.21-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/OpenBabel.md b/docs/available_software/detail/OpenBabel.md index 8c83bd48f1..a0f657ba06 100644 --- a/docs/available_software/detail/OpenBabel.md +++ b/docs/available_software/detail/OpenBabel.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Open Babel is a chemical toolbox designed to speak the many languages - of chemical data. It's an open, collaborative project allowing anyone to search, - convert, analyze, or store data from molecular modeling, chemistry, solid-state - materials, biochemistry, or related areas. + description: "Open Babel is a chemical toolbox designed to speak the many\n languages\ + \ of chemical data. It's an open, collaborative project allowing anyone\n to search,\ + \ convert, analyze, or store data from molecular modeling, chemistry,\n solid-state\ + \ materials, biochemistry, or related areas." license: Not confirmed name: OpenBabel offers: @@ -27,30 +25,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OpenBabel/3.1.1-gompi-2023a'']' + softwareVersion: '[''3.1.1'']' url: https://openbabel.org --- +# OpenBabel -OpenBabel -========= +Open Babel is a chemical toolbox designed to speak the many + languages of chemical data. It's an open, collaborative project allowing anyone + to search, convert, analyze, or store data from molecular modeling, chemistry, + solid-state materials, biochemistry, or related areas. -Open Babel is a chemical toolbox designed to speak the many languages of chemical data. It's an open, collaborative project allowing anyone to search, convert, analyze, or store data from molecular modeling, chemistry, solid-state materials, biochemistry, or related areas. +homepage: [https://openbabel.org](https://openbabel.org) -https://openbabel.org -# Available modules +## Available installations -The overview below shows which OpenBabel installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using OpenBabel, load one of these modules using a `module load` command like: - -```shell -module load OpenBabel/3.1.1-gompi-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OpenBabel/3.1.1-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OpenBabel version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenBabel/3.1.1-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/OpenCV.md b/docs/available_software/detail/OpenCV.md index ff63cc5897..abd8c217c5 100644 --- a/docs/available_software/detail/OpenCV.md +++ b/docs/available_software/detail/OpenCV.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: OpenCV (Open Source Computer Vision Library) is an open source computer - vision and machine learning software library. OpenCV was built to provide a common - infrastructure for computer vision applications and to accelerate the use of machine - perception in the commercial products. Includes extra modules for OpenCV from - the contrib repository. + description: "OpenCV (Open Source Computer Vision Library) is an open source computer\ + \ vision\n and machine learning software library. OpenCV was built to provide\n\ + \ a common infrastructure for computer vision applications and to accelerate\n\ + \ the use of machine perception in the commercial products.\n Includes extra modules\ + \ for OpenCV from the contrib repository." license: Not confirmed name: OpenCV offers: @@ -28,30 +26,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OpenCV/4.8.1-foss-2023a-contrib'']' + softwareVersion: '[''4.8.1'']' url: https://opencv.org/ --- +# OpenCV -OpenCV -====== +OpenCV (Open Source Computer Vision Library) is an open source computer vision + and machine learning software library. OpenCV was built to provide + a common infrastructure for computer vision applications and to accelerate + the use of machine perception in the commercial products. + Includes extra modules for OpenCV from the contrib repository. -OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products. Includes extra modules for OpenCV from the contrib repository. +homepage: [https://opencv.org/](https://opencv.org/) -https://opencv.org/ -# Available modules +## Available installations -The overview below shows which OpenCV installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using OpenCV, load one of these modules using a `module load` command like: - -```shell -module load OpenCV/4.8.1-foss-2023a-contrib -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OpenCV/4.8.1-foss-2023a-contrib|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OpenCV version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenCV/4.8.1-foss-2023a-contrib`| \ No newline at end of file diff --git a/docs/available_software/detail/OpenEXR.md b/docs/available_software/detail/OpenEXR.md index 35189bb7f5..4c7f948357 100644 --- a/docs/available_software/detail/OpenEXR.md +++ b/docs/available_software/detail/OpenEXR.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: OpenEXR is a high dynamic-range (HDR) image file format developed by - Industrial Light & Magic for use in computer imaging applications + description: "OpenEXR is a high dynamic-range (HDR) image file format developed\ + \ by Industrial Light & Magic\n for use in computer imaging applications" license: Not confirmed name: OpenEXR offers: @@ -25,33 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OpenEXR/3.1.5-GCCcore-12.2.0'', ''OpenEXR/3.1.7-GCCcore-12.3.0'', - ''OpenEXR/3.2.0-GCCcore-13.2.0'']' + softwareVersion: '[''3.3.4'', ''3.2.4'', ''3.2.0'', ''3.1.7'', ''3.1.5'']' url: https://www.openexr.com/ --- +# OpenEXR -OpenEXR -======= +OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic + for use in computer imaging applications -OpenEXR is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications +homepage: [https://www.openexr.com/](https://www.openexr.com/) -https://www.openexr.com/ -# Available modules +## Available installations -The overview below shows which OpenEXR installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using OpenEXR, load one of these modules using a `module load` command like: - -```shell -module load OpenEXR/3.2.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OpenEXR/3.2.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenEXR/3.1.7-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenEXR/3.1.5-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OpenEXR version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.3.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenEXR/3.3.4-GCCcore-14.3.0`| +|3.3.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenEXR/3.3.4-GCCcore-14.2.0`| +|3.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenEXR/3.2.4-GCCcore-13.3.0`| +|3.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenEXR/3.2.0-GCCcore-13.2.0`| +|3.1.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenEXR/3.1.7-GCCcore-12.3.0`| +|3.1.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenEXR/3.1.5-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/OpenFOAM.md b/docs/available_software/detail/OpenFOAM.md index 2ebe3b60e4..c1b62e0af5 100644 --- a/docs/available_software/detail/OpenFOAM.md +++ b/docs/available_software/detail/OpenFOAM.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: OpenFOAM is a free, open source CFD software package. OpenFOAM has - an extensive range of features to solve anything from complex fluid flows involving - chemical reactions, turbulence and heat transfer, to solid dynamics and electromagnetics. + description: "OpenFOAM is a free, open source CFD software package.\n OpenFOAM has\ + \ an extensive range of features to solve anything from complex fluid flows\n\ + \ involving chemical reactions, turbulence and heat transfer,\n to solid dynamics\ + \ and electromagnetics." license: Not confirmed name: OpenFOAM offers: @@ -26,35 +25,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OpenFOAM/10-foss-2023a'', ''OpenFOAM/11-foss-2023a'', ''OpenFOAM/12-foss-2023a'', - ''OpenFOAM/v2312-foss-2023a'', ''OpenFOAM/v2406-foss-2023a'']' + softwareVersion: '[''v2406'', ''v2312'', ''12'', ''11'', ''10'']' url: https://www.openfoam.org/ --- +# OpenFOAM -OpenFOAM -======== +OpenFOAM is a free, open source CFD software package. + OpenFOAM has an extensive range of features to solve anything from complex fluid flows + involving chemical reactions, turbulence and heat transfer, + to solid dynamics and electromagnetics. -OpenFOAM is a free, open source CFD software package. OpenFOAM has an extensive range of features to solve anything from complex fluid flows involving chemical reactions, turbulence and heat transfer, to solid dynamics and electromagnetics. +homepage: [https://www.openfoam.org/](https://www.openfoam.org/) -https://www.openfoam.org/ -# Available modules +## Available installations -The overview below shows which OpenFOAM installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using OpenFOAM, load one of these modules using a `module load` command like: - -```shell -module load OpenFOAM/v2406-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OpenFOAM/v2406-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenFOAM/v2312-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenFOAM/12-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenFOAM/11-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenFOAM/10-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OpenFOAM version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|v2406|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenFOAM/v2406-foss-2023a`| +|v2312|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenFOAM/v2312-foss-2023a`| +|12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenFOAM/12-foss-2023a`| +|11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenFOAM/11-foss-2023a`| +|10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenFOAM/10-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/OpenGL.md b/docs/available_software/detail/OpenGL.md new file mode 100644 index 0000000000..f86a51ab63 --- /dev/null +++ b/docs/available_software/detail/OpenGL.md @@ -0,0 +1,99 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' + + Open Graphics Library (OpenGL) is a cross-language, cross-platform application + + programming interface (API) for rendering 2D and 3D vector graphics. + + + This module is a bundle of software required for OpenGL rendering. + + It provides Mesa as an open-source implementation of the OpenGL specification + + with software rendering and AMD GPU support, libglvnd for a vendor neutral + + dispatch layer for rendering with both NVIDIA GPUs & Mesa, Mesa-demos for + + sample applications, and GLU as an computer graphics library utilizing OpenGL. + + ' + license: Not confirmed + name: OpenGL + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2025.09'']' + url: http://www.opengl.org/ +--- +# OpenGL + + + +Open Graphics Library (OpenGL) is a cross-language, cross-platform application +programming interface (API) for rendering 2D and 3D vector graphics. + +This module is a bundle of software required for OpenGL rendering. +It provides Mesa as an open-source implementation of the OpenGL specification +with software rendering and AMD GPU support, libglvnd for a vendor neutral +dispatch layer for rendering with both NVIDIA GPUs & Mesa, Mesa-demos for +sample applications, and GLU as an computer graphics library utilizing OpenGL. + + +homepage: [http://www.opengl.org/](http://www.opengl.org/) + +## Available installations + + +|OpenGL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025.09|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenGL/2025.09-GCCcore-14.3.0`| + +## Extensions + +Overview of extensions included in OpenGL installations + + +### libGLU + + +|`libGLU` version|OpenGL modules that include it| +| --- | --- | +|9.0.3|`OpenGL/2025.09-GCCcore-14.3.0`| + +### libglvnd + + +|`libglvnd` version|OpenGL modules that include it| +| --- | --- | +|1.7.0|`OpenGL/2025.09-GCCcore-14.3.0`| + +### Mesa + + +|`Mesa` version|OpenGL modules that include it| +| --- | --- | +|25.2.2|`OpenGL/2025.09-GCCcore-14.3.0`| + +### Mesa-demos + + +|`Mesa-demos` version|OpenGL modules that include it| +| --- | --- | +|9.0.0|`OpenGL/2025.09-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/OpenJPEG.md b/docs/available_software/detail/OpenJPEG.md index af6ef52fb1..61ecf03d10 100644 --- a/docs/available_software/detail/OpenJPEG.md +++ b/docs/available_software/detail/OpenJPEG.md @@ -1,14 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: OpenJPEG is an open-source JPEG 2000 codec written in C language. It - has been developed in order to promote the use of JPEG 2000, a still-image compression - standard from the Joint Photographic Experts Group (JPEG). Since may 2015, it - is officially recognized by ISO/IEC and ITU-T as a JPEG 2000 Reference Software. + description: "OpenJPEG is an open-source JPEG 2000 codec written in\n C language.\ + \ It has been developed in order to promote the use of JPEG 2000,\n a still-image\ + \ compression standard from the Joint Photographic Experts Group\n (JPEG). Since\ + \ may 2015, it is officially recognized by ISO/IEC and ITU-T as\n a JPEG 2000\ + \ Reference Software." license: Not confirmed name: OpenJPEG offers: @@ -27,33 +26,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OpenJPEG/2.5.0-GCCcore-12.2.0'', ''OpenJPEG/2.5.0-GCCcore-12.3.0'', - ''OpenJPEG/2.5.0-GCCcore-13.2.0'']' + softwareVersion: '[''2.5.3'', ''2.5.2'', ''2.5.0'']' url: https://www.openjpeg.org/ --- +# OpenJPEG -OpenJPEG -======== +OpenJPEG is an open-source JPEG 2000 codec written in + C language. It has been developed in order to promote the use of JPEG 2000, + a still-image compression standard from the Joint Photographic Experts Group + (JPEG). Since may 2015, it is officially recognized by ISO/IEC and ITU-T as + a JPEG 2000 Reference Software. -OpenJPEG is an open-source JPEG 2000 codec written in C language. It has been developed in order to promote the use of JPEG 2000, a still-image compression standard from the Joint Photographic Experts Group (JPEG). Since may 2015, it is officially recognized by ISO/IEC and ITU-T as a JPEG 2000 Reference Software. +homepage: [https://www.openjpeg.org/](https://www.openjpeg.org/) -https://www.openjpeg.org/ -# Available modules +## Available installations -The overview below shows which OpenJPEG installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using OpenJPEG, load one of these modules using a `module load` command like: - -```shell -module load OpenJPEG/2.5.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OpenJPEG/2.5.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenJPEG/2.5.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenJPEG/2.5.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OpenJPEG version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.5.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenJPEG/2.5.3-GCCcore-14.3.0`| +|2.5.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenJPEG/2.5.3-GCCcore-14.2.0`| +|2.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenJPEG/2.5.2-GCCcore-13.3.0`| +|2.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenJPEG/2.5.0-GCCcore-13.2.0`| +|2.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenJPEG/2.5.0-GCCcore-12.3.0`| +|2.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenJPEG/2.5.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/OpenMPI.md b/docs/available_software/detail/OpenMPI.md index eb09a197d3..2a843df668 100644 --- a/docs/available_software/detail/OpenMPI.md +++ b/docs/available_software/detail/OpenMPI.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,32 +22,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OpenMPI/4.1.4-GCC-12.2.0'', ''OpenMPI/4.1.5-GCC-12.3.0'', ''OpenMPI/4.1.6-GCC-13.2.0'']' + softwareVersion: '[''5.0.8'', ''5.0.7'', ''5.0.3'', ''4.1.6'', ''4.1.5'', ''4.1.4'']' url: https://www.open-mpi.org/ --- - -OpenMPI -======= +# OpenMPI The Open MPI Project is an open source MPI-3 implementation. -https://www.open-mpi.org/ -# Available modules - - -The overview below shows which OpenMPI installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using OpenMPI, load one of these modules using a `module load` command like: +homepage: [https://www.open-mpi.org/](https://www.open-mpi.org/) -```shell -module load OpenMPI/4.1.6-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OpenMPI/4.1.6-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenMPI/4.1.5-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenMPI/4.1.4-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OpenMPI version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenMPI/5.0.8-GCC-14.3.0`| +|5.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenMPI/5.0.8-llvm-compilers-20.1.8`| +|5.0.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenMPI/5.0.7-GCC-14.2.0`| +|5.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenMPI/5.0.3-GCC-13.3.0`| +|4.1.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenMPI/4.1.6-GCC-13.2.0`| +|4.1.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenMPI/4.1.5-GCC-12.3.0`| +|4.1.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenMPI/4.1.4-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/OpenPGM.md b/docs/available_software/detail/OpenPGM.md index 17412b1db0..a64aae203c 100644 --- a/docs/available_software/detail/OpenPGM.md +++ b/docs/available_software/detail/OpenPGM.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: OpenPGM is an open source implementation of the Pragmatic General Multicast - (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable and - scalable multicast protocol that enables receivers to detect loss, request retransmission - of lost data, or notify an application of unrecoverable loss. PGM is a receiver-reliable - protocol, which means the receiver is responsible for ensuring all data is received, - absolving the sender of reception responsibility. + description: "\n OpenPGM is an open source implementation of the Pragmatic General\ + \ Multicast\n (PGM) specification in RFC 3208 available at www.ietf.org. PGM is\ + \ a reliable\n and scalable multicast protocol that enables receivers to detect\ + \ loss, request\n retransmission of lost data, or notify an application of unrecoverable\ + \ loss.\n PGM is a receiver-reliable protocol, which means the receiver is responsible\n\ + \ for ensuring all data is received, absolving the sender of reception\n responsibility.\n" license: Not confirmed name: OpenPGM offers: @@ -29,31 +27,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OpenPGM/5.2.122-GCCcore-12.3.0'', ''OpenPGM/5.2.122-GCCcore-13.2.0'']' + softwareVersion: '[''5.2.122'']' url: https://code.google.com/p/openpgm/ --- +# OpenPGM -OpenPGM -======= -OpenPGM is an open source implementation of the Pragmatic General Multicast (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable and scalable multicast protocol that enables receivers to detect loss, request retransmission of lost data, or notify an application of unrecoverable loss. PGM is a receiver-reliable protocol, which means the receiver is responsible for ensuring all data is received, absolving the sender of reception responsibility. + OpenPGM is an open source implementation of the Pragmatic General Multicast + (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable + and scalable multicast protocol that enables receivers to detect loss, request + retransmission of lost data, or notify an application of unrecoverable loss. + PGM is a receiver-reliable protocol, which means the receiver is responsible + for ensuring all data is received, absolving the sender of reception + responsibility. -https://code.google.com/p/openpgm/ -# Available modules +homepage: [https://code.google.com/p/openpgm/](https://code.google.com/p/openpgm/) -The overview below shows which OpenPGM installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using OpenPGM, load one of these modules using a `module load` command like: -```shell -module load OpenPGM/5.2.122-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OpenPGM/5.2.122-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|OpenPGM/5.2.122-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OpenPGM version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.2.122|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenPGM/5.2.122-GCCcore-14.3.0`| +|5.2.122|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenPGM/5.2.122-GCCcore-14.2.0`| +|5.2.122|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenPGM/5.2.122-GCCcore-13.3.0`| +|5.2.122|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenPGM/5.2.122-GCCcore-13.2.0`| +|5.2.122|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenPGM/5.2.122-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/OpenSSL.md b/docs/available_software/detail/OpenSSL.md index 397035ce79..60b7216d34 100644 --- a/docs/available_software/detail/OpenSSL.md +++ b/docs/available_software/detail/OpenSSL.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The OpenSSL Project is a collaborative effort to develop a robust, - commercial-grade, full-featured, and Open Source toolchain implementing the Secure - Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well - as a full-strength general purpose cryptography library. + description: "The OpenSSL Project is a collaborative effort to develop a robust,\ + \ commercial-grade, full-featured,\n and Open Source toolchain implementing the\ + \ Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1)\n protocols\ + \ as well as a full-strength general purpose cryptography library. " license: Not confirmed name: OpenSSL offers: @@ -27,30 +25,35 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OpenSSL/1.1'']' + softwareVersion: '[''3'', ''1.1'']' url: https://www.openssl.org/ --- +# OpenSSL -OpenSSL -======= +The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, + and Open Source toolchain implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) + protocols as well as a full-strength general purpose cryptography library. -The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolchain implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a full-strength general purpose cryptography library. +homepage: [https://www.openssl.org/](https://www.openssl.org/) -https://www.openssl.org/ -# Available modules +## Available installations -The overview below shows which OpenSSL installations are available per target architecture in EESSI, ordered based on software version (new to old). +|OpenSSL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`OpenSSL/3`| +|1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OpenSSL/1.1`| -To start using OpenSSL, load one of these modules using a `module load` command like: +## Extensions -```shell -module load OpenSSL/1.1 -``` +Overview of extensions included in OpenSSL installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OpenSSL/1.1|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### OpenSSL + + +|`OpenSSL` version|OpenSSL modules that include it| +| --- | --- | +|3.2.1|`OpenSSL/3`| +|1.1.1w|`OpenSSL/1.1`| \ No newline at end of file diff --git a/docs/available_software/detail/Openbox.md b/docs/available_software/detail/Openbox.md new file mode 100644 index 0000000000..02e309664e --- /dev/null +++ b/docs/available_software/detail/Openbox.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Highly configurable, lightweight, next-generation window manager with + extensive standards support. + license: Not confirmed + name: Openbox + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''3.6.1'']' + url: http://openbox.org +--- +# Openbox + + +Highly configurable, lightweight, next-generation window manager with extensive standards support. + +homepage: [http://openbox.org](http://openbox.org) + +## Available installations + + +|Openbox version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Openbox/3.6.1-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/OrthoFinder.md b/docs/available_software/detail/OrthoFinder.md index 209d9f55e7..42e5340858 100644 --- a/docs/available_software/detail/OrthoFinder.md +++ b/docs/available_software/detail/OrthoFinder.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''OrthoFinder/2.5.5-foss-2023a'']' + softwareVersion: '[''2.5.5'']' url: https://github.com/davidemms/OrthoFinder --- - -OrthoFinder -=========== +# OrthoFinder OrthoFinder is a fast, accurate and comprehensive platform for comparative genomics -https://github.com/davidemms/OrthoFinder -# Available modules - - -The overview below shows which OrthoFinder installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using OrthoFinder, load one of these modules using a `module load` command like: +homepage: [https://github.com/davidemms/OrthoFinder](https://github.com/davidemms/OrthoFinder) -```shell -module load OrthoFinder/2.5.5-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|OrthoFinder/2.5.5-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|OrthoFinder version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.5.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`OrthoFinder/2.5.5-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Osi.md b/docs/available_software/detail/Osi.md index ce8105481d..cde3f42340 100644 --- a/docs/available_software/detail/Osi.md +++ b/docs/available_software/detail/Osi.md @@ -1,17 +1,24 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Osi (Open Solver Interface) provides an abstract base class to a generic - linearprogramming (LP) solver, along with derived classes for specific solvers. - Manyapplications may be able to use the Osi to insulate themselves from a specificLP - solver. That is, programs written to the OSI standard may be linked to anysolver - with an OSI interface and should produce correct results. The OSI hasbeen significantly - extended compared to its first incarnation. Currently, theOSI supports linear - programming solvers and has rudimentary support for integerprogramming. + description: 'Osi (Open Solver Interface) provides an abstract base class to a generic + linear + + programming (LP) solver, along with derived classes for specific solvers. Many + + applications may be able to use the Osi to insulate themselves from a specific + + LP solver. That is, programs written to the OSI standard may be linked to any + + solver with an OSI interface and should produce correct results. The OSI has + + been significantly extended compared to its first incarnation. Currently, the + + OSI supports linear programming solvers and has rudimentary support for integer + + programming.' license: Not confirmed name: Osi offers: @@ -30,31 +37,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Osi/0.108.9-GCC-12.3.0'', ''Osi/0.108.9-GCC-13.2.0'']' + softwareVersion: '[''0.108.11'', ''0.108.9'']' url: https://github.com/coin-or/Osi --- - -Osi -=== - - -Osi (Open Solver Interface) provides an abstract base class to a generic linearprogramming (LP) solver, along with derived classes for specific solvers. Manyapplications may be able to use the Osi to insulate themselves from a specificLP solver. That is, programs written to the OSI standard may be linked to anysolver with an OSI interface and should produce correct results. The OSI hasbeen significantly extended compared to its first incarnation. Currently, theOSI supports linear programming solvers and has rudimentary support for integerprogramming. - -https://github.com/coin-or/Osi -# Available modules +# Osi -The overview below shows which Osi installations are available per target architecture in EESSI, ordered based on software version (new to old). +Osi (Open Solver Interface) provides an abstract base class to a generic linear +programming (LP) solver, along with derived classes for specific solvers. Many +applications may be able to use the Osi to insulate themselves from a specific +LP solver. That is, programs written to the OSI standard may be linked to any +solver with an OSI interface and should produce correct results. The OSI has +been significantly extended compared to its first incarnation. Currently, the +OSI supports linear programming solvers and has rudimentary support for integer +programming. -To start using Osi, load one of these modules using a `module load` command like: +homepage: [https://github.com/coin-or/Osi](https://github.com/coin-or/Osi) -```shell -module load Osi/0.108.9-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Osi/0.108.9-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Osi/0.108.9-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Osi version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.108.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Osi/0.108.11-GCC-13.3.0`| +|0.108.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Osi/0.108.9-GCC-13.2.0`| +|0.108.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Osi/0.108.9-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PAPI.md b/docs/available_software/detail/PAPI.md index 8bcf646a8a..f95087d617 100644 --- a/docs/available_software/detail/PAPI.md +++ b/docs/available_software/detail/PAPI.md @@ -1,16 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: PAPI provides the tool designer and application engineer with a consistent - interface and methodology for use of the performance counter hardware found in - most major microprocessors. PAPI enables software engineers to see, in near real - time, the relation between software performance and processor events. In addition - Component PAPI provides access to a collection of components that expose performance - measurement opportunites across the hardware and software stack. + description: "\n PAPI provides the tool designer and application engineer with a\ + \ consistent\n interface and methodology for use of the performance counter hardware\ + \ found\n in most major microprocessors. PAPI enables software engineers to see,\ + \ in near\n real time, the relation between software performance and processor\ + \ events.\n In addition Component PAPI provides access to a collection of components\n\ + \ that expose performance measurement opportunites across the hardware and\n software\ + \ stack.\n" license: Not confirmed name: PAPI offers: @@ -29,30 +28,29 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PAPI/7.1.0-GCCcore-13.2.0'']' + softwareVersion: '[''7.2.0'', ''7.1.0'']' url: https://icl.cs.utk.edu/projects/papi/ --- +# PAPI -PAPI -==== -PAPI provides the tool designer and application engineer with a consistent interface and methodology for use of the performance counter hardware found in most major microprocessors. PAPI enables software engineers to see, in near real time, the relation between software performance and processor events. In addition Component PAPI provides access to a collection of components that expose performance measurement opportunites across the hardware and software stack. + PAPI provides the tool designer and application engineer with a consistent + interface and methodology for use of the performance counter hardware found + in most major microprocessors. PAPI enables software engineers to see, in near + real time, the relation between software performance and processor events. + In addition Component PAPI provides access to a collection of components + that expose performance measurement opportunites across the hardware and + software stack. -https://icl.cs.utk.edu/projects/papi/ -# Available modules +homepage: [https://icl.cs.utk.edu/projects/papi/](https://icl.cs.utk.edu/projects/papi/) -The overview below shows which PAPI installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using PAPI, load one of these modules using a `module load` command like: -```shell -module load PAPI/7.1.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PAPI/7.1.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PAPI version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PAPI/7.2.0-GCCcore-14.3.0`| +|7.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PAPI/7.2.0-GCCcore-14.2.0`| +|7.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PAPI/7.1.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PCRE.md b/docs/available_software/detail/PCRE.md index eaae06190e..d2d735a649 100644 --- a/docs/available_software/detail/PCRE.md +++ b/docs/available_software/detail/PCRE.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The PCRE library is a set of functions that implement regular expression - pattern matching using the same syntax and semantics as Perl 5. + description: "\n The PCRE library is a set of functions that implement regular expression\n\ + \ pattern matching using the same syntax and semantics as Perl 5.\n" license: Not confirmed name: PCRE offers: @@ -25,32 +23,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PCRE/8.45-GCCcore-12.2.0'', ''PCRE/8.45-GCCcore-12.3.0'', ''PCRE/8.45-GCCcore-13.2.0'']' + softwareVersion: '[''8.45'']' url: https://www.pcre.org/ --- +# PCRE -PCRE -==== -The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. + The PCRE library is a set of functions that implement regular expression + pattern matching using the same syntax and semantics as Perl 5. -https://www.pcre.org/ -# Available modules +homepage: [https://www.pcre.org/](https://www.pcre.org/) -The overview below shows which PCRE installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using PCRE, load one of these modules using a `module load` command like: -```shell -module load PCRE/8.45-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PCRE/8.45-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PCRE/8.45-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PCRE/8.45-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PCRE version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.45|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PCRE/8.45-GCCcore-14.2.0`| +|8.45|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PCRE/8.45-GCCcore-13.3.0`| +|8.45|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PCRE/8.45-GCCcore-13.2.0`| +|8.45|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PCRE/8.45-GCCcore-12.3.0`| +|8.45|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PCRE/8.45-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PCRE2.md b/docs/available_software/detail/PCRE2.md index 582962ac13..24944b271b 100644 --- a/docs/available_software/detail/PCRE2.md +++ b/docs/available_software/detail/PCRE2.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The PCRE library is a set of functions that implement regular expression - pattern matching using the same syntax and semantics as Perl 5. + description: "\n The PCRE library is a set of functions that implement regular expression\ + \ pattern matching using the same syntax\n and semantics as Perl 5.\n" license: Not confirmed name: PCRE2 offers: @@ -25,33 +23,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PCRE2/10.40-GCCcore-12.2.0'', ''PCRE2/10.42-GCCcore-12.3.0'', - ''PCRE2/10.42-GCCcore-13.2.0'']' + softwareVersion: '[''10.45'', ''10.43'', ''10.42'', ''10.40'']' url: https://www.pcre.org/ --- +# PCRE2 -PCRE2 -===== -The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. + The PCRE library is a set of functions that implement regular expression pattern matching using the same syntax + and semantics as Perl 5. -https://www.pcre.org/ -# Available modules +homepage: [https://www.pcre.org/](https://www.pcre.org/) -The overview below shows which PCRE2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using PCRE2, load one of these modules using a `module load` command like: -```shell -module load PCRE2/10.42-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PCRE2/10.42-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PCRE2/10.42-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PCRE2/10.40-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PCRE2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|10.45|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PCRE2/10.45-GCCcore-14.3.0`| +|10.45|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PCRE2/10.45-GCCcore-14.2.0`| +|10.43|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PCRE2/10.43-GCCcore-13.3.0`| +|10.42|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PCRE2/10.42-GCCcore-13.2.0`| +|10.42|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PCRE2/10.42-GCCcore-12.3.0`| +|10.40|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PCRE2/10.40-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PDAL.md b/docs/available_software/detail/PDAL.md index 0e839d9151..717c085514 100644 --- a/docs/available_software/detail/PDAL.md +++ b/docs/available_software/detail/PDAL.md @@ -1,14 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: PDAL is Point Data Abstraction Library. It is a C/C++ open source library - and applications fortranslating and processing point cloud data. It is not limited - to LiDAR data,although the focus and impetus for many of the tools in the library - have their origins in LiDAR. + description: ' + + PDAL is Point Data Abstraction Library. It is a C/C++ open source library and + applications for + + translating and processing point cloud data. It is not limited to LiDAR data, + + although the focus and impetus for many of the tools in the library have their + origins in LiDAR.' license: Not confirmed name: PDAL offers: @@ -27,30 +30,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PDAL/2.8.2-foss-2023a'']' + softwareVersion: '[''2.8.2'']' url: https://pdal.io/ --- +# PDAL -PDAL -==== - - -PDAL is Point Data Abstraction Library. It is a C/C++ open source library and applications fortranslating and processing point cloud data. It is not limited to LiDAR data,although the focus and impetus for many of the tools in the library have their origins in LiDAR. - -https://pdal.io/ -# Available modules -The overview below shows which PDAL installations are available per target architecture in EESSI, ordered based on software version (new to old). +PDAL is Point Data Abstraction Library. It is a C/C++ open source library and applications for +translating and processing point cloud data. It is not limited to LiDAR data, +although the focus and impetus for many of the tools in the library have their origins in LiDAR. -To start using PDAL, load one of these modules using a `module load` command like: +homepage: [https://pdal.io/](https://pdal.io/) -```shell -module load PDAL/2.8.2-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PDAL/2.8.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PDAL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PDAL/2.8.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/PDT.md b/docs/available_software/detail/PDT.md index 79cb9bb236..c0341d7d25 100644 --- a/docs/available_software/detail/PDT.md +++ b/docs/available_software/detail/PDT.md @@ -1,15 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Program Database Toolkit (PDT) is a framework for analyzing source - code written in several programming languages and for making rich program knowledge - accessible to developers of static and dynamic analysis tools. PDT implements - a standard program representation, the program database (PDB), that can be accessed - in a uniform way through a class library supporting common PDB operations. + description: "\n Program Database Toolkit (PDT) is a framework for analyzing source\ + \ code\n written in several programming languages and for making rich program\n\ + \ knowledge accessible to developers of static and dynamic analysis tools.\n PDT\ + \ implements a standard program representation, the program database\n (PDB),\ + \ that can be accessed in a uniform way through a class library\n supporting common\ + \ PDB operations.\n" license: Not confirmed name: PDT offers: @@ -28,30 +27,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PDT/3.25.2-GCCcore-13.2.0'']' + softwareVersion: '[''3.25.2'']' url: https://www.cs.uoregon.edu/research/pdt/ --- +# PDT -PDT -=== -Program Database Toolkit (PDT) is a framework for analyzing source code written in several programming languages and for making rich program knowledge accessible to developers of static and dynamic analysis tools. PDT implements a standard program representation, the program database (PDB), that can be accessed in a uniform way through a class library supporting common PDB operations. + Program Database Toolkit (PDT) is a framework for analyzing source code + written in several programming languages and for making rich program + knowledge accessible to developers of static and dynamic analysis tools. + PDT implements a standard program representation, the program database + (PDB), that can be accessed in a uniform way through a class library + supporting common PDB operations. -https://www.cs.uoregon.edu/research/pdt/ -# Available modules +homepage: [https://www.cs.uoregon.edu/research/pdt/](https://www.cs.uoregon.edu/research/pdt/) -The overview below shows which PDT installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using PDT, load one of these modules using a `module load` command like: -```shell -module load PDT/3.25.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PDT/3.25.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PDT version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.25.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PDT/3.25.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PETSc.md b/docs/available_software/detail/PETSc.md index 6df2f847f7..c9409e9ef3 100644 --- a/docs/available_software/detail/PETSc.md +++ b/docs/available_software/detail/PETSc.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: PETSc, pronounced PET-see (the S is silent), is a suite of data structures - and routines for the scalable (parallel) solution of scientific applications modeled - by partial differential equations. + description: "PETSc, pronounced PET-see (the S is silent), is a suite of data structures\ + \ and routines for the\n scalable (parallel) solution of scientific applications\ + \ modeled by partial differential equations." license: Not confirmed name: PETSc offers: @@ -26,31 +24,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PETSc/3.20.3-foss-2023a'', ''PETSc/3.22.5-foss-2023b'']' + softwareVersion: '[''3.23.5'', ''3.22.5'', ''3.20.3'']' url: https://www.mcs.anl.gov/petsc --- +# PETSc -PETSc -===== +PETSc, pronounced PET-see (the S is silent), is a suite of data structures and routines for the + scalable (parallel) solution of scientific applications modeled by partial differential equations. -PETSc, pronounced PET-see (the S is silent), is a suite of data structures and routines for the scalable (parallel) solution of scientific applications modeled by partial differential equations. +homepage: [https://www.mcs.anl.gov/petsc](https://www.mcs.anl.gov/petsc) -https://www.mcs.anl.gov/petsc -# Available modules +## Available installations -The overview below shows which PETSc installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using PETSc, load one of these modules using a `module load` command like: - -```shell -module load PETSc/3.22.5-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PETSc/3.22.5-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PETSc/3.20.3-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PETSc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.23.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PETSc/3.23.5-foss-2025a`| +|3.22.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PETSc/3.22.5-foss-2023b`| +|3.20.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PETSc/3.20.3-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/PGPLOT.md b/docs/available_software/detail/PGPLOT.md index 4f30c0abc9..dda5c27b29 100644 --- a/docs/available_software/detail/PGPLOT.md +++ b/docs/available_software/detail/PGPLOT.md @@ -1,15 +1,20 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The PGPLOT Graphics Subroutine Library is a Fortran- or C-callable,device-independent - graphics package for making simple scientific graphs. It is intendedfor making - graphical images of publication quality with minimum effort on the part ofthe - user. For most applications, the program can be device-independent, and the outputcan - be directed to the appropriate device at run time. + description: 'The PGPLOT Graphics Subroutine Library is a Fortran- or C-callable, + + device-independent graphics package for making simple scientific graphs. It is + intended + + for making graphical images of publication quality with minimum effort on the + part of + + the user. For most applications, the program can be device-independent, and the + output + + can be directed to the appropriate device at run time.' license: Not confirmed name: PGPLOT offers: @@ -28,30 +33,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PGPLOT/5.2.2-GCCcore-13.2.0'']' + softwareVersion: '[''5.2.2'']' url: https://sites.astro.caltech.edu/~tjp/pgplot/ --- - -PGPLOT -====== - - -The PGPLOT Graphics Subroutine Library is a Fortran- or C-callable,device-independent graphics package for making simple scientific graphs. It is intendedfor making graphical images of publication quality with minimum effort on the part ofthe user. For most applications, the program can be device-independent, and the outputcan be directed to the appropriate device at run time. - -https://sites.astro.caltech.edu/~tjp/pgplot/ -# Available modules +# PGPLOT -The overview below shows which PGPLOT installations are available per target architecture in EESSI, ordered based on software version (new to old). +The PGPLOT Graphics Subroutine Library is a Fortran- or C-callable, +device-independent graphics package for making simple scientific graphs. It is intended +for making graphical images of publication quality with minimum effort on the part of +the user. For most applications, the program can be device-independent, and the output +can be directed to the appropriate device at run time. -To start using PGPLOT, load one of these modules using a `module load` command like: +homepage: [https://sites.astro.caltech.edu/~tjp/pgplot/](https://sites.astro.caltech.edu/~tjp/pgplot/) -```shell -module load PGPLOT/5.2.2-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PGPLOT/5.2.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PGPLOT version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PGPLOT/5.2.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PLUMED.md b/docs/available_software/detail/PLUMED.md index 32cd9801a7..d3ce44c65c 100644 --- a/docs/available_software/detail/PLUMED.md +++ b/docs/available_software/detail/PLUMED.md @@ -1,17 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: PLUMED is an open source library for free energy calculations in molecular - systems which works together with some of the most popular molecular dynamics - engines. Free energy calculations can be performed as a function of many order - parameters with a particular focus on biological problems, using state of the - art methods such as metadynamics, umbrella sampling and Jarzynski-equation based - steered MD. The software, written in C++, can be easily interfaced with both fortran - and C/C++ codes. + description: "PLUMED is an open source library for free energy calculations in molecular\ + \ systems which\n works together with some of the most popular molecular dynamics\ + \ engines. Free energy calculations can be\n performed as a function of many order\ + \ parameters with a particular focus on biological problems, using\n state of\ + \ the art methods such as metadynamics, umbrella sampling and Jarzynski-equation\ + \ based steered MD.\n The software, written in C++, can be easily interfaced with\ + \ both fortran and C/C++ codes.\n" license: Not confirmed name: PLUMED offers: @@ -30,31 +28,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PLUMED/2.9.0-foss-2023a'', ''PLUMED/2.9.2-foss-2023b'']' + softwareVersion: '[''2.9.4'', ''2.9.3'', ''2.9.2'', ''2.9.0'']' url: https://www.plumed.org --- +# PLUMED -PLUMED -====== +PLUMED is an open source library for free energy calculations in molecular systems which + works together with some of the most popular molecular dynamics engines. Free energy calculations can be + performed as a function of many order parameters with a particular focus on biological problems, using + state of the art methods such as metadynamics, umbrella sampling and Jarzynski-equation based steered MD. + The software, written in C++, can be easily interfaced with both fortran and C/C++ codes. -PLUMED is an open source library for free energy calculations in molecular systems which works together with some of the most popular molecular dynamics engines. Free energy calculations can be performed as a function of many order parameters with a particular focus on biological problems, using state of the art methods such as metadynamics, umbrella sampling and Jarzynski-equation based steered MD. The software, written in C++, can be easily interfaced with both fortran and C/C++ codes. -https://www.plumed.org -# Available modules +homepage: [https://www.plumed.org](https://www.plumed.org) +## Available installations -The overview below shows which PLUMED installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using PLUMED, load one of these modules using a `module load` command like: - -```shell -module load PLUMED/2.9.2-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PLUMED/2.9.2-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PLUMED/2.9.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PLUMED version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.9.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PLUMED/2.9.4-foss-2025a`| +|2.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PLUMED/2.9.3-foss-2024a`| +|2.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PLUMED/2.9.2-foss-2023b`| +|2.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PLUMED/2.9.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/PLY.md b/docs/available_software/detail/PLY.md index 43e941d184..1995ac104e 100644 --- a/docs/available_software/detail/PLY.md +++ b/docs/available_software/detail/PLY.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PLY/3.11-GCCcore-12.3.0'']' + softwareVersion: '[''3.11'']' url: https://www.dabeaz.com/ply/ --- - -PLY -=== +# PLY PLY is yet another implementation of lex and yacc for Python. -https://www.dabeaz.com/ply/ -# Available modules - - -The overview below shows which PLY installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using PLY, load one of these modules using a `module load` command like: +homepage: [https://www.dabeaz.com/ply/](https://www.dabeaz.com/ply/) -```shell -module load PLY/3.11-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PLY/3.11-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PLY version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PLY/3.11-GCCcore-14.2.0`| +|3.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PLY/3.11-GCCcore-13.3.0`| +|3.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PLY/3.11-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PMIx.md b/docs/available_software/detail/PMIx.md index 9c4c6e0f78..05d283e673 100644 --- a/docs/available_software/detail/PMIx.md +++ b/docs/available_software/detail/PMIx.md @@ -1,18 +1,29 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Process Management for Exascale EnvironmentsPMI Exascale (PMIx) represents - an attempt toprovide an extended version of the PMI standard specifically designedto - support clusters up to and including exascale sizes. The overallobjective of the - project is not to branch the existing pseudo-standarddefinitions - in fact, PMIx - fully supports both of the existing PMI-1and PMI-2 APIs - but rather to (a) augment - and extend those APIs toeliminate some current restrictions that impact scalability, - and (b)provide a reference implementation of the PMI-server that demonstratesthe - desired level of scalability. + description: 'Process Management for Exascale Environments + + PMI Exascale (PMIx) represents an attempt to + + provide an extended version of the PMI standard specifically designed + + to support clusters up to and including exascale sizes. The overall + + objective of the project is not to branch the existing pseudo-standard + + definitions - in fact, PMIx fully supports both of the existing PMI-1 + + and PMI-2 APIs - but rather to (a) augment and extend those APIs to + + eliminate some current restrictions that impact scalability, and (b) + + provide a reference implementation of the PMI-server that demonstrates + + the desired level of scalability. + + ' license: Not confirmed name: PMIx offers: @@ -31,33 +42,34 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PMIx/4.2.2-GCCcore-12.2.0'', ''PMIx/4.2.4-GCCcore-12.3.0'', - ''PMIx/4.2.6-GCCcore-13.2.0'']' + softwareVersion: '[''5.0.8'', ''5.0.6'', ''5.0.2'', ''4.2.6'', ''4.2.4'', ''4.2.2'']' url: https://pmix.org/ --- +# PMIx -PMIx -==== - - -Process Management for Exascale EnvironmentsPMI Exascale (PMIx) represents an attempt toprovide an extended version of the PMI standard specifically designedto support clusters up to and including exascale sizes. The overallobjective of the project is not to branch the existing pseudo-standarddefinitions - in fact, PMIx fully supports both of the existing PMI-1and PMI-2 APIs - but rather to (a) augment and extend those APIs toeliminate some current restrictions that impact scalability, and (b)provide a reference implementation of the PMI-server that demonstratesthe desired level of scalability. - -https://pmix.org/ -# Available modules +Process Management for Exascale Environments +PMI Exascale (PMIx) represents an attempt to +provide an extended version of the PMI standard specifically designed +to support clusters up to and including exascale sizes. The overall +objective of the project is not to branch the existing pseudo-standard +definitions - in fact, PMIx fully supports both of the existing PMI-1 +and PMI-2 APIs - but rather to (a) augment and extend those APIs to +eliminate some current restrictions that impact scalability, and (b) +provide a reference implementation of the PMI-server that demonstrates +the desired level of scalability. -The overview below shows which PMIx installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using PMIx, load one of these modules using a `module load` command like: +homepage: [https://pmix.org/](https://pmix.org/) -```shell -module load PMIx/4.2.6-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PMIx/4.2.6-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PMIx/4.2.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PMIx/4.2.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PMIx version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PMIx/5.0.8-GCCcore-14.3.0`| +|5.0.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PMIx/5.0.6-GCCcore-14.2.0`| +|5.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PMIx/5.0.2-GCCcore-13.3.0`| +|4.2.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PMIx/4.2.6-GCCcore-13.2.0`| +|4.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PMIx/4.2.4-GCCcore-12.3.0`| +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PMIx/4.2.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PROJ.md b/docs/available_software/detail/PROJ.md index e3dc2ddde9..f5a7e3b880 100644 --- a/docs/available_software/detail/PROJ.md +++ b/docs/available_software/detail/PROJ.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Program proj is a standard Unix filter function which convertsgeographic - longitude and latitude coordinates into cartesian coordinates + description: 'Program proj is a standard Unix filter function which converts + + geographic longitude and latitude coordinates into cartesian coordinates' license: Not confirmed name: PROJ offers: @@ -25,33 +24,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PROJ/9.1.1-GCCcore-12.2.0'', ''PROJ/9.2.0-GCCcore-12.3.0'', - ''PROJ/9.3.1-GCCcore-13.2.0'']' + softwareVersion: '[''9.4.1'', ''9.3.1'', ''9.2.0'', ''9.1.1'']' url: https://proj.org --- - -PROJ -==== - - -Program proj is a standard Unix filter function which convertsgeographic longitude and latitude coordinates into cartesian coordinates - -https://proj.org -# Available modules +# PROJ -The overview below shows which PROJ installations are available per target architecture in EESSI, ordered based on software version (new to old). +Program proj is a standard Unix filter function which converts +geographic longitude and latitude coordinates into cartesian coordinates -To start using PROJ, load one of these modules using a `module load` command like: +homepage: [https://proj.org](https://proj.org) -```shell -module load PROJ/9.3.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PROJ/9.3.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PROJ/9.2.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PROJ/9.1.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PROJ version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PROJ/9.4.1-GCCcore-13.3.0`| +|9.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PROJ/9.3.1-GCCcore-13.2.0`| +|9.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PROJ/9.2.0-GCCcore-12.3.0`| +|9.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PROJ/9.1.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PRRTE.md b/docs/available_software/detail/PRRTE.md new file mode 100644 index 0000000000..6ed4581359 --- /dev/null +++ b/docs/available_software/detail/PRRTE.md @@ -0,0 +1,42 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: PRRTE is the PMIx Reference RunTime Environment + license: Not confirmed + name: PRRTE + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''3.0.11'', ''3.0.8'', ''3.0.5'']' + url: https://docs.prrte.org/ +--- +# PRRTE + + +PRRTE is the PMIx Reference RunTime Environment + +homepage: [https://docs.prrte.org/](https://docs.prrte.org/) + +## Available installations + + +|PRRTE version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.0.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PRRTE/3.0.11-GCCcore-14.3.0`| +|3.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PRRTE/3.0.8-GCCcore-14.2.0`| +|3.0.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PRRTE/3.0.5-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Pandoc.md b/docs/available_software/detail/Pandoc.md index f125f62445..ad54ca4d31 100644 --- a/docs/available_software/detail/Pandoc.md +++ b/docs/available_software/detail/Pandoc.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Pandoc/3.6.2'']' + softwareVersion: '[''3.8.2.1'', ''3.6.2'']' url: https://pandoc.org --- - -Pandoc -====== +# Pandoc If you need to convert files from one markup format into another, pandoc is your swiss-army knife -https://pandoc.org -# Available modules - - -The overview below shows which Pandoc installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Pandoc, load one of these modules using a `module load` command like: +homepage: [https://pandoc.org](https://pandoc.org) -```shell -module load Pandoc/3.6.2 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Pandoc/3.6.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Pandoc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.8.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Pandoc/3.8.2.1`| +|3.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pandoc/3.6.2`| \ No newline at end of file diff --git a/docs/available_software/detail/Pango.md b/docs/available_software/detail/Pango.md index 296ddd7ddc..70c1b7d5e8 100644 --- a/docs/available_software/detail/Pango.md +++ b/docs/available_software/detail/Pango.md @@ -1,14 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Pango is a library for laying out and rendering of text, with an emphasis - on internationalization.Pango can be used anywhere that text layout is needed, - though most of the work on Pango so far has been done in thecontext of the GTK+ - widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. + description: 'Pango is a library for laying out and rendering of text, with an emphasis + on internationalization. + + Pango can be used anywhere that text layout is needed, though most of the work + on Pango so far has been done in the + + context of the GTK+ widget toolkit. Pango forms the core of text and font handling + for GTK+-2.x.' license: Not confirmed name: Pango offers: @@ -27,33 +29,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Pango/1.50.12-GCCcore-12.2.0'', ''Pango/1.50.14-GCCcore-12.3.0'', - ''Pango/1.51.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.57.0'', ''1.54.0'', ''1.51.0'', ''1.50.14'', ''1.50.12'']' url: https://www.pango.org/ --- - -Pango -===== - - -Pango is a library for laying out and rendering of text, with an emphasis on internationalization.Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in thecontext of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. - -https://www.pango.org/ -# Available modules +# Pango -The overview below shows which Pango installations are available per target architecture in EESSI, ordered based on software version (new to old). +Pango is a library for laying out and rendering of text, with an emphasis on internationalization. +Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the +context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. -To start using Pango, load one of these modules using a `module load` command like: +homepage: [https://www.pango.org/](https://www.pango.org/) -```shell -module load Pango/1.51.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Pango/1.51.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Pango/1.50.14-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Pango/1.50.12-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Pango version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.57.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Pango/1.57.0-GCCcore-14.3.0`| +|1.54.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Pango/1.54.0-GCCcore-13.3.0`| +|1.51.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pango/1.51.0-GCCcore-13.2.0`| +|1.50.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pango/1.50.14-GCCcore-12.3.0`| +|1.50.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pango/1.50.12-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ParMETIS.md b/docs/available_software/detail/ParMETIS.md index eb1103bb83..1859a928e5 100644 --- a/docs/available_software/detail/ParMETIS.md +++ b/docs/available_software/detail/ParMETIS.md @@ -1,17 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: ParMETIS is an MPI-based parallel library that implements a variety - of algorithms for partitioning unstructured graphs, meshes, and for computing - fill-reducing orderings of sparse matrices. ParMETIS extends the functionality - provided by METIS and includes routines that are especially suited for parallel - AMR computations and large scale numerical simulations. The algorithms implemented - in ParMETIS are based on the parallel multilevel k-way graph-partitioning, adaptive - repartitioning, and parallel multi-constrained partitioning schemes. + description: "ParMETIS is an MPI-based parallel library that implements a variety\ + \ of algorithms for partitioning\n unstructured graphs, meshes, and for computing\ + \ fill-reducing orderings of sparse matrices. ParMETIS extends the\n functionality\ + \ provided by METIS and includes routines that are especially suited for parallel\ + \ AMR computations and\n large scale numerical simulations. The algorithms implemented\ + \ in ParMETIS are based on the parallel multilevel k-way\n graph-partitioning,\ + \ adaptive repartitioning, and parallel multi-constrained partitioning schemes." license: Not confirmed name: ParMETIS offers: @@ -30,30 +28,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ParMETIS/4.0.3-gompi-2023a'']' + softwareVersion: '[''4.0.3'']' url: http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview --- +# ParMETIS -ParMETIS -======== +ParMETIS is an MPI-based parallel library that implements a variety of algorithms for partitioning + unstructured graphs, meshes, and for computing fill-reducing orderings of sparse matrices. ParMETIS extends the + functionality provided by METIS and includes routines that are especially suited for parallel AMR computations and + large scale numerical simulations. The algorithms implemented in ParMETIS are based on the parallel multilevel k-way + graph-partitioning, adaptive repartitioning, and parallel multi-constrained partitioning schemes. -ParMETIS is an MPI-based parallel library that implements a variety of algorithms for partitioning unstructured graphs, meshes, and for computing fill-reducing orderings of sparse matrices. ParMETIS extends the functionality provided by METIS and includes routines that are especially suited for parallel AMR computations and large scale numerical simulations. The algorithms implemented in ParMETIS are based on the parallel multilevel k-way graph-partitioning, adaptive repartitioning, and parallel multi-constrained partitioning schemes. +homepage: [http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview](http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview) -http://glaros.dtc.umn.edu/gkhome/metis/parmetis/overview -# Available modules +## Available installations -The overview below shows which ParMETIS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ParMETIS, load one of these modules using a `module load` command like: - -```shell -module load ParMETIS/4.0.3-gompi-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ParMETIS/4.0.3-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ParMETIS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ParMETIS/4.0.3-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ParaView.md b/docs/available_software/detail/ParaView.md index a76adcccf1..ab7982898d 100644 --- a/docs/available_software/detail/ParaView.md +++ b/docs/available_software/detail/ParaView.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ParaView/5.11.1-foss-2022b'', ''ParaView/5.11.2-foss-2023a'']' + softwareVersion: '[''5.13.2'', ''5.11.2'', ''5.11.1'']' url: https://www.paraview.org --- - -ParaView -======== +# ParaView ParaView is a scientific parallel visualizer. -https://www.paraview.org -# Available modules - - -The overview below shows which ParaView installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ParaView, load one of these modules using a `module load` command like: +homepage: [https://www.paraview.org](https://www.paraview.org) -```shell -module load ParaView/5.11.2-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ParaView/5.11.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ParaView/5.11.1-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ParaView version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.13.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ParaView/5.13.2-foss-2024a`| +|5.11.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ParaView/5.11.2-foss-2023a`| +|5.11.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ParaView/5.11.1-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/Paraver.md b/docs/available_software/detail/Paraver.md index fb93eb3f41..dba292e840 100644 --- a/docs/available_software/detail/Paraver.md +++ b/docs/available_software/detail/Paraver.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A very powerful performance visualization and analysis tool based on - traces that can be used to analyse any information that is expressed on its input - trace format. Traces for parallel MPI, OpenMP and other programs can be genereated - with Extrae. + description: "A very powerful performance visualization and analysis tool based\ + \ on\n traces that can be used to analyse any information that is expressed on\ + \ its input trace format.\n Traces for parallel MPI, OpenMP and other programs\ + \ can be genereated with Extrae." license: Not confirmed name: Paraver offers: @@ -27,30 +25,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Paraver/4.11.4-GCC-12.3.0'']' + softwareVersion: '[''4.11.4'']' url: https://tools.bsc.es/paraver --- +# Paraver -Paraver -======= +A very powerful performance visualization and analysis tool based on + traces that can be used to analyse any information that is expressed on its input trace format. + Traces for parallel MPI, OpenMP and other programs can be genereated with Extrae. -A very powerful performance visualization and analysis tool based on traces that can be used to analyse any information that is expressed on its input trace format. Traces for parallel MPI, OpenMP and other programs can be genereated with Extrae. +homepage: [https://tools.bsc.es/paraver](https://tools.bsc.es/paraver) -https://tools.bsc.es/paraver -# Available modules +## Available installations -The overview below shows which Paraver installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Paraver, load one of these modules using a `module load` command like: - -```shell -module load Paraver/4.11.4-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Paraver/4.11.4-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Paraver version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.11.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Paraver/4.11.4-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Perl-bundle-CPAN.md b/docs/available_software/detail/Perl-bundle-CPAN.md index 8f0bd3393b..e0e0339160 100644 --- a/docs/available_software/detail/Perl-bundle-CPAN.md +++ b/docs/available_software/detail/Perl-bundle-CPAN.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,3049 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0'']' + softwareVersion: '[''5.40.0'', ''5.38.2'', ''5.36.1'']' url: https://www.perl.org/ --- +# Perl-bundle-CPAN -Perl-bundle-CPAN -================ +A set of common packages from CPAN + +homepage: [https://www.perl.org/](https://www.perl.org/) + +## Available installations + + +|Perl-bundle-CPAN version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.40.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|5.38.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|5.36.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in Perl-bundle-CPAN installations + + +### Algorithm::Dependency + + +|`Algorithm::Dependency` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.112|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Algorithm::Diff + + +|`Algorithm::Diff` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.201|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### aliased + + +|`aliased` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.34|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### AnyEvent + + +|`AnyEvent` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|7.17|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### App::Cmd + + +|`App::Cmd` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.336|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.335|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### App::cpanminus + + +|`App::cpanminus` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.7048|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.7047|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.7046|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### AppConfig + + +|`AppConfig` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.71|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Archive::Extract + + +|`Archive::Extract` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.88|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Array::Transpose + + +|`Array::Transpose` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.06|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Array::Utils + + +|`Array::Utils` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.5|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Authen::NTLM + + +|`Authen::NTLM` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.09|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Authen::SASL + + +|`Authen::SASL` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.1700|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.16|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### AutoLoader + + +|`AutoLoader` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|5.74|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### B::COW + + +|`B::COW` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.007|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### B::Hooks::EndOfScope + + +|`B::Hooks::EndOfScope` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.28|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.26|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### B::Lint + + +|`B::Lint` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.20|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### boolean + + +|`boolean` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.46|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Business::ISBN + + +|`Business::ISBN` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.009|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|3.008|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Business::ISBN::Data + + +|`Business::ISBN::Data` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|20241205.001|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|20240614.001|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|20230516.001|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Canary::Stability + + +|`Canary::Stability` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2013|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Capture::Tiny + + +|`Capture::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.48|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Carp::Clan + + +|`Carp::Clan` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.08|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Carp::Heavy + + +|`Carp::Heavy` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.50|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### CGI + + +|`CGI` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|4.66|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|4.57|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::Accessor + + +|`Class::Accessor` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.51|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::Data::Inheritable + + +|`Class::Data::Inheritable` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.10|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.09|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::DBI + + +|`Class::DBI` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|v3.0.17|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::DBI::SQLite + + +|`Class::DBI::SQLite` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.11|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::Inspector + + +|`Class::Inspector` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.36|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::ISA + + +|`Class::ISA` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.36|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::Load + + +|`Class::Load` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.25|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::Load::XS + + +|`Class::Load::XS` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.10|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::Method::Modifiers + + +|`Class::Method::Modifiers` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.15|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::Singleton + + +|`Class::Singleton` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.6|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::Tiny + + +|`Class::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.008|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::Trigger + + +|`Class::Trigger` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.15|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Class::XSAccessor + + +|`Class::XSAccessor` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.19|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Clone + + +|`Clone` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.47|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.46|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Clone::Choose + + +|`Clone::Choose` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.010|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### common::sense + + +|`common::sense` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.75|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Compress::Raw::Bzip2 + + +|`Compress::Raw::Bzip2` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.213|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|2.212|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| + +### Compress::Raw::Zlib + + +|`Compress::Raw::Zlib` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.213|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|2.212|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.204|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Config::General + + +|`Config::General` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.65|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Config::INI + + +|`Config::INI` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.029|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Config::MVP + + +|`Config::MVP` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.200013|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Config::MVP::Reader::INI + + +|`Config::MVP::Reader::INI` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.101465|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Config::Simple + + +|`Config::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|4.58|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Config::Tiny + + +|`Config::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.30|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.29|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Const::Exporter + + +|`Const::Exporter` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|v1.2.3|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.2.2|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Const::Fast + + +|`Const::Fast` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.014|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### CPAN::Meta::Check + + +|`CPAN::Meta::Check` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.018|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.017|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### CPAN::Meta::Requirements + + +|`CPAN::Meta::Requirements` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.143|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| + +### CPAN::Requirements::Dynamic + + +|`CPAN::Requirements::Dynamic` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.001|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| + +### CPAN::Uploader + + +|`CPAN::Uploader` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.103018|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### CPANPLUS + + +|`CPANPLUS` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.9914|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Crypt::DES + + +|`Crypt::DES` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.07|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Crypt::Rijndael + + +|`Crypt::Rijndael` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.16|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Cwd + + +|`Cwd` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.75|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Cwd::Guard + + +|`Cwd::Guard` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.05|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Data::Dump + + +|`Data::Dump` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.25|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Data::Dumper::Concise + + +|`Data::Dumper::Concise` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.023|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Data::Grove + + +|`Data::Grove` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.08|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Data::OptList + + +|`Data::OptList` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.114|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Data::Section + + +|`Data::Section` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.200008|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Data::Section::Simple + + +|`Data::Section::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.07|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Data::Stag + + +|`Data::Stag` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.14|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Data::Types + + +|`Data::Types` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.17|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Data::UUID + + +|`Data::UUID` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.227|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.226|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Date::Handler + + +|`Date::Handler` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.2|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Date::Language + + +|`Date::Language` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.33|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DateTime + + +|`DateTime` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.65|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.59|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DateTime::Locale + + +|`DateTime::Locale` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.44|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.42|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.38|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DateTime::TimeZone + + +|`DateTime::TimeZone` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.63|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|2.62|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.60|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DateTime::Tiny + + +|`DateTime::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.07|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DBD::CSV + + +|`DBD::CSV` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.60|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DBD::SQLite + + +|`DBD::SQLite` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.76|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.74|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.72|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DBI + + +|`DBI` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.645|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.643|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DBIx::Admin::CreateTable + + +|`DBIx::Admin::CreateTable` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.11|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DBIx::Admin::DSNManager + + +|`DBIx::Admin::DSNManager` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.02|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DBIx::Admin::TableInfo + + +|`DBIx::Admin::TableInfo` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.04|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DBIx::ContextualFetch + + +|`DBIx::ContextualFetch` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.03|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### DBIx::Simple + + +|`DBIx::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.37|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Devel::CheckCompiler + + +|`Devel::CheckCompiler` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.07|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Devel::CheckLib + + +|`Devel::CheckLib` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.16|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Devel::Cycle + + +|`Devel::Cycle` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.12|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Devel::FindPerl + + +|`Devel::FindPerl` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.016|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Devel::GlobalDestruction + + +|`Devel::GlobalDestruction` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.14|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Devel::OverloadInfo + + +|`Devel::OverloadInfo` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.007|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Devel::Size + + +|`Devel::Size` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.84|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.83|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Devel::StackTrace + + +|`Devel::StackTrace` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.05|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.04|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Digest::HMAC + + +|`Digest::HMAC` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.05|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.04|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Digest::MD5::File + + +|`Digest::MD5::File` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.08|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Digest::SHA1 + + +|`Digest::SHA1` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.13|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Dist::CheckConflicts + + +|`Dist::CheckConflicts` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.11|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Dist::Zilla + + +|`Dist::Zilla` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.032|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|6.030|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Email::Date::Format + + +|`Email::Date::Format` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.008|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Encode + + +|`Encode` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.21|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|3.19|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Encode::Locale + + +|`Encode::Locale` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.05|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Error + + +|`Error` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.17029|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Eval::Closure + + +|`Eval::Closure` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.14|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Exception::Class + + +|`Exception::Class` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.45|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Expect + + +|`Expect` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.38|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.35|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Exporter::Declare + + +|`Exporter::Declare` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.114|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Exporter::Tiny + + +|`Exporter::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.006002|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### ExtUtils::CBuilder + + +|`ExtUtils::CBuilder` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.280236|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### ExtUtils::Config + + +|`ExtUtils::Config` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.010|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.009|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.008|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### ExtUtils::Constant + + +|`ExtUtils::Constant` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.25|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### ExtUtils::CppGuess + + +|`ExtUtils::CppGuess` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.27|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.26|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### ExtUtils::Helpers + + +|`ExtUtils::Helpers` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.028|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.027|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.026|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### ExtUtils::InstallPaths + + +|`ExtUtils::InstallPaths` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.014|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.013|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.012|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### ExtUtils::MakeMaker + + +|`ExtUtils::MakeMaker` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|7.70|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### ExtUtils::ParseXS + + +|`ExtUtils::ParseXS` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.51|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|3.44|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Fennec::Lite + + +|`Fennec::Lite` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.004|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::CheckTree + + +|`File::CheckTree` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|4.42|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Copy::Recursive + + +|`File::Copy::Recursive` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.45|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Copy::Recursive::Reduced + + +|`File::Copy::Recursive::Reduced` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.008|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.006|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Find::Rule + + +|`File::Find::Rule` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.34|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Find::Rule::Perl + + +|`File::Find::Rule::Perl` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.16|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Grep + + +|`File::Grep` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.02|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::HomeDir + + +|`File::HomeDir` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.006|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Listing + + +|`File::Listing` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.16|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|6.15|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Next + + +|`File::Next` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.18|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::pushd + + +|`File::pushd` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.016|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Remove + + +|`File::Remove` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.61|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::ShareDir + + +|`File::ShareDir` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.118|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::ShareDir::Install + + +|`File::ShareDir::Install` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.14|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Slurp + + +|`File::Slurp` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|9999.32|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Slurp::Tiny + + +|`File::Slurp::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.004|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Slurper + + +|`File::Slurper` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.014|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Temp + + +|`File::Temp` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.2311|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### File::Which + + +|`File::Which` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.27|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Font::TTF + + +|`Font::TTF` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.06|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Getopt::Long::Descriptive + + +|`Getopt::Long::Descriptive` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.115|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.114|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.111|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Git + + +|`Git` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.42|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### GO + + +|`GO` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.04|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### GO::Utils + + +|`GO::Utils` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.15|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Graph + + +|`Graph` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.9732|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.9729|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.9726|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Graph::ReadWrite + + +|`Graph::ReadWrite` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.10|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Hash::Merge + + +|`Hash::Merge` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.302|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Hash::Objectify + + +|`Hash::Objectify` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.008|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Heap + + +|`Heap` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.80|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Hook::LexWrap + + +|`Hook::LexWrap` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.26|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTML::Entities::Interpolate + + +|`HTML::Entities::Interpolate` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.10|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTML::Form + + +|`HTML::Form` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.12|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|6.11|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTML::Parser + + +|`HTML::Parser` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.83|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|3.82|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|3.81|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTML::Tagset + + +|`HTML::Tagset` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.24|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|3.20|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTML::Template + + +|`HTML::Template` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.97|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTML::Tree + + +|`HTML::Tree` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|5.07|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTTP::CookieJar + + +|`HTTP::CookieJar` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.014|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTTP::Cookies + + +|`HTTP::Cookies` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.11|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|6.10|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTTP::Daemon + + +|`HTTP::Daemon` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.16|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTTP::Date + + +|`HTTP::Date` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.06|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|6.05|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTTP::Message + + +|`HTTP::Message` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|7.00|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|6.46|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|6.44|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTTP::Negotiate + + +|`HTTP::Negotiate` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.01|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### HTTP::Tiny + + +|`HTTP::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.090|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.088|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.082|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### if + + +|`if` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.0608|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Ima::DBI + + +|`Ima::DBI` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.35|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Import::Into + + +|`Import::Into` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.002005|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Importer + + +|`Importer` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.026|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Inline + + +|`Inline` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.86|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IO::Compress::Zip + + +|`IO::Compress::Zip` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.213|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|2.212|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.204|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IO::HTML + + +|`IO::HTML` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.004|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IO::Socket::SSL + + +|`IO::Socket::SSL` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.089|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|2.087|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.083|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IO::String + + +|`IO::String` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.08|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IO::Stringy + + +|`IO::Stringy` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.113|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IO::TieCombine + + +|`IO::TieCombine` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.005|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IO::Tty + + +|`IO::Tty` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.20|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.17|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IPC::Cmd + + +|`IPC::Cmd` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.04|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IPC::Run + + +|`IPC::Run` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|20231003.0|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|20220807.0|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IPC::Run3 + + +|`IPC::Run3` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.049|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.048|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### IPC::System::Simple + + +|`IPC::System::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.30|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### JSON + + +|`JSON` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|4.10|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### JSON::MaybeXS + + +|`JSON::MaybeXS` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.004008|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.004005|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### JSON::XS + + +|`JSON::XS` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|4.03|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Lingua::EN::PluralToSingular + + +|`Lingua::EN::PluralToSingular` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.21|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### List::AllUtils + + +|`List::AllUtils` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.19|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### List::MoreUtils + + +|`List::MoreUtils` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.430|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### List::MoreUtils::XS + + +|`List::MoreUtils::XS` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.430|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### List::SomeUtils + + +|`List::SomeUtils` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.59|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### List::UtilsBy + + +|`List::UtilsBy` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.12|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### local::lib + + +|`local::lib` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.000029|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Locale::Maketext::Simple + + +|`Locale::Maketext::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.21|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Log::Dispatch + + +|`Log::Dispatch` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.71|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Log::Dispatch::Array + + +|`Log::Dispatch::Array` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.005|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Log::Dispatchouli + + +|`Log::Dispatchouli` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.008|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|3.007|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|3.002|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Log::Handler + + +|`Log::Handler` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.90|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Log::Log4perl + + +|`Log::Log4perl` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.57|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Log::Message + + +|`Log::Message` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.08|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Log::Message::Simple + + +|`Log::Message::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.10|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Log::Report + + +|`Log::Report` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.39|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.37|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.34|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Log::Report::Optional + + +|`Log::Report::Optional` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.07|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Logger::Simple + + +|`Logger::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.0|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### LWP::MediaTypes + + +|`LWP::MediaTypes` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.04|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### LWP::Protocol::https + + +|`LWP::Protocol::https` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.14|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|6.10|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### LWP::Simple + + +|`LWP::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.77|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|6.70|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Mail::Util + + +|`Mail::Util` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.22|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|2.21|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Math::Bezier + + +|`Math::Bezier` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.01|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Math::CDF + + +|`Math::CDF` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.1|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Math::Round + + +|`Math::Round` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.08|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.07|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Math::Utils + + +|`Math::Utils` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.14|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Math::VecStat + + +|`Math::VecStat` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.08|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MCE::Mutex + + +|`MCE::Mutex` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.900|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.897|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.884|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Meta::Builder + + +|`Meta::Builder` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.004|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MIME::Base32 + + +|`MIME::Base32` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.303|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| + +### MIME::Base64 + + +|`MIME::Base64` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.16|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MIME::Charset + + +|`MIME::Charset` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|v1.013.1|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MIME::Lite + + +|`MIME::Lite` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.033|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MIME::Types + + +|`MIME::Types` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.26|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.24|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Mixin::Linewise::Readers + + +|`Mixin::Linewise::Readers` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.111|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Mock::Quick + + +|`Mock::Quick` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.111|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Build + + +|`Module::Build` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.4234|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Build::Tiny + + +|`Module::Build::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.051|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.048|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.045|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Build::XSUtil + + +|`Module::Build::XSUtil` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.19|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::CoreList + + +|`Module::CoreList` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|5.20241120|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|5.20240702|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|5.20230423|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Implementation + + +|`Module::Implementation` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.09|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Install + + +|`Module::Install` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.21|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Load + + +|`Module::Load` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.36|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Load::Conditional + + +|`Module::Load::Conditional` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.74|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Metadata + + +|`Module::Metadata` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.000038|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Path + + +|`Module::Path` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.19|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Pluggable + + +|`Module::Pluggable` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.2|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|5.2|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Runtime + + +|`Module::Runtime` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.016|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Module::Runtime::Conflicts + + +|`Module::Runtime::Conflicts` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.003|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Moo + + +|`Moo` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.005005|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Moose + + +|`Moose` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.2207|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.2203|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MooseX::LazyRequire + + +|`MooseX::LazyRequire` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.11|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MooseX::OneArgNew + + +|`MooseX::OneArgNew` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.007|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MooseX::Role::Parameterized + + +|`MooseX::Role::Parameterized` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.11|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MooseX::SetOnce + + +|`MooseX::SetOnce` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.203|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MooseX::Types + + +|`MooseX::Types` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.50|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MooseX::Types::Perl + + +|`MooseX::Types::Perl` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.101344|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Mouse + + +|`Mouse` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|v2.5.11|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|v2.5.10|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Mozilla::CA + + +|`Mozilla::CA` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|20240924|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|20240313|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|20221114|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### MRO::Compat + + +|`MRO::Compat` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.15|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### namespace::autoclean + + +|`namespace::autoclean` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.31|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.29|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### namespace::clean + + +|`namespace::clean` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.27|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Net::Domain + + +|`Net::Domain` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.15|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Net::HTTP + + +|`Net::HTTP` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.23|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|6.22|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Net::SMTP::SSL + + +|`Net::SMTP::SSL` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.04|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Net::SNMP + + +|`Net::SNMP` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|v6.0.1|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Net::SSLeay + + +|`Net::SSLeay` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.94|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.92|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Number::Compare + + +|`Number::Compare` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.03|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Number::Format + + +|`Number::Format` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.76|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.75|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Object::Accessor + + +|`Object::Accessor` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.48|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Object::InsideOut + + +|`Object::InsideOut` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|4.05|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Package::Constants + + +|`Package::Constants` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.06|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Package::DeprecationManager + + +|`Package::DeprecationManager` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.18|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Package::Stash + + +|`Package::Stash` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.40|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Package::Stash::XS + + +|`Package::Stash::XS` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.30|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### PadWalker + + +|`PadWalker` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.5|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Parallel::ForkManager + + +|`Parallel::ForkManager` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.03|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|2.02|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Params::Check + + +|`Params::Check` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.38|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Params::Util + + +|`Params::Util` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.102|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Params::Validate + + +|`Params::Validate` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.31|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Params::ValidationCompiler + + +|`Params::ValidationCompiler` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.31|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### parent + + +|`parent` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.243|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.241|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Parse::RecDescent + + +|`Parse::RecDescent` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.967015|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Parse::Yapp + + +|`Parse::Yapp` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.21|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Path::Tiny + + +|`Path::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.146|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.144|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### PDF::API2 + + +|`PDF::API2` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.047|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.044|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Perl::OSType + + +|`Perl::OSType` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.010|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Perl::PrereqScanner + + +|`Perl::PrereqScanner` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.100|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### PerlIO::utf8_strict + + +|`PerlIO::utf8_strict` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.010|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Pod::Elemental + + +|`Pod::Elemental` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.103006|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Pod::Escapes + + +|`Pod::Escapes` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.07|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Pod::Eventual + + +|`Pod::Eventual` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.094003|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Pod::LaTeX + + +|`Pod::LaTeX` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.61|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Pod::Man + + +|`Pod::Man` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|v6.0.2|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|5.01|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Pod::Parser + + +|`Pod::Parser` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.67|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.66|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Pod::Plainer + + +|`Pod::Plainer` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.04|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Pod::POM + + +|`Pod::POM` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.01|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Pod::Simple + + +|`Pod::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.45|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Pod::Weaver + + +|`Pod::Weaver` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|4.020|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|4.019|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### PPI + + +|`PPI` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.279|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.278|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.276|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Readonly + + +|`Readonly` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.05|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Ref::Util + + +|`Ref::Util` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.204|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Regexp::Common + + +|`Regexp::Common` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2024080801|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|2017060201|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Role::HasMessage + + +|`Role::HasMessage` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.007|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Role::Identifiable::HasIdent + + +|`Role::Identifiable::HasIdent` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.009|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Role::Tiny + + +|`Role::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.002004|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Scalar::Util + + +|`Scalar::Util` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.68|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.63|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Scalar::Util::Numeric + + +|`Scalar::Util::Numeric` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.40|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Scope::Guard + + +|`Scope::Guard` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.21|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Set::Array + + +|`Set::Array` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.30|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Set::IntervalTree + + +|`Set::IntervalTree` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.12|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Set::IntSpan + + +|`Set::IntSpan` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.19|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Set::IntSpan::Fast + + +|`Set::IntSpan::Fast` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.15|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Set::Object + + +|`Set::Object` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.42|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Set::Scalar + + +|`Set::Scalar` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.29|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Shell + + +|`Shell` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.73|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Socket + + +|`Socket` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.038|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.036|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Software::License + + +|`Software::License` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.104006|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.104003|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Specio + + +|`Specio` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.48|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Spiffy + + +|`Spiffy` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.46|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### SQL::Abstract + + +|`SQL::Abstract` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.000001|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### SQL::Statement + + +|`SQL::Statement` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.414|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Statistics::Basic + + +|`Statistics::Basic` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.6611|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Statistics::Descriptive + + +|`Statistics::Descriptive` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.0801|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|3.0800|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Storable + + +|`Storable` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.25|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### strictures + + +|`strictures` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.000006|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### String::Errf + + +|`String::Errf` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.009|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### String::Flogger + + +|`String::Flogger` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.101246|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### String::Formatter + + +|`String::Formatter` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.235|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### String::Print + + +|`String::Print` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.94|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### String::RewritePrefix + + +|`String::RewritePrefix` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.009|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### String::Truncate + + +|`String::Truncate` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.100603|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### String::TtyLength + + +|`String::TtyLength` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.03|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sub::Exporter + + +|`Sub::Exporter` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.991|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.989|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sub::Exporter::ForMethods + + +|`Sub::Exporter::ForMethods` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.100055|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sub::Exporter::GlobExporter + + +|`Sub::Exporter::GlobExporter` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.006|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sub::Exporter::Progressive + + +|`Sub::Exporter::Progressive` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.001013|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sub::Identify + + +|`Sub::Identify` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.14|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sub::Info + + +|`Sub::Info` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.002|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sub::Install + + +|`Sub::Install` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.929|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sub::Name + + +|`Sub::Name` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.27|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sub::Quote + + +|`Sub::Quote` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.006008|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sub::Uplevel + + +|`Sub::Uplevel` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.2800|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### SVG + + +|`SVG` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.87|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Switch + + +|`Switch` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.17|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sys::Info + + +|`Sys::Info` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.7811|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sys::Info::Base + + +|`Sys::Info::Base` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.7807|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sys::Info::Driver::Linux + + +|`Sys::Info::Driver::Linux` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.7905|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Sys::Info::Driver::Unknown + + +|`Sys::Info::Driver::Unknown` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.79|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Template + + +|`Template` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.102|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|3.101|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| -A set of common packages from CPAN +### Template::Plugin::Number::Format + + +|`Template::Plugin::Number::Format` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.06|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Term::Encoding + + +|`Term::Encoding` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.03|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Term::ReadKey + + +|`Term::ReadKey` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.38|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Term::ReadLine::Gnu + + +|`Term::ReadLine::Gnu` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.46|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.45|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Term::Table + + +|`Term::Table` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.023|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.018|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.016|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Term::UI + + +|`Term::UI` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.50|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test + + +|`Test` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.26|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test2::Plugin::NoWarnings + + +|`Test2::Plugin::NoWarnings` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.10|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.09|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test2::Require::Module + + +|`Test2::Require::Module` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.302204|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.000163|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.000155|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Base + + +|`Test::Base` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.89|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::CheckDeps + + +|`Test::CheckDeps` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.010|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::ClassAPI + + +|`Test::ClassAPI` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.07|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::CleanNamespaces + + +|`Test::CleanNamespaces` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.24|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Deep + + +|`Test::Deep` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.204|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Differences + + +|`Test::Differences` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.71|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.69|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Exception + + +|`Test::Exception` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.43|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::FailWarnings + + +|`Test::FailWarnings` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.008|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Fatal + + +|`Test::Fatal` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.017|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::File + + +|`Test::File` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.993|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::File::ShareDir::Dist + + +|`Test::File::ShareDir::Dist` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.001002|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Harness + + +|`Test::Harness` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.50|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|3.48|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|3.44|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::LeakTrace + + +|`Test::LeakTrace` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.17|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Memory::Cycle + + +|`Test::Memory::Cycle` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.06|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::More::UTF8 + + +|`Test::More::UTF8` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.05|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Most + + +|`Test::Most` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.38|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Needs + + +|`Test::Needs` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.002010|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::NoWarnings + + +|`Test::NoWarnings` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.06|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Object + + +|`Test::Object` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.08|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Output + + +|`Test::Output` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.034|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.033|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Pod + + +|`Test::Pod` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.52|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Requires + + +|`Test::Requires` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.11|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::RequiresInternet + + +|`Test::RequiresInternet` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.05|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Simple + + +|`Test::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.302204|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.302199|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.302195|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::SubCalls + + +|`Test::SubCalls` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.10|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Sys::Info + + +|`Test::Sys::Info` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.23|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Version + + +|`Test::Version` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.09|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Warn + + +|`Test::Warn` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.37|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Warnings + + +|`Test::Warnings` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.033|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.031|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::Without::Module + + +|`Test::Without::Module` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.23|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.22|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.21|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Test::YAML + + +|`Test::YAML` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.07|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::Aligner + + +|`Text::Aligner` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.16|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::Balanced + + +|`Text::Balanced` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.06|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::CSV + + +|`Text::CSV` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.04|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.02|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::CSV_XS + + +|`Text::CSV_XS` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.57|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|1.55|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.50|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::Diff + + +|`Text::Diff` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.45|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::Format + + +|`Text::Format` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.63|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.62|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::Glob + + +|`Text::Glob` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.11|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::Iconv + + +|`Text::Iconv` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.7|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::Soundex + + +|`Text::Soundex` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.05|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::Table + + +|`Text::Table` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.135|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::Table::Manifold + + +|`Text::Table::Manifold` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.03|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Text::Template + + +|`Text::Template` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.61|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Throwable + + +|`Throwable` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.001|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Tie::Function + + +|`Tie::Function` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.02|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Tie::IxHash + + +|`Tie::IxHash` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.23|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Time::Local + + +|`Time::Local` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.35|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Time::Piece + + +|`Time::Piece` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.3401|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Time::Piece::MySQL + + +|`Time::Piece::MySQL` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.06|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Tree::DAG_Node + + +|`Tree::DAG_Node` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.32|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Try::Tiny + + +|`Try::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.32|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.31|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Type::Tiny + + +|`Type::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.006000|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|2.004000|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Types::Serialiser + + +|`Types::Serialiser` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.01|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Unicode::EastAsianWidth + + +|`Unicode::EastAsianWidth` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|12.0|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Unicode::LineBreak + + +|`Unicode::LineBreak` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2019.001|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### UNIVERSAL::moniker + + +|`UNIVERSAL::moniker` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.08|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Unix::Processors + + +|`Unix::Processors` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.046|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### URI + + +|`URI` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|5.31|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|5.28|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|5.19|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Variable::Magic + + +|`Variable::Magic` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.64|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.63|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### version + + +|`version` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.9933|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`| +|0.9932|`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|0.9929|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### Want + + +|`Want` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.29|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### WWW::RobotRules + + +|`WWW::RobotRules` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|6.02|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::Bare + + +|`XML::Bare` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.53|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::DOM + + +|`XML::DOM` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.46|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::Filter::BufferText + + +|`XML::Filter::BufferText` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.01|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::NamespaceSupport + + +|`XML::NamespaceSupport` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.12|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::Parser + + +|`XML::Parser` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.47|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|2.46|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::RegExp + + +|`XML::RegExp` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.04|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::SAX + + +|`XML::SAX` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.02|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::SAX::Base + + +|`XML::SAX::Base` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.09|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::SAX::Expat + + +|`XML::SAX::Expat` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.51|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::SAX::Writer + + +|`XML::SAX::Writer` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.57|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::Simple + + +|`XML::Simple` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.25|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::Tiny + + +|`XML::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|2.07|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::Twig + + +|`XML::Twig` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|3.52|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::Writer + + +|`XML::Writer` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.900|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| + +### XML::XPath -https://www.perl.org/ -# Available modules +|`XML::XPath` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.48|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| -The overview below shows which Perl-bundle-CPAN installations are available per target architecture in EESSI, ordered based on software version (new to old). +### XSLoader -To start using Perl-bundle-CPAN, load one of these modules using a `module load` command like: -```shell -module load Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0 -``` +|`XSLoader` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|0.24|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### YAML -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`YAML` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.31|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`| +|1.30|`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| -### Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0 +### YAML::Tiny -This is a list of extensions included in the module: -Algorithm::Dependency-1.112, Algorithm::Diff-1.201, aliased-0.34, AnyEvent-7.17, App::Cmd-0.335, App::cpanminus-1.7046, AppConfig-1.71, Archive::Extract-0.88, Array::Transpose-0.06, Array::Utils-0.5, Authen::NTLM-1.09, Authen::SASL-2.16, AutoLoader-5.74, B::COW-0.007, B::Hooks::EndOfScope-0.26, B::Lint-1.20, boolean-0.46, Business::ISBN-3.008, Business::ISBN::Data-20230516.001, Canary::Stability-2013, Capture::Tiny-0.48, Carp::Clan-6.08, Carp::Heavy-1.50, CGI-4.57, Class::Accessor-0.51, Class::Data::Inheritable-0.09, Class::DBI-v3.0.17, Class::DBI::SQLite-0.11, Class::Inspector-1.36, Class::ISA-0.36, Class::Load-0.25, Class::Load::XS-0.10, Class::Method::Modifiers-2.15, Class::Singleton-1.6, Class::Tiny-1.008, Class::Trigger-0.15, Class::XSAccessor-1.19, Clone-0.46, Clone::Choose-0.010, common::sense-3.75, Compress::Raw::Zlib-2.204, Config::General-2.65, Config::INI-0.029, Config::MVP-2.200013, Config::MVP::Reader::INI-2.101465, Config::Simple-4.58, Config::Tiny-2.29, Const::Exporter-1.2.2, Const::Fast-0.014, CPAN::Meta::Check-0.017, CPAN::Uploader-0.103018, CPANPLUS-0.9914, Crypt::DES-2.07, Crypt::Rijndael-1.16, Cwd-3.75, Cwd::Guard-0.05, Data::Dump-1.25, Data::Dumper::Concise-2.023, Data::Grove-0.08, Data::OptList-0.114, Data::Section-0.200008, Data::Section::Simple-0.07, Data::Stag-0.14, Data::Types-0.17, Data::UUID-1.226, Date::Handler-1.2, Date::Language-2.33, DateTime-1.59, DateTime::Locale-1.38, DateTime::TimeZone-2.60, DateTime::Tiny-1.07, DBD::CSV-0.60, DBD::SQLite-1.72, DBI-1.643, DBIx::Admin::CreateTable-2.11, DBIx::Admin::DSNManager-2.02, DBIx::Admin::TableInfo-3.04, DBIx::ContextualFetch-1.03, DBIx::Simple-1.37, Devel::CheckCompiler-0.07, Devel::CheckLib-1.16, Devel::Cycle-1.12, Devel::FindPerl-0.016, Devel::GlobalDestruction-0.14, Devel::OverloadInfo-0.007, Devel::Size-0.83, Devel::StackTrace-2.04, Digest::HMAC-1.04, Digest::MD5::File-0.08, Digest::SHA1-2.13, Dist::CheckConflicts-0.11, Dist::Zilla-6.030, Email::Date::Format-1.008, Encode-3.19, Encode::Locale-1.05, Error-0.17029, Eval::Closure-0.14, Exception::Class-1.45, Expect-1.35, Exporter::Declare-0.114, Exporter::Tiny-1.006002, ExtUtils::CBuilder-0.280236, ExtUtils::Config-0.008, ExtUtils::Constant-0.25, ExtUtils::CppGuess-0.26, ExtUtils::Helpers-0.026, ExtUtils::InstallPaths-0.012, ExtUtils::MakeMaker-7.70, ExtUtils::ParseXS-3.44, Fennec::Lite-0.004, File::CheckTree-4.42, File::Copy::Recursive-0.45, File::Copy::Recursive::Reduced-0.006, File::Find::Rule-0.34, File::Find::Rule::Perl-1.16, File::Grep-0.02, File::HomeDir-1.006, File::Listing-6.15, File::Next-1.18, File::pushd-1.016, File::Remove-1.61, File::ShareDir-1.118, File::ShareDir::Install-0.14, File::Slurp-9999.32, File::Slurp::Tiny-0.004, File::Slurper-0.014, File::Temp-0.2311, File::Which-1.27, Font::TTF-1.06, Getopt::Long::Descriptive-0.111, Git-0.42, GO-0.04, GO::Utils-0.15, Graph-0.9726, Graph::ReadWrite-2.10, Hash::Merge-0.302, Hash::Objectify-0.008, Heap-0.80, Hook::LexWrap-0.26, HTML::Entities::Interpolate-1.10, HTML::Form-6.11, HTML::Parser-3.81, HTML::Tagset-3.20, HTML::Template-2.97, HTML::Tree-5.07, HTTP::CookieJar-0.014, HTTP::Cookies-6.10, HTTP::Daemon-6.16, HTTP::Date-6.05, HTTP::Message-6.44, HTTP::Negotiate-6.01, HTTP::Tiny-0.082, if-0.0608, Ima::DBI-0.35, Import::Into-1.002005, Importer-0.026, Inline-0.86, IO::Compress::Zip-2.204, IO::HTML-1.004, IO::Socket::SSL-2.083, IO::String-1.08, IO::Stringy-2.113, IO::TieCombine-1.005, IO::Tty-1.17, IO::Tty-1.17, IPC::Cmd-1.04, IPC::Run-20220807.0, IPC::Run3-0.048, IPC::System::Simple-1.30, JSON-4.10, JSON::MaybeXS-1.004005, JSON::XS-4.03, Lingua::EN::PluralToSingular-0.21, List::AllUtils-0.19, List::MoreUtils-0.430, List::MoreUtils::XS-0.430, List::SomeUtils-0.59, List::UtilsBy-0.12, local::lib-2.000029, Locale::Maketext::Simple-0.21, Log::Dispatch-2.71, Log::Dispatch::Array-1.005, Log::Dispatchouli-3.002, Log::Handler-0.90, Log::Log4perl-1.57, Log::Message-0.08, Log::Message::Simple-0.10, Log::Report-1.34, Log::Report::Optional-1.07, Logger::Simple-2.0, LWP::MediaTypes-6.04, LWP::Protocol::https-6.10, LWP::Simple-6.70, Mail::Util-2.21, Math::Bezier-0.01, Math::CDF-0.1, Math::Round-0.07, Math::Utils-1.14, Math::VecStat-0.08, MCE::Mutex-1.884, Meta::Builder-0.004, MIME::Base64-3.16, MIME::Charset-v1.013.1, MIME::Lite-3.033, MIME::Types-2.24, Mixin::Linewise::Readers-0.111, Mock::Quick-1.111, Module::Build-0.4234, Module::Build::Tiny-0.045, Module::Build::XSUtil-0.19, Module::CoreList-5.20230423, Module::Implementation-0.09, Module::Install-1.21, Module::Load-0.36, Module::Load::Conditional-0.74, Module::Metadata-1.000038, Module::Path-0.19, Module::Path-0.19, Module::Pluggable-5.2, Module::Runtime-0.016, Module::Runtime::Conflicts-0.003, Moo-2.005005, Moose-2.2203, MooseX::LazyRequire-0.11, MooseX::OneArgNew-0.007, MooseX::Role::Parameterized-1.11, MooseX::SetOnce-0.203, MooseX::Types-0.50, MooseX::Types::Perl-0.101344, Mouse-v2.5.10, Mozilla::CA-20221114, MRO::Compat-0.15, namespace::autoclean-0.29, namespace::clean-0.27, Net::Domain-3.15, Net::HTTP-6.22, Net::SMTP::SSL-1.04, Net::SNMP-v6.0.1, Net::SSLeay-1.92, Number::Compare-0.03, Number::Format-1.75, Object::Accessor-0.48, Object::InsideOut-4.05, Object::InsideOut-4.05, Package::Constants-0.06, Package::DeprecationManager-0.18, Package::Stash-0.40, Package::Stash::XS-0.30, PadWalker-2.5, Parallel::ForkManager-2.02, Params::Check-0.38, Params::Util-1.102, Params::Validate-1.31, Params::ValidationCompiler-0.31, parent-0.241, Parse::RecDescent-1.967015, Parse::Yapp-1.21, Path::Tiny-0.144, PDF::API2-2.044, Perl::OSType-1.010, Perl::PrereqScanner-1.100, PerlIO::utf8_strict-0.010, Pod::Elemental-0.103006, Pod::Escapes-1.07, Pod::Eventual-0.094003, Pod::LaTeX-0.61, Pod::Man-5.01, Pod::Parser-1.66, Pod::Plainer-1.04, Pod::POM-2.01, Pod::Simple-3.45, Pod::Weaver-4.019, PPI-1.276, Readonly-2.05, Ref::Util-0.204, Regexp::Common-2017060201, Role::HasMessage-0.007, Role::Identifiable::HasIdent-0.009, Role::Tiny-2.002004, Scalar::Util-1.63, Scalar::Util::Numeric-0.40, Scope::Guard-0.21, Set::Array-0.30, Set::IntervalTree-0.12, Set::IntSpan-1.19, Set::IntSpan::Fast-1.15, Set::Object-1.42, Set::Scalar-1.29, Shell-0.73, Socket-2.036, Software::License-0.104003, Specio-0.48, Spiffy-0.46, SQL::Abstract-2.000001, SQL::Statement-1.414, Statistics::Basic-1.6611, Statistics::Descriptive-3.0800, Storable-3.25, strictures-2.000006, String::Errf-0.009, String::Flogger-1.101246, String::Formatter-1.235, String::Print-0.94, String::RewritePrefix-0.009, String::Truncate-1.100603, String::TtyLength-0.03, Sub::Exporter-0.989, Sub::Exporter::ForMethods-0.100055, Sub::Exporter::GlobExporter-0.006, Sub::Exporter::Progressive-0.001013, Sub::Identify-0.14, Sub::Info-0.002, Sub::Install-0.929, Sub::Name-0.27, Sub::Quote-2.006008, Sub::Uplevel-0.2800, SVG-2.87, Switch-2.17, Sys::Info-0.7811, Sys::Info::Base-0.7807, Sys::Info::Driver::Linux-0.7905, Sys::Info::Driver::Unknown-0.79, Template-3.101, Template::Plugin::Number::Format-1.06, Term::Encoding-0.03, Term::ReadKey-2.38, Term::ReadLine::Gnu-1.45, Term::Table-0.016, Term::UI-0.50, Test-1.26, Test2::Plugin::NoWarnings-0.09, Test2::Require::Module-0.000155, Test::Base-0.89, Test::CheckDeps-0.010, Test::ClassAPI-1.07, Test::CleanNamespaces-0.24, Test::Deep-1.204, Test::Differences-0.69, Test::Exception-0.43, Test::FailWarnings-0.008, Test::Fatal-0.017, Test::File-1.993, Test::File::ShareDir::Dist-1.001002, Test::Harness-3.44, Test::LeakTrace-0.17, Test::Memory::Cycle-1.06, Test::More::UTF8-0.05, Test::Most-0.38, Test::Needs-0.002010, Test::NoWarnings-1.06, Test::Object-0.08, Test::Output-1.033, Test::Pod-1.52, Test::Requires-0.11, Test::RequiresInternet-0.05, Test::Simple-1.302195, Test::SubCalls-1.10, Test::Sys::Info-0.23, Test::Version-2.09, Test::Warn-0.37, Test::Warnings-0.031, Test::Without::Module-0.21, Test::YAML-1.07, Text::Aligner-0.16, Text::Balanced-2.06, Text::CSV-2.02, Text::CSV_XS-1.50, Text::Diff-1.45, Text::Format-0.62, Text::Glob-0.11, Text::Iconv-1.7, Text::Soundex-3.05, Text::Table-1.135, Text::Table::Manifold-1.03, Text::Template-1.61, Throwable-1.001, Tie::Function-0.02, Tie::IxHash-1.23, Time::Local-1.35, Time::Piece-1.3401, Time::Piece::MySQL-0.06, Tree::DAG_Node-1.32, Try::Tiny-0.31, Type::Tiny-2.004000, Types::Serialiser-1.01, Types::Serialiser-1.01, Unicode::EastAsianWidth-12.0, Unicode::LineBreak-2019.001, UNIVERSAL::moniker-0.08, Unix::Processors-2.046, Unix::Processors-2.046, URI-5.19, Variable::Magic-0.63, version-0.9929, Want-0.29, WWW::RobotRules-6.02, XML::Bare-0.53, XML::DOM-1.46, XML::Filter::BufferText-1.01, XML::NamespaceSupport-1.12, XML::Parser-2.46, XML::RegExp-0.04, XML::SAX-1.02, XML::SAX::Base-1.09, XML::SAX::Expat-0.51, XML::SAX::Writer-0.57, XML::Simple-2.25, XML::Tiny-2.07, XML::Twig-3.52, XML::Writer-0.900, XML::XPath-1.48, XSLoader-0.24, YAML-1.30, YAML::Tiny-1.74 \ No newline at end of file +|`YAML::Tiny` version|Perl-bundle-CPAN modules that include it| +| --- | --- | +|1.74|`Perl-bundle-CPAN/5.40.0-GCCcore-14.2.0`
`Perl-bundle-CPAN/5.38.2-GCCcore-13.3.0`
`Perl-bundle-CPAN/5.36.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Perl.md b/docs/available_software/detail/Perl.md index ac8b7359f3..bd1335f5c4 100644 --- a/docs/available_software/detail/Perl.md +++ b/docs/available_software/detail/Perl.md @@ -1,12 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Larry Wall's Practical Extraction and Report LanguageIncludes a small - selection of extra CPAN packages for core functionality. + description: 'Larry Wall''s Practical Extraction and Report Language + + + This is a minimal build without any modules. Should only be used for build dependencies. + + ' license: Not confirmed name: Perl offers: @@ -25,53 +27,2728 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Perl/5.36.0-GCCcore-12.2.0'', ''Perl/5.36.0-GCCcore-12.2.0-minimal'', - ''Perl/5.36.1-GCCcore-12.3.0'', ''Perl/5.38.0-GCCcore-13.2.0'']' + softwareVersion: '[''5.40.2'', ''5.40.0'', ''5.38.2'', ''5.38.0'', ''5.36.1'', ''5.36.0'']' url: https://www.perl.org/ --- +# Perl + + +Larry Wall's Practical Extraction and Report Language + +This is a minimal build without any modules. Should only be used for build dependencies. + + +homepage: [https://www.perl.org/](https://www.perl.org/) + +## Available installations + + +|Perl version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.40.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Perl/5.40.2-GCCcore-14.3.0`| +|5.40.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Perl/5.40.0-GCCcore-14.2.0`| +|5.38.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Perl/5.38.2-GCCcore-13.3.0`| +|5.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Perl/5.38.0-GCCcore-13.2.0`| +|5.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Perl/5.38.0`| +|5.36.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Perl/5.36.1-GCCcore-12.3.0`| +|5.36.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Perl/5.36.0-GCCcore-12.2.0-minimal`| +|5.36.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Perl/5.36.0-GCCcore-12.2.0`| + +## Extensions + +Overview of extensions included in Perl installations + + +### Algorithm::Dependency + + +|`Algorithm::Dependency` version|Perl modules that include it| +| --- | --- | +|1.112|`Perl/5.36.0-GCCcore-12.2.0`| + +### Algorithm::Diff + + +|`Algorithm::Diff` version|Perl modules that include it| +| --- | --- | +|1.201|`Perl/5.36.0-GCCcore-12.2.0`| + +### aliased + + +|`aliased` version|Perl modules that include it| +| --- | --- | +|0.34|`Perl/5.36.0-GCCcore-12.2.0`| + +### AnyEvent + + +|`AnyEvent` version|Perl modules that include it| +| --- | --- | +|7.17|`Perl/5.36.0-GCCcore-12.2.0`| + +### App::Cmd + + +|`App::Cmd` version|Perl modules that include it| +| --- | --- | +|0.334|`Perl/5.36.0-GCCcore-12.2.0`| + +### App::cpanminus + + +|`App::cpanminus` version|Perl modules that include it| +| --- | --- | +|1.7046|`Perl/5.36.0-GCCcore-12.2.0`| + +### AppConfig + + +|`AppConfig` version|Perl modules that include it| +| --- | --- | +|1.71|`Perl/5.36.0-GCCcore-12.2.0`| + +### Archive::Extract + + +|`Archive::Extract` version|Perl modules that include it| +| --- | --- | +|0.88|`Perl/5.36.0-GCCcore-12.2.0`| + +### Array::Transpose + + +|`Array::Transpose` version|Perl modules that include it| +| --- | --- | +|0.06|`Perl/5.36.0-GCCcore-12.2.0`| + +### Array::Utils + + +|`Array::Utils` version|Perl modules that include it| +| --- | --- | +|0.5|`Perl/5.36.0-GCCcore-12.2.0`| + +### Authen::NTLM + + +|`Authen::NTLM` version|Perl modules that include it| +| --- | --- | +|1.09|`Perl/5.36.0-GCCcore-12.2.0`| + +### Authen::SASL + + +|`Authen::SASL` version|Perl modules that include it| +| --- | --- | +|2.16|`Perl/5.36.0-GCCcore-12.2.0`| + +### AutoLoader + + +|`AutoLoader` version|Perl modules that include it| +| --- | --- | +|5.74|`Perl/5.36.0-GCCcore-12.2.0`| + +### B::Hooks::EndOfScope + + +|`B::Hooks::EndOfScope` version|Perl modules that include it| +| --- | --- | +|0.26|`Perl/5.36.0-GCCcore-12.2.0`| + +### B::Lint + + +|`B::Lint` version|Perl modules that include it| +| --- | --- | +|1.20|`Perl/5.36.0-GCCcore-12.2.0`| + +### boolean + + +|`boolean` version|Perl modules that include it| +| --- | --- | +|0.46|`Perl/5.36.0-GCCcore-12.2.0`| + +### Business::ISBN + + +|`Business::ISBN` version|Perl modules that include it| +| --- | --- | +|3.007|`Perl/5.36.0-GCCcore-12.2.0`| + +### Business::ISBN::Data + + +|`Business::ISBN::Data` version|Perl modules that include it| +| --- | --- | +|20210112.006|`Perl/5.36.0-GCCcore-12.2.0`| + +### Canary::Stability + + +|`Canary::Stability` version|Perl modules that include it| +| --- | --- | +|2013|`Perl/5.36.0-GCCcore-12.2.0`| + +### Capture::Tiny + + +|`Capture::Tiny` version|Perl modules that include it| +| --- | --- | +|0.48|`Perl/5.36.0-GCCcore-12.2.0`| + +### Carp + + +|`Carp` version|Perl modules that include it| +| --- | --- | +|1.50|`Perl/5.38.2-GCCcore-13.3.0`
`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`
`Perl/5.36.0-GCCcore-12.2.0`| + +### Carp::Clan + + +|`Carp::Clan` version|Perl modules that include it| +| --- | --- | +|6.08|`Perl/5.36.0-GCCcore-12.2.0`| + +### Carp::Heavy + + +|`Carp::Heavy` version|Perl modules that include it| +| --- | --- | +|1.50|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::Accessor + + +|`Class::Accessor` version|Perl modules that include it| +| --- | --- | +|0.51|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::Data::Inheritable + + +|`Class::Data::Inheritable` version|Perl modules that include it| +| --- | --- | +|0.09|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::DBI + + +|`Class::DBI` version|Perl modules that include it| +| --- | --- | +|v3.0.17|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::DBI::SQLite + + +|`Class::DBI::SQLite` version|Perl modules that include it| +| --- | --- | +|0.11|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::Inspector + + +|`Class::Inspector` version|Perl modules that include it| +| --- | --- | +|1.36|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::ISA + + +|`Class::ISA` version|Perl modules that include it| +| --- | --- | +|0.36|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::Load + + +|`Class::Load` version|Perl modules that include it| +| --- | --- | +|0.25|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::Load::XS + + +|`Class::Load::XS` version|Perl modules that include it| +| --- | --- | +|0.10|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::Singleton + + +|`Class::Singleton` version|Perl modules that include it| +| --- | --- | +|1.6|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::Tiny + + +|`Class::Tiny` version|Perl modules that include it| +| --- | --- | +|1.008|`Perl/5.36.0-GCCcore-12.2.0`| + +### Class::Trigger + + +|`Class::Trigger` version|Perl modules that include it| +| --- | --- | +|0.15|`Perl/5.36.0-GCCcore-12.2.0`| + +### Clone + + +|`Clone` version|Perl modules that include it| +| --- | --- | +|0.45|`Perl/5.36.0-GCCcore-12.2.0`| + +### Clone::Choose + + +|`Clone::Choose` version|Perl modules that include it| +| --- | --- | +|0.010|`Perl/5.36.0-GCCcore-12.2.0`| + +### common::sense + + +|`common::sense` version|Perl modules that include it| +| --- | --- | +|3.75|`Perl/5.36.0-GCCcore-12.2.0`| + +### Config::General + + +|`Config::General` version|Perl modules that include it| +| --- | --- | +|2.65|`Perl/5.36.0-GCCcore-12.2.0`| + +### Config::INI + + +|`Config::INI` version|Perl modules that include it| +| --- | --- | +|0.027|`Perl/5.36.0-GCCcore-12.2.0`| + +### Config::MVP + + +|`Config::MVP` version|Perl modules that include it| +| --- | --- | +|2.200012|`Perl/5.36.0-GCCcore-12.2.0`| + +### Config::Simple + + +|`Config::Simple` version|Perl modules that include it| +| --- | --- | +|4.58|`Perl/5.36.0-GCCcore-12.2.0`| + +### Config::Tiny + + +|`Config::Tiny` version|Perl modules that include it| +| --- | --- | +|2.28|`Perl/5.36.0-GCCcore-12.2.0`| + +### constant + + +|`constant` version|Perl modules that include it| +| --- | --- | +|1.33|`Perl/5.38.2-GCCcore-13.3.0`
`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`
`Perl/5.36.0-GCCcore-12.2.0`| + +### CPAN::Meta::Check + + +|`CPAN::Meta::Check` version|Perl modules that include it| +| --- | --- | +|0.014|`Perl/5.36.0-GCCcore-12.2.0`| + +### CPANPLUS + + +|`CPANPLUS` version|Perl modules that include it| +| --- | --- | +|0.9914|`Perl/5.36.0-GCCcore-12.2.0`| + +### Crypt::DES + + +|`Crypt::DES` version|Perl modules that include it| +| --- | --- | +|2.07|`Perl/5.36.0-GCCcore-12.2.0`| + +### Crypt::Rijndael + + +|`Crypt::Rijndael` version|Perl modules that include it| +| --- | --- | +|1.16|`Perl/5.36.0-GCCcore-12.2.0`| + +### Cwd + + +|`Cwd` version|Perl modules that include it| +| --- | --- | +|3.75|`Perl/5.36.0-GCCcore-12.2.0`| + +### Cwd::Guard + + +|`Cwd::Guard` version|Perl modules that include it| +| --- | --- | +|0.05|`Perl/5.36.0-GCCcore-12.2.0`| + +### Data::Dump + + +|`Data::Dump` version|Perl modules that include it| +| --- | --- | +|1.25|`Perl/5.36.0-GCCcore-12.2.0`| + +### Data::Dumper + + +|`Data::Dumper` version|Perl modules that include it| +| --- | --- | +|2.183|`Perl/5.38.2-GCCcore-13.3.0`
`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`
`Perl/5.36.0-GCCcore-12.2.0`| + +### Data::Dumper::Concise + + +|`Data::Dumper::Concise` version|Perl modules that include it| +| --- | --- | +|2.023|`Perl/5.36.0-GCCcore-12.2.0`| + +### Data::Grove + + +|`Data::Grove` version|Perl modules that include it| +| --- | --- | +|0.08|`Perl/5.36.0-GCCcore-12.2.0`| + +### Data::OptList + + +|`Data::OptList` version|Perl modules that include it| +| --- | --- | +|0.112|`Perl/5.36.0-GCCcore-12.2.0`| + +### Data::Section + + +|`Data::Section` version|Perl modules that include it| +| --- | --- | +|0.200007|`Perl/5.36.0-GCCcore-12.2.0`| + +### Data::Section::Simple + + +|`Data::Section::Simple` version|Perl modules that include it| +| --- | --- | +|0.07|`Perl/5.36.0-GCCcore-12.2.0`| + +### Data::Stag + + +|`Data::Stag` version|Perl modules that include it| +| --- | --- | +|0.14|`Perl/5.36.0-GCCcore-12.2.0`| + +### Data::Types + + +|`Data::Types` version|Perl modules that include it| +| --- | --- | +|0.17|`Perl/5.36.0-GCCcore-12.2.0`| + +### Data::UUID + + +|`Data::UUID` version|Perl modules that include it| +| --- | --- | +|1.226|`Perl/5.36.0-GCCcore-12.2.0`| + +### Date::Handler + + +|`Date::Handler` version|Perl modules that include it| +| --- | --- | +|1.2|`Perl/5.36.0-GCCcore-12.2.0`| + +### Date::Language + + +|`Date::Language` version|Perl modules that include it| +| --- | --- | +|2.33|`Perl/5.36.0-GCCcore-12.2.0`| + +### DateTime + + +|`DateTime` version|Perl modules that include it| +| --- | --- | +|1.58|`Perl/5.36.0-GCCcore-12.2.0`| + +### DateTime::Locale + + +|`DateTime::Locale` version|Perl modules that include it| +| --- | --- | +|1.36|`Perl/5.36.0-GCCcore-12.2.0`| + +### DateTime::TimeZone + + +|`DateTime::TimeZone` version|Perl modules that include it| +| --- | --- | +|2.53|`Perl/5.36.0-GCCcore-12.2.0`| + +### DateTime::Tiny + + +|`DateTime::Tiny` version|Perl modules that include it| +| --- | --- | +|1.07|`Perl/5.36.0-GCCcore-12.2.0`| + +### DBD::CSV + + +|`DBD::CSV` version|Perl modules that include it| +| --- | --- | +|0.59|`Perl/5.36.0-GCCcore-12.2.0`| + +### DBD::SQLite + + +|`DBD::SQLite` version|Perl modules that include it| +| --- | --- | +|1.70|`Perl/5.36.0-GCCcore-12.2.0`| + +### DBI + + +|`DBI` version|Perl modules that include it| +| --- | --- | +|1.643|`Perl/5.36.0-GCCcore-12.2.0`| + +### DBIx::Admin::TableInfo + + +|`DBIx::Admin::TableInfo` version|Perl modules that include it| +| --- | --- | +|3.04|`Perl/5.36.0-GCCcore-12.2.0`| + +### DBIx::ContextualFetch + + +|`DBIx::ContextualFetch` version|Perl modules that include it| +| --- | --- | +|1.03|`Perl/5.36.0-GCCcore-12.2.0`| + +### DBIx::Simple + + +|`DBIx::Simple` version|Perl modules that include it| +| --- | --- | +|1.37|`Perl/5.36.0-GCCcore-12.2.0`| + +### Devel::CheckCompiler + + +|`Devel::CheckCompiler` version|Perl modules that include it| +| --- | --- | +|0.07|`Perl/5.36.0-GCCcore-12.2.0`| + +### Devel::CheckLib + + +|`Devel::CheckLib` version|Perl modules that include it| +| --- | --- | +|1.16|`Perl/5.36.0-GCCcore-12.2.0`| + +### Devel::Cycle + + +|`Devel::Cycle` version|Perl modules that include it| +| --- | --- | +|1.12|`Perl/5.36.0-GCCcore-12.2.0`| + +### Devel::GlobalDestruction + + +|`Devel::GlobalDestruction` version|Perl modules that include it| +| --- | --- | +|0.14|`Perl/5.36.0-GCCcore-12.2.0`| + +### Devel::OverloadInfo + + +|`Devel::OverloadInfo` version|Perl modules that include it| +| --- | --- | +|0.007|`Perl/5.36.0-GCCcore-12.2.0`| + +### Devel::Size + + +|`Devel::Size` version|Perl modules that include it| +| --- | --- | +|0.83|`Perl/5.36.0-GCCcore-12.2.0`| + +### Devel::StackTrace + + +|`Devel::StackTrace` version|Perl modules that include it| +| --- | --- | +|2.04|`Perl/5.36.0-GCCcore-12.2.0`| + +### Digest::HMAC + + +|`Digest::HMAC` version|Perl modules that include it| +| --- | --- | +|1.04|`Perl/5.36.0-GCCcore-12.2.0`| + +### Digest::MD5::File + + +|`Digest::MD5::File` version|Perl modules that include it| +| --- | --- | +|0.08|`Perl/5.36.0-GCCcore-12.2.0`| + +### Digest::SHA1 + + +|`Digest::SHA1` version|Perl modules that include it| +| --- | --- | +|2.13|`Perl/5.36.0-GCCcore-12.2.0`| + +### Dist::CheckConflicts + + +|`Dist::CheckConflicts` version|Perl modules that include it| +| --- | --- | +|0.11|`Perl/5.36.0-GCCcore-12.2.0`| + +### Dist::Zilla + + +|`Dist::Zilla` version|Perl modules that include it| +| --- | --- | +|6.025|`Perl/5.36.0-GCCcore-12.2.0`| + +### Email::Date::Format + + +|`Email::Date::Format` version|Perl modules that include it| +| --- | --- | +|1.005|`Perl/5.36.0-GCCcore-12.2.0`| + +### Encode + + +|`Encode` version|Perl modules that include it| +| --- | --- | +|3.19|`Perl/5.36.0-GCCcore-12.2.0`| + +### Encode::Locale + + +|`Encode::Locale` version|Perl modules that include it| +| --- | --- | +|1.05|`Perl/5.36.0-GCCcore-12.2.0`| + +### Error + + +|`Error` version|Perl modules that include it| +| --- | --- | +|0.17029|`Perl/5.36.0-GCCcore-12.2.0`| + +### Eval::Closure + + +|`Eval::Closure` version|Perl modules that include it| +| --- | --- | +|0.14|`Perl/5.36.0-GCCcore-12.2.0`| + +### Exception::Class + + +|`Exception::Class` version|Perl modules that include it| +| --- | --- | +|1.45|`Perl/5.36.0-GCCcore-12.2.0`| + +### Expect + + +|`Expect` version|Perl modules that include it| +| --- | --- | +|1.35|`Perl/5.36.0-GCCcore-12.2.0`| + +### Exporter + + +|`Exporter` version|Perl modules that include it| +| --- | --- | +|5.78|`Perl/5.38.2-GCCcore-13.3.0`| +|5.77|`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`| +|5.74|`Perl/5.36.0-GCCcore-12.2.0`| + +### Exporter::Declare + + +|`Exporter::Declare` version|Perl modules that include it| +| --- | --- | +|0.114|`Perl/5.36.0-GCCcore-12.2.0`| + +### Exporter::Tiny + + +|`Exporter::Tiny` version|Perl modules that include it| +| --- | --- | +|1.004000|`Perl/5.36.0-GCCcore-12.2.0`| + +### ExtUtils::CBuilder + + +|`ExtUtils::CBuilder` version|Perl modules that include it| +| --- | --- | +|0.280236|`Perl/5.36.0-GCCcore-12.2.0`| + +### ExtUtils::Config + + +|`ExtUtils::Config` version|Perl modules that include it| +| --- | --- | +|0.008|`Perl/5.36.0-GCCcore-12.2.0`| + +### ExtUtils::Constant + + +|`ExtUtils::Constant` version|Perl modules that include it| +| --- | --- | +|0.25|`Perl/5.36.0-GCCcore-12.2.0`| + +### ExtUtils::CppGuess + + +|`ExtUtils::CppGuess` version|Perl modules that include it| +| --- | --- | +|0.26|`Perl/5.36.0-GCCcore-12.2.0`| + +### ExtUtils::Helpers + + +|`ExtUtils::Helpers` version|Perl modules that include it| +| --- | --- | +|0.026|`Perl/5.36.0-GCCcore-12.2.0`| + +### ExtUtils::InstallPaths + + +|`ExtUtils::InstallPaths` version|Perl modules that include it| +| --- | --- | +|0.012|`Perl/5.36.0-GCCcore-12.2.0`| + +### ExtUtils::MakeMaker + + +|`ExtUtils::MakeMaker` version|Perl modules that include it| +| --- | --- | +|7.64|`Perl/5.36.0-GCCcore-12.2.0`| + +### ExtUtils::ParseXS + + +|`ExtUtils::ParseXS` version|Perl modules that include it| +| --- | --- | +|3.44|`Perl/5.36.0-GCCcore-12.2.0`| + +### Fennec::Lite + + +|`Fennec::Lite` version|Perl modules that include it| +| --- | --- | +|0.004|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::CheckTree + + +|`File::CheckTree` version|Perl modules that include it| +| --- | --- | +|4.42|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Copy::Recursive + + +|`File::Copy::Recursive` version|Perl modules that include it| +| --- | --- | +|0.45|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Copy::Recursive::Reduced + + +|`File::Copy::Recursive::Reduced` version|Perl modules that include it| +| --- | --- | +|0.006|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Find::Rule + + +|`File::Find::Rule` version|Perl modules that include it| +| --- | --- | +|0.34|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Find::Rule::Perl + + +|`File::Find::Rule::Perl` version|Perl modules that include it| +| --- | --- | +|1.16|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Grep + + +|`File::Grep` version|Perl modules that include it| +| --- | --- | +|0.02|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::HomeDir + + +|`File::HomeDir` version|Perl modules that include it| +| --- | --- | +|1.006|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Listing + + +|`File::Listing` version|Perl modules that include it| +| --- | --- | +|6.15|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Next + + +|`File::Next` version|Perl modules that include it| +| --- | --- | +|1.18|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Path + + +|`File::Path` version|Perl modules that include it| +| --- | --- | +|2.18|`Perl/5.40.2-GCCcore-14.3.0`
`Perl/5.40.0-GCCcore-14.2.0`
`Perl/5.38.2-GCCcore-13.3.0`
`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`
`Perl/5.36.0-GCCcore-12.2.0`| + +### File::pushd + + +|`File::pushd` version|Perl modules that include it| +| --- | --- | +|1.016|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Remove + + +|`File::Remove` version|Perl modules that include it| +| --- | --- | +|1.61|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::ShareDir + + +|`File::ShareDir` version|Perl modules that include it| +| --- | --- | +|1.118|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::ShareDir::Install + + +|`File::ShareDir::Install` version|Perl modules that include it| +| --- | --- | +|0.14|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Slurp + + +|`File::Slurp` version|Perl modules that include it| +| --- | --- | +|9999.32|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Slurp::Tiny + + +|`File::Slurp::Tiny` version|Perl modules that include it| +| --- | --- | +|0.004|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Slurper + + +|`File::Slurper` version|Perl modules that include it| +| --- | --- | +|0.013|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Spec + + +|`File::Spec` version|Perl modules that include it| +| --- | --- | +|3.75|`Perl/5.40.2-GCCcore-14.3.0`
`Perl/5.40.0-GCCcore-14.2.0`
`Perl/5.38.2-GCCcore-13.3.0`
`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`
`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Temp + + +|`File::Temp` version|Perl modules that include it| +| --- | --- | +|0.2311|`Perl/5.36.0-GCCcore-12.2.0`| + +### File::Which + + +|`File::Which` version|Perl modules that include it| +| --- | --- | +|1.27|`Perl/5.36.0-GCCcore-12.2.0`| + +### Font::TTF + + +|`Font::TTF` version|Perl modules that include it| +| --- | --- | +|1.06|`Perl/5.36.0-GCCcore-12.2.0`| + +### Getopt::Long + + +|`Getopt::Long` version|Perl modules that include it| +| --- | --- | +|2.58|`Perl/5.40.2-GCCcore-14.3.0`
`Perl/5.40.0-GCCcore-14.2.0`| +|2.57|`Perl/5.38.2-GCCcore-13.3.0`| +|2.54|`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`| +|2.52|`Perl/5.36.0-GCCcore-12.2.0`| + +### Getopt::Long::Descriptive + + +|`Getopt::Long::Descriptive` version|Perl modules that include it| +| --- | --- | +|0.110|`Perl/5.36.0-GCCcore-12.2.0`| + +### Git + + +|`Git` version|Perl modules that include it| +| --- | --- | +|0.42|`Perl/5.36.0-GCCcore-12.2.0`| + +### GO + + +|`GO` version|Perl modules that include it| +| --- | --- | +|0.04|`Perl/5.36.0-GCCcore-12.2.0`| + +### GO::Utils + + +|`GO::Utils` version|Perl modules that include it| +| --- | --- | +|0.15|`Perl/5.36.0-GCCcore-12.2.0`| + +### Graph + + +|`Graph` version|Perl modules that include it| +| --- | --- | +|0.9725|`Perl/5.36.0-GCCcore-12.2.0`| + +### Graph::ReadWrite + + +|`Graph::ReadWrite` version|Perl modules that include it| +| --- | --- | +|2.10|`Perl/5.36.0-GCCcore-12.2.0`| + +### Hash::Merge + + +|`Hash::Merge` version|Perl modules that include it| +| --- | --- | +|0.302|`Perl/5.36.0-GCCcore-12.2.0`| + +### Heap + + +|`Heap` version|Perl modules that include it| +| --- | --- | +|0.80|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTML::Entities::Interpolate + + +|`HTML::Entities::Interpolate` version|Perl modules that include it| +| --- | --- | +|1.10|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTML::Form + + +|`HTML::Form` version|Perl modules that include it| +| --- | --- | +|6.10|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTML::Parser + + +|`HTML::Parser` version|Perl modules that include it| +| --- | --- | +|3.78|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTML::Tagset + + +|`HTML::Tagset` version|Perl modules that include it| +| --- | --- | +|3.20|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTML::Template + + +|`HTML::Template` version|Perl modules that include it| +| --- | --- | +|2.97|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTML::Tree + + +|`HTML::Tree` version|Perl modules that include it| +| --- | --- | +|5.07|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTTP::Cookies + + +|`HTTP::Cookies` version|Perl modules that include it| +| --- | --- | +|6.10|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTTP::Daemon + + +|`HTTP::Daemon` version|Perl modules that include it| +| --- | --- | +|6.14|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTTP::Date + + +|`HTTP::Date` version|Perl modules that include it| +| --- | --- | +|6.05|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTTP::Negotiate + + +|`HTTP::Negotiate` version|Perl modules that include it| +| --- | --- | +|6.01|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTTP::Request + + +|`HTTP::Request` version|Perl modules that include it| +| --- | --- | +|6.37|`Perl/5.36.0-GCCcore-12.2.0`| + +### HTTP::Tiny + + +|`HTTP::Tiny` version|Perl modules that include it| +| --- | --- | +|0.082|`Perl/5.36.0-GCCcore-12.2.0`| + +### if + + +|`if` version|Perl modules that include it| +| --- | --- | +|0.0608|`Perl/5.36.0-GCCcore-12.2.0`| + +### Ima::DBI + + +|`Ima::DBI` version|Perl modules that include it| +| --- | --- | +|0.35|`Perl/5.36.0-GCCcore-12.2.0`| + +### Import::Into + + +|`Import::Into` version|Perl modules that include it| +| --- | --- | +|1.002005|`Perl/5.36.0-GCCcore-12.2.0`| + +### Importer + + +|`Importer` version|Perl modules that include it| +| --- | --- | +|0.026|`Perl/5.36.0-GCCcore-12.2.0`| + +### Inline + + +|`Inline` version|Perl modules that include it| +| --- | --- | +|0.86|`Perl/5.36.0-GCCcore-12.2.0`| + +### IO::File + + +|`IO::File` version|Perl modules that include it| +| --- | --- | +|1.55|`Perl/5.38.2-GCCcore-13.3.0`| +|1.51|`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`| + +### IO::HTML + + +|`IO::HTML` version|Perl modules that include it| +| --- | --- | +|1.004|`Perl/5.36.0-GCCcore-12.2.0`| + +### IO::Socket::SSL + + +|`IO::Socket::SSL` version|Perl modules that include it| +| --- | --- | +|2.075|`Perl/5.36.0-GCCcore-12.2.0`| + +### IO::String + + +|`IO::String` version|Perl modules that include it| +| --- | --- | +|1.08|`Perl/5.36.0-GCCcore-12.2.0`| + +### IO::Stringy + + +|`IO::Stringy` version|Perl modules that include it| +| --- | --- | +|2.113|`Perl/5.36.0-GCCcore-12.2.0`| + +### IO::Tty + + +|`IO::Tty` version|Perl modules that include it| +| --- | --- | +|1.16|`Perl/5.36.0-GCCcore-12.2.0`| + +### IPC::Cmd + + +|`IPC::Cmd` version|Perl modules that include it| +| --- | --- | +|1.04|`Perl/5.36.0-GCCcore-12.2.0`| + +### IPC::Run + + +|`IPC::Run` version|Perl modules that include it| +| --- | --- | +|20220807.0|`Perl/5.36.0-GCCcore-12.2.0`| + +### IPC::Run3 + + +|`IPC::Run3` version|Perl modules that include it| +| --- | --- | +|0.048|`Perl/5.36.0-GCCcore-12.2.0`| + +### IPC::System::Simple + + +|`IPC::System::Simple` version|Perl modules that include it| +| --- | --- | +|1.30|`Perl/5.36.0-GCCcore-12.2.0`| + +### JSON + + +|`JSON` version|Perl modules that include it| +| --- | --- | +|4.09|`Perl/5.36.0-GCCcore-12.2.0`| + +### JSON::XS + + +|`JSON::XS` version|Perl modules that include it| +| --- | --- | +|4.03|`Perl/5.36.0-GCCcore-12.2.0`| + +### Lingua::EN::PluralToSingular + + +|`Lingua::EN::PluralToSingular` version|Perl modules that include it| +| --- | --- | +|0.21|`Perl/5.36.0-GCCcore-12.2.0`| + +### List::AllUtils + + +|`List::AllUtils` version|Perl modules that include it| +| --- | --- | +|0.19|`Perl/5.36.0-GCCcore-12.2.0`| + +### List::MoreUtils + + +|`List::MoreUtils` version|Perl modules that include it| +| --- | --- | +|0.430|`Perl/5.36.0-GCCcore-12.2.0`| + +### List::MoreUtils::XS + + +|`List::MoreUtils::XS` version|Perl modules that include it| +| --- | --- | +|0.430|`Perl/5.36.0-GCCcore-12.2.0`| + +### List::SomeUtils + + +|`List::SomeUtils` version|Perl modules that include it| +| --- | --- | +|0.58|`Perl/5.36.0-GCCcore-12.2.0`| + +### List::Util + + +|`List::Util` version|Perl modules that include it| +| --- | --- | +|1.63|`Perl/5.36.0-GCCcore-12.2.0`| + +### List::UtilsBy + + +|`List::UtilsBy` version|Perl modules that include it| +| --- | --- | +|0.12|`Perl/5.36.0-GCCcore-12.2.0`| + +### local::lib + + +|`local::lib` version|Perl modules that include it| +| --- | --- | +|2.000029|`Perl/5.36.0-GCCcore-12.2.0`| + +### Locale::Maketext::Simple + + +|`Locale::Maketext::Simple` version|Perl modules that include it| +| --- | --- | +|0.21|`Perl/5.36.0-GCCcore-12.2.0`| + +### Log::Dispatch + + +|`Log::Dispatch` version|Perl modules that include it| +| --- | --- | +|2.70|`Perl/5.36.0-GCCcore-12.2.0`| + +### Log::Dispatchouli + + +|`Log::Dispatchouli` version|Perl modules that include it| +| --- | --- | +|2.023|`Perl/5.36.0-GCCcore-12.2.0`| + +### Log::Handler + + +|`Log::Handler` version|Perl modules that include it| +| --- | --- | +|0.90|`Perl/5.36.0-GCCcore-12.2.0`| + +### Log::Log4perl + + +|`Log::Log4perl` version|Perl modules that include it| +| --- | --- | +|1.56|`Perl/5.36.0-GCCcore-12.2.0`| + +### Log::Message + + +|`Log::Message` version|Perl modules that include it| +| --- | --- | +|0.08|`Perl/5.36.0-GCCcore-12.2.0`| + +### Log::Message::Simple + + +|`Log::Message::Simple` version|Perl modules that include it| +| --- | --- | +|0.10|`Perl/5.36.0-GCCcore-12.2.0`| + +### Log::Report + + +|`Log::Report` version|Perl modules that include it| +| --- | --- | +|1.33|`Perl/5.36.0-GCCcore-12.2.0`| + +### Log::Report::Optional + + +|`Log::Report::Optional` version|Perl modules that include it| +| --- | --- | +|1.07|`Perl/5.36.0-GCCcore-12.2.0`| + +### Logger::Simple + + +|`Logger::Simple` version|Perl modules that include it| +| --- | --- | +|2.0|`Perl/5.36.0-GCCcore-12.2.0`| + +### LWP::MediaTypes + + +|`LWP::MediaTypes` version|Perl modules that include it| +| --- | --- | +|6.04|`Perl/5.36.0-GCCcore-12.2.0`| + +### LWP::Protocol::https + + +|`LWP::Protocol::https` version|Perl modules that include it| +| --- | --- | +|6.10|`Perl/5.36.0-GCCcore-12.2.0`| + +### LWP::Simple + + +|`LWP::Simple` version|Perl modules that include it| +| --- | --- | +|6.67|`Perl/5.36.0-GCCcore-12.2.0`| + +### Mail::Util + + +|`Mail::Util` version|Perl modules that include it| +| --- | --- | +|2.21|`Perl/5.36.0-GCCcore-12.2.0`| + +### Math::Bezier + + +|`Math::Bezier` version|Perl modules that include it| +| --- | --- | +|0.01|`Perl/5.36.0-GCCcore-12.2.0`| + +### Math::CDF + + +|`Math::CDF` version|Perl modules that include it| +| --- | --- | +|0.1|`Perl/5.36.0-GCCcore-12.2.0`| + +### Math::Round + + +|`Math::Round` version|Perl modules that include it| +| --- | --- | +|0.07|`Perl/5.36.0-GCCcore-12.2.0`| + +### Math::Utils + + +|`Math::Utils` version|Perl modules that include it| +| --- | --- | +|1.14|`Perl/5.36.0-GCCcore-12.2.0`| + +### Math::VecStat + + +|`Math::VecStat` version|Perl modules that include it| +| --- | --- | +|0.08|`Perl/5.36.0-GCCcore-12.2.0`| + +### MCE::Mutex + + +|`MCE::Mutex` version|Perl modules that include it| +| --- | --- | +|1.879|`Perl/5.36.0-GCCcore-12.2.0`| + +### Meta::Builder + + +|`Meta::Builder` version|Perl modules that include it| +| --- | --- | +|0.004|`Perl/5.36.0-GCCcore-12.2.0`| + +### MIME::Base64 + + +|`MIME::Base64` version|Perl modules that include it| +| --- | --- | +|3.16|`Perl/5.36.0-GCCcore-12.2.0`| + +### MIME::Charset + + +|`MIME::Charset` version|Perl modules that include it| +| --- | --- | +|1.013.1|`Perl/5.36.0-GCCcore-12.2.0`| + +### MIME::Lite + + +|`MIME::Lite` version|Perl modules that include it| +| --- | --- | +|3.033|`Perl/5.36.0-GCCcore-12.2.0`| + +### MIME::Types + + +|`MIME::Types` version|Perl modules that include it| +| --- | --- | +|2.22|`Perl/5.36.0-GCCcore-12.2.0`| + +### Mixin::Linewise::Readers + + +|`Mixin::Linewise::Readers` version|Perl modules that include it| +| --- | --- | +|0.110|`Perl/5.36.0-GCCcore-12.2.0`| + +### Mock::Quick + + +|`Mock::Quick` version|Perl modules that include it| +| --- | --- | +|1.111|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Build + + +|`Module::Build` version|Perl modules that include it| +| --- | --- | +|0.4231|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Build::Tiny + + +|`Module::Build::Tiny` version|Perl modules that include it| +| --- | --- | +|0.039|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Build::XSUtil + + +|`Module::Build::XSUtil` version|Perl modules that include it| +| --- | --- | +|0.19|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::CoreList + + +|`Module::CoreList` version|Perl modules that include it| +| --- | --- | +|5.20220820|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Implementation + + +|`Module::Implementation` version|Perl modules that include it| +| --- | --- | +|0.09|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Install + + +|`Module::Install` version|Perl modules that include it| +| --- | --- | +|1.19|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Load + + +|`Module::Load` version|Perl modules that include it| +| --- | --- | +|0.36|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Load::Conditional + + +|`Module::Load::Conditional` version|Perl modules that include it| +| --- | --- | +|0.74|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Metadata + + +|`Module::Metadata` version|Perl modules that include it| +| --- | --- | +|1.000037|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Path + + +|`Module::Path` version|Perl modules that include it| +| --- | --- | +|0.19|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Pluggable + + +|`Module::Pluggable` version|Perl modules that include it| +| --- | --- | +|5.2|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Runtime + + +|`Module::Runtime` version|Perl modules that include it| +| --- | --- | +|0.016|`Perl/5.36.0-GCCcore-12.2.0`| + +### Module::Runtime::Conflicts + + +|`Module::Runtime::Conflicts` version|Perl modules that include it| +| --- | --- | +|0.003|`Perl/5.36.0-GCCcore-12.2.0`| + +### Moo + + +|`Moo` version|Perl modules that include it| +| --- | --- | +|2.005004|`Perl/5.36.0-GCCcore-12.2.0`| + +### Moose + + +|`Moose` version|Perl modules that include it| +| --- | --- | +|2.2201|`Perl/5.36.0-GCCcore-12.2.0`| + +### MooseX::LazyRequire + + +|`MooseX::LazyRequire` version|Perl modules that include it| +| --- | --- | +|0.11|`Perl/5.36.0-GCCcore-12.2.0`| + +### MooseX::OneArgNew + + +|`MooseX::OneArgNew` version|Perl modules that include it| +| --- | --- | +|0.006|`Perl/5.36.0-GCCcore-12.2.0`| + +### MooseX::Role::Parameterized + + +|`MooseX::Role::Parameterized` version|Perl modules that include it| +| --- | --- | +|1.11|`Perl/5.36.0-GCCcore-12.2.0`| + +### MooseX::SetOnce + + +|`MooseX::SetOnce` version|Perl modules that include it| +| --- | --- | +|0.201|`Perl/5.36.0-GCCcore-12.2.0`| + +### MooseX::Types + + +|`MooseX::Types` version|Perl modules that include it| +| --- | --- | +|0.50|`Perl/5.36.0-GCCcore-12.2.0`| + +### MooseX::Types::Perl + + +|`MooseX::Types::Perl` version|Perl modules that include it| +| --- | --- | +|0.101343|`Perl/5.36.0-GCCcore-12.2.0`| + +### Mouse + + +|`Mouse` version|Perl modules that include it| +| --- | --- | +|v2.5.10|`Perl/5.36.0-GCCcore-12.2.0`| + +### Mozilla::CA + + +|`Mozilla::CA` version|Perl modules that include it| +| --- | --- | +|20211001|`Perl/5.36.0-GCCcore-12.2.0`| + +### MRO::Compat + + +|`MRO::Compat` version|Perl modules that include it| +| --- | --- | +|0.15|`Perl/5.36.0-GCCcore-12.2.0`| + +### namespace::autoclean + + +|`namespace::autoclean` version|Perl modules that include it| +| --- | --- | +|0.29|`Perl/5.36.0-GCCcore-12.2.0`| + +### namespace::clean + + +|`namespace::clean` version|Perl modules that include it| +| --- | --- | +|0.27|`Perl/5.36.0-GCCcore-12.2.0`| + +### Net::Domain + + +|`Net::Domain` version|Perl modules that include it| +| --- | --- | +|3.14|`Perl/5.36.0-GCCcore-12.2.0`| + +### Net::HTTP + + +|`Net::HTTP` version|Perl modules that include it| +| --- | --- | +|6.22|`Perl/5.36.0-GCCcore-12.2.0`| + +### Net::SMTP::SSL + + +|`Net::SMTP::SSL` version|Perl modules that include it| +| --- | --- | +|1.04|`Perl/5.36.0-GCCcore-12.2.0`| + +### Net::SNMP + + +|`Net::SNMP` version|Perl modules that include it| +| --- | --- | +|v6.0.1|`Perl/5.36.0-GCCcore-12.2.0`| + +### Net::SSLeay + + +|`Net::SSLeay` version|Perl modules that include it| +| --- | --- | +|1.92|`Perl/5.36.0-GCCcore-12.2.0`| + +### Number::Compare + + +|`Number::Compare` version|Perl modules that include it| +| --- | --- | +|0.03|`Perl/5.36.0-GCCcore-12.2.0`| + +### Number::Format + + +|`Number::Format` version|Perl modules that include it| +| --- | --- | +|1.75|`Perl/5.36.0-GCCcore-12.2.0`| + +### Object::Accessor + + +|`Object::Accessor` version|Perl modules that include it| +| --- | --- | +|0.48|`Perl/5.36.0-GCCcore-12.2.0`| + +### Object::InsideOut + + +|`Object::InsideOut` version|Perl modules that include it| +| --- | --- | +|4.05|`Perl/5.36.0-GCCcore-12.2.0`| + +### Package::Constants + + +|`Package::Constants` version|Perl modules that include it| +| --- | --- | +|0.06|`Perl/5.36.0-GCCcore-12.2.0`| + +### Package::DeprecationManager + + +|`Package::DeprecationManager` version|Perl modules that include it| +| --- | --- | +|0.17|`Perl/5.36.0-GCCcore-12.2.0`| + +### Package::Stash + + +|`Package::Stash` version|Perl modules that include it| +| --- | --- | +|0.40|`Perl/5.36.0-GCCcore-12.2.0`| + +### Package::Stash::XS + + +|`Package::Stash::XS` version|Perl modules that include it| +| --- | --- | +|0.30|`Perl/5.36.0-GCCcore-12.2.0`| + +### PadWalker + + +|`PadWalker` version|Perl modules that include it| +| --- | --- | +|2.5|`Perl/5.36.0-GCCcore-12.2.0`| + +### Parallel::ForkManager + + +|`Parallel::ForkManager` version|Perl modules that include it| +| --- | --- | +|2.02|`Perl/5.36.0-GCCcore-12.2.0`| + +### Params::Check + + +|`Params::Check` version|Perl modules that include it| +| --- | --- | +|0.38|`Perl/5.36.0-GCCcore-12.2.0`| + +### Params::Util + + +|`Params::Util` version|Perl modules that include it| +| --- | --- | +|1.102|`Perl/5.36.0-GCCcore-12.2.0`| + +### Params::Validate + + +|`Params::Validate` version|Perl modules that include it| +| --- | --- | +|1.30|`Perl/5.36.0-GCCcore-12.2.0`| + +### Params::ValidationCompiler + + +|`Params::ValidationCompiler` version|Perl modules that include it| +| --- | --- | +|0.30|`Perl/5.36.0-GCCcore-12.2.0`| + +### parent + + +|`parent` version|Perl modules that include it| +| --- | --- | +|0.238|`Perl/5.36.0-GCCcore-12.2.0`| + +### Parse::RecDescent + + +|`Parse::RecDescent` version|Perl modules that include it| +| --- | --- | +|1.967015|`Perl/5.36.0-GCCcore-12.2.0`| + +### Path::Tiny + + +|`Path::Tiny` version|Perl modules that include it| +| --- | --- | +|0.124|`Perl/5.36.0-GCCcore-12.2.0`| + +### PDF::API2 + + +|`PDF::API2` version|Perl modules that include it| +| --- | --- | +|2.043|`Perl/5.36.0-GCCcore-12.2.0`| + +### Perl::OSType + + +|`Perl::OSType` version|Perl modules that include it| +| --- | --- | +|1.010|`Perl/5.36.0-GCCcore-12.2.0`| + +### PerlIO::utf8_strict + + +|`PerlIO::utf8_strict` version|Perl modules that include it| +| --- | --- | +|0.009|`Perl/5.36.0-GCCcore-12.2.0`| + +### Pod::Elemental + + +|`Pod::Elemental` version|Perl modules that include it| +| --- | --- | +|0.103005|`Perl/5.36.0-GCCcore-12.2.0`| + +### Pod::Escapes + + +|`Pod::Escapes` version|Perl modules that include it| +| --- | --- | +|1.07|`Perl/5.36.0-GCCcore-12.2.0`| + +### Pod::Eventual + + +|`Pod::Eventual` version|Perl modules that include it| +| --- | --- | +|0.094002|`Perl/5.36.0-GCCcore-12.2.0`| + +### Pod::LaTeX + + +|`Pod::LaTeX` version|Perl modules that include it| +| --- | --- | +|0.61|`Perl/5.36.0-GCCcore-12.2.0`| + +### Pod::Man + + +|`Pod::Man` version|Perl modules that include it| +| --- | --- | +|4.14|`Perl/5.36.0-GCCcore-12.2.0`| + +### Pod::Parser + + +|`Pod::Parser` version|Perl modules that include it| +| --- | --- | +|1.66|`Perl/5.36.0-GCCcore-12.2.0`| + +### Pod::Plainer + + +|`Pod::Plainer` version|Perl modules that include it| +| --- | --- | +|1.04|`Perl/5.36.0-GCCcore-12.2.0`| + +### Pod::POM + + +|`Pod::POM` version|Perl modules that include it| +| --- | --- | +|2.01|`Perl/5.36.0-GCCcore-12.2.0`| + +### Pod::Simple + + +|`Pod::Simple` version|Perl modules that include it| +| --- | --- | +|3.43|`Perl/5.36.0-GCCcore-12.2.0`| + +### Pod::Weaver + + +|`Pod::Weaver` version|Perl modules that include it| +| --- | --- | +|4.018|`Perl/5.36.0-GCCcore-12.2.0`| + +### Readonly + + +|`Readonly` version|Perl modules that include it| +| --- | --- | +|2.05|`Perl/5.36.0-GCCcore-12.2.0`| + +### Regexp::Common + + +|`Regexp::Common` version|Perl modules that include it| +| --- | --- | +|2017060201|`Perl/5.36.0-GCCcore-12.2.0`| + +### Role::HasMessage + + +|`Role::HasMessage` version|Perl modules that include it| +| --- | --- | +|0.006|`Perl/5.36.0-GCCcore-12.2.0`| + +### Role::Identifiable::HasIdent + + +|`Role::Identifiable::HasIdent` version|Perl modules that include it| +| --- | --- | +|0.008|`Perl/5.36.0-GCCcore-12.2.0`| + +### Role::Tiny + + +|`Role::Tiny` version|Perl modules that include it| +| --- | --- | +|2.002004|`Perl/5.36.0-GCCcore-12.2.0`| + +### Scalar::Util + + +|`Scalar::Util` version|Perl modules that include it| +| --- | --- | +|1.63|`Perl/5.36.0-GCCcore-12.2.0`| + +### Scalar::Util::Numeric + + +|`Scalar::Util::Numeric` version|Perl modules that include it| +| --- | --- | +|0.40|`Perl/5.36.0-GCCcore-12.2.0`| + +### Scope::Guard + + +|`Scope::Guard` version|Perl modules that include it| +| --- | --- | +|0.21|`Perl/5.36.0-GCCcore-12.2.0`| + +### Set::Array + + +|`Set::Array` version|Perl modules that include it| +| --- | --- | +|0.30|`Perl/5.36.0-GCCcore-12.2.0`| + +### Set::IntervalTree + + +|`Set::IntervalTree` version|Perl modules that include it| +| --- | --- | +|0.12|`Perl/5.36.0-GCCcore-12.2.0`| + +### Set::IntSpan + + +|`Set::IntSpan` version|Perl modules that include it| +| --- | --- | +|1.19|`Perl/5.36.0-GCCcore-12.2.0`| + +### Set::IntSpan::Fast + + +|`Set::IntSpan::Fast` version|Perl modules that include it| +| --- | --- | +|1.15|`Perl/5.36.0-GCCcore-12.2.0`| + +### Set::Object + + +|`Set::Object` version|Perl modules that include it| +| --- | --- | +|1.42|`Perl/5.36.0-GCCcore-12.2.0`| + +### Set::Scalar + + +|`Set::Scalar` version|Perl modules that include it| +| --- | --- | +|1.29|`Perl/5.36.0-GCCcore-12.2.0`| + +### Shell + + +|`Shell` version|Perl modules that include it| +| --- | --- | +|0.73|`Perl/5.36.0-GCCcore-12.2.0`| + +### Socket + + +|`Socket` version|Perl modules that include it| +| --- | --- | +|2.036|`Perl/5.36.0-GCCcore-12.2.0`| + +### Software::License + + +|`Software::License` version|Perl modules that include it| +| --- | --- | +|0.104002|`Perl/5.36.0-GCCcore-12.2.0`| + +### Specio + + +|`Specio` version|Perl modules that include it| +| --- | --- | +|0.48|`Perl/5.36.0-GCCcore-12.2.0`| + +### SQL::Abstract + + +|`SQL::Abstract` version|Perl modules that include it| +| --- | --- | +|2.000001|`Perl/5.36.0-GCCcore-12.2.0`| + +### SQL::Statement + + +|`SQL::Statement` version|Perl modules that include it| +| --- | --- | +|1.414|`Perl/5.36.0-GCCcore-12.2.0`| + +### Statistics::Basic + + +|`Statistics::Basic` version|Perl modules that include it| +| --- | --- | +|1.6611|`Perl/5.36.0-GCCcore-12.2.0`| + +### Statistics::Descriptive + + +|`Statistics::Descriptive` version|Perl modules that include it| +| --- | --- | +|3.0800|`Perl/5.36.0-GCCcore-12.2.0`| + +### Storable + + +|`Storable` version|Perl modules that include it| +| --- | --- | +|3.25|`Perl/5.36.0-GCCcore-12.2.0`| + +### strictures + + +|`strictures` version|Perl modules that include it| +| --- | --- | +|2.000006|`Perl/5.36.0-GCCcore-12.2.0`| + +### String::Flogger + + +|`String::Flogger` version|Perl modules that include it| +| --- | --- | +|1.101245|`Perl/5.36.0-GCCcore-12.2.0`| + +### String::Print + + +|`String::Print` version|Perl modules that include it| +| --- | --- | +|0.94|`Perl/5.36.0-GCCcore-12.2.0`| + +### String::RewritePrefix + + +|`String::RewritePrefix` version|Perl modules that include it| +| --- | --- | +|0.008|`Perl/5.36.0-GCCcore-12.2.0`| + +### String::Truncate + + +|`String::Truncate` version|Perl modules that include it| +| --- | --- | +|1.100602|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sub::Exporter + + +|`Sub::Exporter` version|Perl modules that include it| +| --- | --- | +|0.988|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sub::Exporter::ForMethods + + +|`Sub::Exporter::ForMethods` version|Perl modules that include it| +| --- | --- | +|0.100054|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sub::Exporter::Progressive + + +|`Sub::Exporter::Progressive` version|Perl modules that include it| +| --- | --- | +|0.001013|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sub::Identify + + +|`Sub::Identify` version|Perl modules that include it| +| --- | --- | +|0.14|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sub::Info + + +|`Sub::Info` version|Perl modules that include it| +| --- | --- | +|0.002|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sub::Install + + +|`Sub::Install` version|Perl modules that include it| +| --- | --- | +|0.928|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sub::Name + + +|`Sub::Name` version|Perl modules that include it| +| --- | --- | +|0.26|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sub::Quote + + +|`Sub::Quote` version|Perl modules that include it| +| --- | --- | +|2.006006|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sub::Uplevel + + +|`Sub::Uplevel` version|Perl modules that include it| +| --- | --- | +|0.2800|`Perl/5.36.0-GCCcore-12.2.0`| + +### SVG + + +|`SVG` version|Perl modules that include it| +| --- | --- | +|2.87|`Perl/5.36.0-GCCcore-12.2.0`| + +### Switch + + +|`Switch` version|Perl modules that include it| +| --- | --- | +|2.17|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sys::Info + + +|`Sys::Info` version|Perl modules that include it| +| --- | --- | +|0.7811|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sys::Info::Base + + +|`Sys::Info::Base` version|Perl modules that include it| +| --- | --- | +|0.7807|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sys::Info::Driver::Linux + + +|`Sys::Info::Driver::Linux` version|Perl modules that include it| +| --- | --- | +|0.7905|`Perl/5.36.0-GCCcore-12.2.0`| + +### Sys::Info::Driver::Unknown + + +|`Sys::Info::Driver::Unknown` version|Perl modules that include it| +| --- | --- | +|0.79|`Perl/5.36.0-GCCcore-12.2.0`| + +### Template + + +|`Template` version|Perl modules that include it| +| --- | --- | +|3.101|`Perl/5.36.0-GCCcore-12.2.0`| + +### Template::Plugin::Number::Format + + +|`Template::Plugin::Number::Format` version|Perl modules that include it| +| --- | --- | +|1.06|`Perl/5.36.0-GCCcore-12.2.0`| + +### Term::Encoding + + +|`Term::Encoding` version|Perl modules that include it| +| --- | --- | +|0.03|`Perl/5.36.0-GCCcore-12.2.0`| + +### Term::ReadKey + + +|`Term::ReadKey` version|Perl modules that include it| +| --- | --- | +|2.38|`Perl/5.36.0-GCCcore-12.2.0`| + +### Term::ReadLine::Gnu + + +|`Term::ReadLine::Gnu` version|Perl modules that include it| +| --- | --- | +|1.42|`Perl/5.36.0-GCCcore-12.2.0`| + +### Term::Table + + +|`Term::Table` version|Perl modules that include it| +| --- | --- | +|0.016|`Perl/5.36.0-GCCcore-12.2.0`| + +### Term::UI + + +|`Term::UI` version|Perl modules that include it| +| --- | --- | +|0.50|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test + + +|`Test` version|Perl modules that include it| +| --- | --- | +|1.26|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test2::Plugin::NoWarnings + + +|`Test2::Plugin::NoWarnings` version|Perl modules that include it| +| --- | --- | +|0.09|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test2::Require::Module + + +|`Test2::Require::Module` version|Perl modules that include it| +| --- | --- | +|0.000145|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::ClassAPI + + +|`Test::ClassAPI` version|Perl modules that include it| +| --- | --- | +|1.07|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::CleanNamespaces + + +|`Test::CleanNamespaces` version|Perl modules that include it| +| --- | --- | +|0.24|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Deep + + +|`Test::Deep` version|Perl modules that include it| +| --- | --- | +|1.130|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Differences + + +|`Test::Differences` version|Perl modules that include it| +| --- | --- | +|0.69|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Exception + + +|`Test::Exception` version|Perl modules that include it| +| --- | --- | +|0.43|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Fatal + + +|`Test::Fatal` version|Perl modules that include it| +| --- | --- | +|0.016|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::File::ShareDir::Dist + + +|`Test::File::ShareDir::Dist` version|Perl modules that include it| +| --- | --- | +|1.001002|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Harness + + +|`Test::Harness` version|Perl modules that include it| +| --- | --- | +|3.44|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::LeakTrace + + +|`Test::LeakTrace` version|Perl modules that include it| +| --- | --- | +|0.17|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Memory::Cycle + + +|`Test::Memory::Cycle` version|Perl modules that include it| +| --- | --- | +|1.06|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::More + + +|`Test::More` version|Perl modules that include it| +| --- | --- | +|1.302191|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::More::UTF8 + + +|`Test::More::UTF8` version|Perl modules that include it| +| --- | --- | +|0.05|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Most + + +|`Test::Most` version|Perl modules that include it| +| --- | --- | +|0.37|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Needs + + +|`Test::Needs` version|Perl modules that include it| +| --- | --- | +|0.002009|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::NoWarnings + + +|`Test::NoWarnings` version|Perl modules that include it| +| --- | --- | +|1.06|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Output + + +|`Test::Output` version|Perl modules that include it| +| --- | --- | +|1.033|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Pod + + +|`Test::Pod` version|Perl modules that include it| +| --- | --- | +|1.52|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Requires + + +|`Test::Requires` version|Perl modules that include it| +| --- | --- | +|0.11|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::RequiresInternet + + +|`Test::RequiresInternet` version|Perl modules that include it| +| --- | --- | +|0.05|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Simple + + +|`Test::Simple` version|Perl modules that include it| +| --- | --- | +|1.302191|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Version + + +|`Test::Version` version|Perl modules that include it| +| --- | --- | +|2.09|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Warn + + +|`Test::Warn` version|Perl modules that include it| +| --- | --- | +|0.37|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Warnings + + +|`Test::Warnings` version|Perl modules that include it| +| --- | --- | +|0.031|`Perl/5.36.0-GCCcore-12.2.0`| + +### Test::Without::Module + + +|`Test::Without::Module` version|Perl modules that include it| +| --- | --- | +|0.20|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::Aligner + + +|`Text::Aligner` version|Perl modules that include it| +| --- | --- | +|0.16|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::Balanced + + +|`Text::Balanced` version|Perl modules that include it| +| --- | --- | +|2.06|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::CSV + + +|`Text::CSV` version|Perl modules that include it| +| --- | --- | +|2.02|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::CSV_XS + + +|`Text::CSV_XS` version|Perl modules that include it| +| --- | --- | +|1.48|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::Diff + + +|`Text::Diff` version|Perl modules that include it| +| --- | --- | +|1.45|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::Format + + +|`Text::Format` version|Perl modules that include it| +| --- | --- | +|0.62|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::Glob + + +|`Text::Glob` version|Perl modules that include it| +| --- | --- | +|0.11|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::Iconv + + +|`Text::Iconv` version|Perl modules that include it| +| --- | --- | +|1.7|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::ParseWords + + +|`Text::ParseWords` version|Perl modules that include it| +| --- | --- | +|3.31|`Perl/5.40.2-GCCcore-14.3.0`
`Perl/5.40.0-GCCcore-14.2.0`
`Perl/5.38.2-GCCcore-13.3.0`
`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`
`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::Soundex + + +|`Text::Soundex` version|Perl modules that include it| +| --- | --- | +|3.05|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::Table + + +|`Text::Table` version|Perl modules that include it| +| --- | --- | +|1.134|`Perl/5.36.0-GCCcore-12.2.0`| + +### Text::Template + + +|`Text::Template` version|Perl modules that include it| +| --- | --- | +|1.61|`Perl/5.36.0-GCCcore-12.2.0`| + +### Thread::Queue + + +|`Thread::Queue` version|Perl modules that include it| +| --- | --- | +|3.13|`Perl/5.38.2-GCCcore-13.3.0`
`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`
`Perl/5.36.0-GCCcore-12.2.0`| + +### threads + + +|`threads` version|Perl modules that include it| +| --- | --- | +|2.21|`Perl/5.38.2-GCCcore-13.3.0`
`Perl/5.38.0-GCCcore-13.2.0`
`Perl/5.38.0`
`Perl/5.36.1-GCCcore-12.3.0`| + +### Throwable + + +|`Throwable` version|Perl modules that include it| +| --- | --- | +|1.000|`Perl/5.36.0-GCCcore-12.2.0`| + +### Tie::Function + + +|`Tie::Function` version|Perl modules that include it| +| --- | --- | +|0.02|`Perl/5.36.0-GCCcore-12.2.0`| + +### Tie::IxHash + + +|`Tie::IxHash` version|Perl modules that include it| +| --- | --- | +|1.23|`Perl/5.36.0-GCCcore-12.2.0`| + +### Time::HiRes + + +|`Time::HiRes` version|Perl modules that include it| +| --- | --- | +|1.9764|`Perl/5.36.0-GCCcore-12.2.0`| + +### Time::Local + + +|`Time::Local` version|Perl modules that include it| +| --- | --- | +|1.30|`Perl/5.36.0-GCCcore-12.2.0`| + +### Time::Piece + + +|`Time::Piece` version|Perl modules that include it| +| --- | --- | +|1.3401|`Perl/5.36.0-GCCcore-12.2.0`| + +### Time::Piece::MySQL + + +|`Time::Piece::MySQL` version|Perl modules that include it| +| --- | --- | +|0.06|`Perl/5.36.0-GCCcore-12.2.0`| + +### Tree::DAG_Node + + +|`Tree::DAG_Node` version|Perl modules that include it| +| --- | --- | +|1.32|`Perl/5.36.0-GCCcore-12.2.0`| + +### Try::Tiny + + +|`Try::Tiny` version|Perl modules that include it| +| --- | --- | +|0.31|`Perl/5.36.0-GCCcore-12.2.0`| + +### Types::Serialiser + + +|`Types::Serialiser` version|Perl modules that include it| +| --- | --- | +|1.01|`Perl/5.36.0-GCCcore-12.2.0`| + +### Unicode::LineBreak + + +|`Unicode::LineBreak` version|Perl modules that include it| +| --- | --- | +|2019.001|`Perl/5.36.0-GCCcore-12.2.0`| + +### UNIVERSAL::moniker + + +|`UNIVERSAL::moniker` version|Perl modules that include it| +| --- | --- | +|0.08|`Perl/5.36.0-GCCcore-12.2.0`| + +### Unix::Processors + + +|`Unix::Processors` version|Perl modules that include it| +| --- | --- | +|2.046|`Perl/5.36.0-GCCcore-12.2.0`| + +### URI + + +|`URI` version|Perl modules that include it| +| --- | --- | +|5.12|`Perl/5.36.0-GCCcore-12.2.0`| + +### URI::Escape + + +|`URI::Escape` version|Perl modules that include it| +| --- | --- | +|5.12|`Perl/5.36.0-GCCcore-12.2.0`| + +### Variable::Magic + + +|`Variable::Magic` version|Perl modules that include it| +| --- | --- | +|0.62|`Perl/5.36.0-GCCcore-12.2.0`| + +### version + + +|`version` version|Perl modules that include it| +| --- | --- | +|0.9929|`Perl/5.36.0-GCCcore-12.2.0`| + +### Want + + +|`Want` version|Perl modules that include it| +| --- | --- | +|0.29|`Perl/5.36.0-GCCcore-12.2.0`| + +### WWW::RobotRules + + +|`WWW::RobotRules` version|Perl modules that include it| +| --- | --- | +|6.02|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::Bare + + +|`XML::Bare` version|Perl modules that include it| +| --- | --- | +|0.53|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::DOM + + +|`XML::DOM` version|Perl modules that include it| +| --- | --- | +|1.46|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::Filter::BufferText + + +|`XML::Filter::BufferText` version|Perl modules that include it| +| --- | --- | +|1.01|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::NamespaceSupport + + +|`XML::NamespaceSupport` version|Perl modules that include it| +| --- | --- | +|1.12|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::Parser + + +|`XML::Parser` version|Perl modules that include it| +| --- | --- | +|2.46|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::RegExp + + +|`XML::RegExp` version|Perl modules that include it| +| --- | --- | +|0.04|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::SAX + + +|`XML::SAX` version|Perl modules that include it| +| --- | --- | +|1.02|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::SAX::Base + + +|`XML::SAX::Base` version|Perl modules that include it| +| --- | --- | +|1.09|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::SAX::Expat + + +|`XML::SAX::Expat` version|Perl modules that include it| +| --- | --- | +|0.51|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::SAX::Writer + + +|`XML::SAX::Writer` version|Perl modules that include it| +| --- | --- | +|0.57|`Perl/5.36.0-GCCcore-12.2.0`| + +### XML::Simple -Perl -==== +|`XML::Simple` version|Perl modules that include it| +| --- | --- | +|2.25|`Perl/5.36.0-GCCcore-12.2.0`| -Larry Wall's Practical Extraction and Report LanguageIncludes a small selection of extra CPAN packages for core functionality. +### XML::Tiny -https://www.perl.org/ -# Available modules +|`XML::Tiny` version|Perl modules that include it| +| --- | --- | +|2.07|`Perl/5.36.0-GCCcore-12.2.0`| -The overview below shows which Perl installations are available per target architecture in EESSI, ordered based on software version (new to old). +### XML::Twig -To start using Perl, load one of these modules using a `module load` command like: -```shell -module load Perl/5.38.0-GCCcore-13.2.0 -``` +|`XML::Twig` version|Perl modules that include it| +| --- | --- | +|3.52|`Perl/5.36.0-GCCcore-12.2.0`| -*(This data was automatically generated on {{ generated_time }})* +### XML::XPath -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Perl/5.38.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Perl/5.36.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Perl/5.36.0-GCCcore-12.2.0-minimal|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Perl/5.36.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`XML::XPath` version|Perl modules that include it| +| --- | --- | +|1.48|`Perl/5.36.0-GCCcore-12.2.0`| -### Perl/5.38.0-GCCcore-13.2.0 +### XSLoader -This is a list of extensions included in the module: -Carp-1.50, constant-1.33, Data::Dumper-2.183, Exporter-5.77, File::Path-2.18, File::Spec-3.75, Getopt::Long-2.54, IO::File-1.51, Text::ParseWords-3.31, Thread::Queue-3.13, threads-2.21 +|`XSLoader` version|Perl modules that include it| +| --- | --- | +|0.24|`Perl/5.36.0-GCCcore-12.2.0`| -### Perl/5.36.1-GCCcore-12.3.0 +### YAML -This is a list of extensions included in the module: -Carp-1.50, constant-1.33, Data::Dumper-2.183, Exporter-5.77, File::Path-2.18, File::Spec-3.75, Getopt::Long-2.54, IO::File-1.51, Text::ParseWords-3.31, Thread::Queue-3.13, threads-2.21 +|`YAML` version|Perl modules that include it| +| --- | --- | +|1.30|`Perl/5.36.0-GCCcore-12.2.0`| -### Perl/5.36.0-GCCcore-12.2.0 +### YAML::Tiny -This is a list of extensions included in the module: -Algorithm::Dependency-1.112, Algorithm::Diff-1.201, aliased-0.34, AnyEvent-7.17, App::Cmd-0.334, App::cpanminus-1.7046, AppConfig-1.71, Archive::Extract-0.88, Array::Transpose-0.06, Array::Utils-0.5, Authen::NTLM-1.09, Authen::SASL-2.16, AutoLoader-5.74, B::Hooks::EndOfScope-0.26, B::Lint-1.20, boolean-0.46, Business::ISBN-3.007, Business::ISBN::Data-20210112.006, Canary::Stability-2013, Capture::Tiny-0.48, Carp-1.50, Carp::Clan-6.08, Carp::Heavy-1.50, Class::Accessor-0.51, Class::Data::Inheritable-0.09, Class::DBI-v3.0.17, Class::DBI::SQLite-0.11, Class::Inspector-1.36, Class::ISA-0.36, Class::Load-0.25, Class::Load::XS-0.10, Class::Singleton-1.6, Class::Tiny-1.008, Class::Trigger-0.15, Clone-0.45, Clone::Choose-0.010, common::sense-3.75, Config::General-2.65, Config::INI-0.027, Config::MVP-2.200012, Config::Simple-4.58, Config::Tiny-2.28, constant-1.33, CPAN::Meta::Check-0.014, CPANPLUS-0.9914, Crypt::DES-2.07, Crypt::Rijndael-1.16, Cwd-3.75, Cwd::Guard-0.05, Data::Dump-1.25, Data::Dumper-2.183, Data::Dumper::Concise-2.023, Data::Grove-0.08, Data::OptList-0.112, Data::Section-0.200007, Data::Section::Simple-0.07, Data::Stag-0.14, Data::Types-0.17, Data::UUID-1.226, Date::Handler-1.2, Date::Language-2.33, DateTime-1.58, DateTime::Locale-1.36, DateTime::TimeZone-2.53, DateTime::Tiny-1.07, DBD::CSV-0.59, DBD::SQLite-1.70, DBI-1.643, DBIx::Admin::TableInfo-3.04, DBIx::ContextualFetch-1.03, DBIx::Simple-1.37, Devel::CheckCompiler-0.07, Devel::CheckLib-1.16, Devel::Cycle-1.12, Devel::GlobalDestruction-0.14, Devel::OverloadInfo-0.007, Devel::Size-0.83, Devel::StackTrace-2.04, Digest::HMAC-1.04, Digest::MD5::File-0.08, Digest::SHA1-2.13, Dist::CheckConflicts-0.11, Dist::Zilla-6.025, Email::Date::Format-1.005, Encode-3.19, Encode::Locale-1.05, Error-0.17029, Eval::Closure-0.14, Exception::Class-1.45, Expect-1.35, Exporter-5.74, Exporter::Declare-0.114, Exporter::Tiny-1.004000, ExtUtils::CBuilder-0.280236, ExtUtils::Config-0.008, ExtUtils::Constant-0.25, ExtUtils::CppGuess-0.26, ExtUtils::Helpers-0.026, ExtUtils::InstallPaths-0.012, ExtUtils::MakeMaker-7.64, ExtUtils::ParseXS-3.44, Fennec::Lite-0.004, File::CheckTree-4.42, File::Copy::Recursive-0.45, File::Copy::Recursive::Reduced-0.006, File::Find::Rule-0.34, File::Find::Rule::Perl-1.16, File::Grep-0.02, File::HomeDir-1.006, File::Listing-6.15, File::Next-1.18, File::Path-2.18, File::pushd-1.016, File::Remove-1.61, File::ShareDir-1.118, File::ShareDir::Install-0.14, File::Slurp-9999.32, File::Slurp::Tiny-0.004, File::Slurper-0.013, File::Spec-3.75, File::Temp-0.2311, File::Which-1.27, Font::TTF-1.06, Getopt::Long-2.52, Getopt::Long::Descriptive-0.110, Git-0.42, GO-0.04, GO::Utils-0.15, Graph-0.9725, Graph::ReadWrite-2.10, Hash::Merge-0.302, Heap-0.80, HTML::Entities::Interpolate-1.10, HTML::Form-6.10, HTML::Parser-3.78, HTML::Tagset-3.20, HTML::Template-2.97, HTML::Tree-5.07, HTTP::Cookies-6.10, HTTP::Daemon-6.14, HTTP::Date-6.05, HTTP::Negotiate-6.01, HTTP::Request-6.37, HTTP::Tiny-0.082, if-0.0608, Ima::DBI-0.35, Import::Into-1.002005, Importer-0.026, Inline-0.86, IO::HTML-1.004, IO::Socket::SSL-2.075, IO::String-1.08, IO::Stringy-2.113, IO::Tty-1.16, IPC::Cmd-1.04, IPC::Run-20220807.0, IPC::Run3-0.048, IPC::System::Simple-1.30, JSON-4.09, JSON::XS-4.03, Lingua::EN::PluralToSingular-0.21, List::AllUtils-0.19, List::MoreUtils-0.430, List::MoreUtils::XS-0.430, List::SomeUtils-0.58, List::Util-1.63, List::UtilsBy-0.12, local::lib-2.000029, Locale::Maketext::Simple-0.21, Log::Dispatch-2.70, Log::Dispatchouli-2.023, Log::Handler-0.90, Log::Log4perl-1.56, Log::Message-0.08, Log::Message::Simple-0.10, Log::Report-1.33, Log::Report::Optional-1.07, Logger::Simple-2.0, LWP::MediaTypes-6.04, LWP::Protocol::https-6.10, LWP::Simple-6.67, Mail::Util-2.21, Math::Bezier-0.01, Math::CDF-0.1, Math::Round-0.07, Math::Utils-1.14, Math::VecStat-0.08, MCE::Mutex-1.879, Meta::Builder-0.004, MIME::Base64-3.16, MIME::Charset-1.013.1, MIME::Lite-3.033, MIME::Types-2.22, Mixin::Linewise::Readers-0.110, Mock::Quick-1.111, Module::Build-0.4231, Module::Build::Tiny-0.039, Module::Build::XSUtil-0.19, Module::CoreList-5.20220820, Module::Implementation-0.09, Module::Install-1.19, Module::Load-0.36, Module::Load::Conditional-0.74, Module::Metadata-1.000037, Module::Path-0.19, Module::Pluggable-5.2, Module::Runtime-0.016, Module::Runtime::Conflicts-0.003, Moo-2.005004, Moose-2.2201, MooseX::LazyRequire-0.11, MooseX::OneArgNew-0.006, MooseX::Role::Parameterized-1.11, MooseX::SetOnce-0.201, MooseX::Types-0.50, MooseX::Types::Perl-0.101343, Mouse-v2.5.10, Mozilla::CA-20211001, MRO::Compat-0.15, namespace::autoclean-0.29, namespace::clean-0.27, Net::Domain-3.14, Net::HTTP-6.22, Net::SMTP::SSL-1.04, Net::SNMP-v6.0.1, Net::SSLeay-1.92, Number::Compare-0.03, Number::Format-1.75, Object::Accessor-0.48, Object::InsideOut-4.05, Package::Constants-0.06, Package::DeprecationManager-0.17, Package::Stash-0.40, Package::Stash::XS-0.30, PadWalker-2.5, Parallel::ForkManager-2.02, Params::Check-0.38, Params::Util-1.102, Params::Validate-1.30, Params::ValidationCompiler-0.30, parent-0.238, Parse::RecDescent-1.967015, Path::Tiny-0.124, PDF::API2-2.043, Perl::OSType-1.010, PerlIO::utf8_strict-0.009, Pod::Elemental-0.103005, Pod::Escapes-1.07, Pod::Eventual-0.094002, Pod::LaTeX-0.61, Pod::Man-4.14, Pod::Parser-1.66, Pod::Plainer-1.04, Pod::POM-2.01, Pod::Simple-3.43, Pod::Weaver-4.018, Readonly-2.05, Regexp::Common-2017060201, Role::HasMessage-0.006, Role::Identifiable::HasIdent-0.008, Role::Tiny-2.002004, Scalar::Util-1.63, Scalar::Util::Numeric-0.40, Scope::Guard-0.21, Set::Array-0.30, Set::IntervalTree-0.12, Set::IntSpan-1.19, Set::IntSpan::Fast-1.15, Set::Object-1.42, Set::Scalar-1.29, Shell-0.73, Socket-2.036, Software::License-0.104002, Specio-0.48, SQL::Abstract-2.000001, SQL::Statement-1.414, Statistics::Basic-1.6611, Statistics::Descriptive-3.0800, Storable-3.25, strictures-2.000006, String::Flogger-1.101245, String::Print-0.94, String::RewritePrefix-0.008, String::Truncate-1.100602, Sub::Exporter-0.988, Sub::Exporter::ForMethods-0.100054, Sub::Exporter::Progressive-0.001013, Sub::Identify-0.14, Sub::Info-0.002, Sub::Install-0.928, Sub::Name-0.26, Sub::Quote-2.006006, Sub::Uplevel-0.2800, Sub::Uplevel-0.2800, SVG-2.87, Switch-2.17, Sys::Info-0.7811, Sys::Info::Base-0.7807, Sys::Info::Driver::Linux-0.7905, Sys::Info::Driver::Unknown-0.79, Template-3.101, Template::Plugin::Number::Format-1.06, Term::Encoding-0.03, Term::ReadKey-2.38, Term::ReadLine::Gnu-1.42, Term::Table-0.016, Term::UI-0.50, Test-1.26, Test2::Plugin::NoWarnings-0.09, Test2::Require::Module-0.000145, Test::ClassAPI-1.07, Test::CleanNamespaces-0.24, Test::Deep-1.130, Test::Differences-0.69, Test::Exception-0.43, Test::Fatal-0.016, Test::File::ShareDir::Dist-1.001002, Test::Harness-3.44, Test::LeakTrace-0.17, Test::Memory::Cycle-1.06, Test::More-1.302191, Test::More::UTF8-0.05, Test::Most-0.37, Test::Needs-0.002009, Test::NoWarnings-1.06, Test::Output-1.033, Test::Pod-1.52, Test::Requires-0.11, Test::RequiresInternet-0.05, Test::Simple-1.302191, Test::Version-2.09, Test::Warn-0.37, Test::Warnings-0.031, Test::Without::Module-0.20, Text::Aligner-0.16, Text::Balanced-2.06, Text::CSV-2.02, Text::CSV_XS-1.48, Text::Diff-1.45, Text::Format-0.62, Text::Glob-0.11, Text::Iconv-1.7, Text::ParseWords-3.31, Text::Soundex-3.05, Text::Table-1.134, Text::Template-1.61, Thread::Queue-3.13, Throwable-1.000, Tie::Function-0.02, Tie::IxHash-1.23, Time::HiRes-1.9764, Time::Local-1.30, Time::Piece-1.3401, Time::Piece::MySQL-0.06, Tree::DAG_Node-1.32, Try::Tiny-0.31, Types::Serialiser-1.01, Unicode::LineBreak-2019.001, UNIVERSAL::moniker-0.08, Unix::Processors-2.046, URI-5.12, URI::Escape-5.12, Variable::Magic-0.62, version-0.9929, Want-0.29, WWW::RobotRules-6.02, XML::Bare-0.53, XML::DOM-1.46, XML::Filter::BufferText-1.01, XML::NamespaceSupport-1.12, XML::Parser-2.46, XML::RegExp-0.04, XML::SAX-1.02, XML::SAX::Base-1.09, XML::SAX::Expat-0.51, XML::SAX::Writer-0.57, XML::Simple-2.25, XML::Tiny-2.07, XML::Twig-3.52, XML::XPath-1.48, XSLoader-0.24, YAML-1.30, YAML::Tiny-1.73 \ No newline at end of file +|`YAML::Tiny` version|Perl modules that include it| +| --- | --- | +|1.73|`Perl/5.36.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Pillow-SIMD.md b/docs/available_software/detail/Pillow-SIMD.md index c8239efac8..1ee7aeda33 100644 --- a/docs/available_software/detail/Pillow-SIMD.md +++ b/docs/available_software/detail/Pillow-SIMD.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. PIL - is the Python Imaging Library by Fredrik Lundh and Contributors. + description: "Pillow is the 'friendly PIL fork' by Alex Clark and Contributors.\n\ + \ PIL is the Python Imaging Library by Fredrik Lundh and Contributors." license: Not confirmed name: Pillow-SIMD offers: @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Pillow-SIMD/9.5.0-GCCcore-12.3.0'']' + softwareVersion: '[''9.5.0'']' url: https://github.com/uploadcare/pillow-simd --- +# Pillow-SIMD -Pillow-SIMD -=========== +Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. + PIL is the Python Imaging Library by Fredrik Lundh and Contributors. -Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. +homepage: [https://github.com/uploadcare/pillow-simd](https://github.com/uploadcare/pillow-simd) -https://github.com/uploadcare/pillow-simd -# Available modules +## Available installations -The overview below shows which Pillow-SIMD installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Pillow-SIMD, load one of these modules using a `module load` command like: - -```shell -module load Pillow-SIMD/9.5.0-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Pillow-SIMD/9.5.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Pillow-SIMD version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pillow-SIMD/9.5.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Pillow.md b/docs/available_software/detail/Pillow.md index ec2b945057..9f513bf35d 100644 --- a/docs/available_software/detail/Pillow.md +++ b/docs/available_software/detail/Pillow.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. PIL - is the Python Imaging Library by Fredrik Lundh and Contributors. + description: "Pillow is the 'friendly PIL fork' by Alex Clark and Contributors.\n\ + \ PIL is the Python Imaging Library by Fredrik Lundh and Contributors." license: Not confirmed name: Pillow offers: @@ -25,33 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Pillow/9.4.0-GCCcore-12.2.0'', ''Pillow/10.0.0-GCCcore-12.3.0'', - ''Pillow/10.2.0-GCCcore-13.2.0'']' + softwareVersion: '[''11.3.0'', ''10.4.0'', ''10.2.0'', ''10.0.0'', ''9.4.0'']' url: https://pillow.readthedocs.org/ --- +# Pillow -Pillow -====== +Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. + PIL is the Python Imaging Library by Fredrik Lundh and Contributors. -Pillow is the 'friendly PIL fork' by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. +homepage: [https://pillow.readthedocs.org/](https://pillow.readthedocs.org/) -https://pillow.readthedocs.org/ -# Available modules +## Available installations -The overview below shows which Pillow installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Pillow, load one of these modules using a `module load` command like: - -```shell -module load Pillow/10.2.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Pillow/10.2.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Pillow/10.0.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Pillow/9.4.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Pillow version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|11.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Pillow/11.3.0-GCCcore-14.3.0`| +|11.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Pillow/11.3.0-GCCcore-14.2.0`| +|10.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Pillow/10.4.0-GCCcore-13.3.0`| +|10.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pillow/10.2.0-GCCcore-13.2.0`| +|10.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pillow/10.0.0-GCCcore-12.3.0`| +|9.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pillow/9.4.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Pint.md b/docs/available_software/detail/Pint.md index 6e136e55dd..6c7d852364 100644 --- a/docs/available_software/detail/Pint.md +++ b/docs/available_software/detail/Pint.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'Pint is a Python package to define, operate andmanipulate physical - quantities: the product of a numerical value and aunit of measurement. It allows - arithmetic operations between them andconversions from and to different units.' + description: 'Pint is a Python package to define, operate and + + manipulate physical quantities: the product of a numerical value and a + + unit of measurement. It allows arithmetic operations between them and + + conversions from and to different units.' license: Not confirmed name: Pint offers: @@ -26,38 +28,59 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Pint/0.23-GCCcore-12.3.0'', ''Pint/0.24-GCCcore-13.2.0'']' + softwareVersion: '[''0.24.4'', ''0.24'', ''0.23'']' url: https://github.com/hgrecco/pint --- +# Pint + + +Pint is a Python package to define, operate and +manipulate physical quantities: the product of a numerical value and a +unit of measurement. It allows arithmetic operations between them and +conversions from and to different units. + +homepage: [https://github.com/hgrecco/pint](https://github.com/hgrecco/pint) + +## Available installations + + +|Pint version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.24.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Pint/0.24.4-GCCcore-14.2.0`| +|0.24|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pint/0.24-GCCcore-13.2.0`| +|0.23|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pint/0.23-GCCcore-12.3.0`| + +## Extensions -Pint -==== +Overview of extensions included in Pint installations -Pint is a Python package to define, operate andmanipulate physical quantities: the product of a numerical value and aunit of measurement. It allows arithmetic operations between them andconversions from and to different units. +### appdirs -https://github.com/hgrecco/pint -# Available modules +|`appdirs` version|Pint modules that include it| +| --- | --- | +|1.4.4|`Pint/0.24-GCCcore-13.2.0`| -The overview below shows which Pint installations are available per target architecture in EESSI, ordered based on software version (new to old). +### flexcache -To start using Pint, load one of these modules using a `module load` command like: -```shell -module load Pint/0.24-GCCcore-13.2.0 -``` +|`flexcache` version|Pint modules that include it| +| --- | --- | +|0.3|`Pint/0.24.4-GCCcore-14.2.0`
`Pint/0.24-GCCcore-13.2.0`| -*(This data was automatically generated on {{ generated_time }})* +### flexparser -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Pint/0.24-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Pint/0.23-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`flexparser` version|Pint modules that include it| +| --- | --- | +|0.4|`Pint/0.24.4-GCCcore-14.2.0`| +|0.3.1|`Pint/0.24-GCCcore-13.2.0`| -### Pint/0.24-GCCcore-13.2.0 +### Pint -This is a list of extensions included in the module: -appdirs-1.4.4, flexcache-0.3, flexparser-0.3.1, Pint-0.24 \ No newline at end of file +|`Pint` version|Pint modules that include it| +| --- | --- | +|0.24.4|`Pint/0.24.4-GCCcore-14.2.0`| +|0.24|`Pint/0.24-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PnetCDF.md b/docs/available_software/detail/PnetCDF.md index 8549600b19..193d88cc3f 100644 --- a/docs/available_software/detail/PnetCDF.md +++ b/docs/available_software/detail/PnetCDF.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PnetCDF/1.12.3-gompi-2023a'']' + softwareVersion: '[''1.14.0'', ''1.12.3'']' url: https://parallel-netcdf.github.io/ --- - -PnetCDF -======= +# PnetCDF Parallel netCDF: A Parallel I/O Library for NetCDF File Access -https://parallel-netcdf.github.io/ -# Available modules - - -The overview below shows which PnetCDF installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using PnetCDF, load one of these modules using a `module load` command like: +homepage: [https://parallel-netcdf.github.io/](https://parallel-netcdf.github.io/) -```shell -module load PnetCDF/1.12.3-gompi-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PnetCDF/1.12.3-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PnetCDF version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PnetCDF/1.14.0-gompi-2025a`| +|1.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PnetCDF/1.14.0-gompi-2024a`| +|1.12.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PnetCDF/1.12.3-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/PostgreSQL.md b/docs/available_software/detail/PostgreSQL.md index dc5fc19c12..93928e23e2 100644 --- a/docs/available_software/detail/PostgreSQL.md +++ b/docs/available_software/detail/PostgreSQL.md @@ -1,17 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: PostgreSQL is a powerful, open source object-relational database system. - It is fully ACID compliant, has full support for foreign keys, joins, views, triggers, - and stored procedures (in multiple languages). It includes most SQL:2008 data - types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERVAL, and - TIMESTAMP. It also supports storage of binary large objects, including pictures, - sounds, or video. It has native programming interfaces for C/C++, Java, .Net, - Perl, Python, Ruby, Tcl, ODBC, among others, and exceptional documentation. + description: "PostgreSQL is a powerful, open source object-relational database system.\n\ + \ It is fully ACID compliant, has full support for foreign keys,\n joins, views,\ + \ triggers, and stored procedures (in multiple languages).\n It includes most\ + \ SQL:2008 data types, including INTEGER,\n NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE,\ + \ INTERVAL, and TIMESTAMP.\n It also supports storage of binary large objects,\ + \ including pictures,\n sounds, or video. It has native programming interfaces\ + \ for C/C++, Java,\n .Net, Perl, Python, Ruby, Tcl, ODBC, among others, and exceptional\ + \ documentation." license: Not confirmed name: PostgreSQL offers: @@ -30,31 +29,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PostgreSQL/16.1-GCCcore-12.3.0'', ''PostgreSQL/16.1-GCCcore-13.2.0'']' + softwareVersion: '[''16.4'', ''16.1'']' url: https://www.postgresql.org/ --- +# PostgreSQL -PostgreSQL -========== +PostgreSQL is a powerful, open source object-relational database system. + It is fully ACID compliant, has full support for foreign keys, + joins, views, triggers, and stored procedures (in multiple languages). + It includes most SQL:2008 data types, including INTEGER, + NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERVAL, and TIMESTAMP. + It also supports storage of binary large objects, including pictures, + sounds, or video. It has native programming interfaces for C/C++, Java, + .Net, Perl, Python, Ruby, Tcl, ODBC, among others, and exceptional documentation. -PostgreSQL is a powerful, open source object-relational database system. It is fully ACID compliant, has full support for foreign keys, joins, views, triggers, and stored procedures (in multiple languages). It includes most SQL:2008 data types, including INTEGER, NUMERIC, BOOLEAN, CHAR, VARCHAR, DATE, INTERVAL, and TIMESTAMP. It also supports storage of binary large objects, including pictures, sounds, or video. It has native programming interfaces for C/C++, Java, .Net, Perl, Python, Ruby, Tcl, ODBC, among others, and exceptional documentation. +homepage: [https://www.postgresql.org/](https://www.postgresql.org/) -https://www.postgresql.org/ -# Available modules +## Available installations -The overview below shows which PostgreSQL installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using PostgreSQL, load one of these modules using a `module load` command like: - -```shell -module load PostgreSQL/16.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PostgreSQL/16.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PostgreSQL/16.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PostgreSQL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|16.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PostgreSQL/16.4-GCCcore-13.3.0`| +|16.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PostgreSQL/16.1-GCCcore-13.2.0`| +|16.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PostgreSQL/16.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PuLP.md b/docs/available_software/detail/PuLP.md index 245e0c24a7..3ac134ee17 100644 --- a/docs/available_software/detail/PuLP.md +++ b/docs/available_software/detail/PuLP.md @@ -1,13 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: PuLP is an LP modeler written in Python. PuLP can generate MPS or LP - files andcall GLPK, COIN-OR CLP/CBC, CPLEX, GUROBI, MOSEK, XPRESS, CHOCO, MIPCL, - SCIP tosolve linear problems. + description: ' + + PuLP is an LP modeler written in Python. PuLP can generate MPS or LP files and + + call GLPK, COIN-OR CLP/CBC, CPLEX, GUROBI, MOSEK, XPRESS, CHOCO, MIPCL, SCIP to + + solve linear problems. + + ' license: Not confirmed name: PuLP offers: @@ -26,31 +30,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PuLP/2.8.0-foss-2023a'', ''PuLP/2.8.0-foss-2023b'']' + softwareVersion: '[''2.8.0'']' url: https://github.com/coin-or/pulp --- +# PuLP -PuLP -==== - - -PuLP is an LP modeler written in Python. PuLP can generate MPS or LP files andcall GLPK, COIN-OR CLP/CBC, CPLEX, GUROBI, MOSEK, XPRESS, CHOCO, MIPCL, SCIP tosolve linear problems. -https://github.com/coin-or/pulp -# Available modules +PuLP is an LP modeler written in Python. PuLP can generate MPS or LP files and +call GLPK, COIN-OR CLP/CBC, CPLEX, GUROBI, MOSEK, XPRESS, CHOCO, MIPCL, SCIP to +solve linear problems. -The overview below shows which PuLP installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using PuLP, load one of these modules using a `module load` command like: +homepage: [https://github.com/coin-or/pulp](https://github.com/coin-or/pulp) -```shell -module load PuLP/2.8.0-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PuLP/2.8.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PuLP/2.8.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PuLP version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PuLP/2.8.0-foss-2024a`| +|2.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PuLP/2.8.0-foss-2023b`| +|2.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PuLP/2.8.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/PyCairo.md b/docs/available_software/detail/PyCairo.md index 2d57f4a691..fb74b51f25 100644 --- a/docs/available_software/detail/PyCairo.md +++ b/docs/available_software/detail/PyCairo.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyCairo/1.25.0-GCCcore-12.3.0'']' + softwareVersion: '[''1.28.0'', ''1.25.0'']' url: https://pycairo.readthedocs.io/ --- - -PyCairo -======= +# PyCairo Python bindings for the cairo library -https://pycairo.readthedocs.io/ -# Available modules - - -The overview below shows which PyCairo installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using PyCairo, load one of these modules using a `module load` command like: +homepage: [https://pycairo.readthedocs.io/](https://pycairo.readthedocs.io/) -```shell -module load PyCairo/1.25.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyCairo/1.25.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PyCairo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.28.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyCairo/1.28.0-GCCcore-14.3.0`| +|1.25.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyCairo/1.25.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PyEVTK.md b/docs/available_software/detail/PyEVTK.md index 518ee9493c..1e58d518d4 100644 --- a/docs/available_software/detail/PyEVTK.md +++ b/docs/available_software/detail/PyEVTK.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: EVTK (Export VTK) package allows exporting data to binary VTK files - for visualization anddata analysis with any of the visualization packages that - support VTK files + description: 'EVTK (Export VTK) package allows exporting data to binary VTK files + for visualization and + + data analysis with any of the visualization packages that support VTK files' license: Not confirmed name: PyEVTK offers: @@ -26,37 +25,32 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyEVTK/1.6.0-gfbf-2023a'']' + softwareVersion: '[''1.6.0'']' url: https://github.com/paulo-herrera/PyEVTK --- +# PyEVTK -PyEVTK -====== - - -EVTK (Export VTK) package allows exporting data to binary VTK files for visualization anddata analysis with any of the visualization packages that support VTK files -https://github.com/paulo-herrera/PyEVTK -# Available modules +EVTK (Export VTK) package allows exporting data to binary VTK files for visualization and +data analysis with any of the visualization packages that support VTK files +homepage: [https://github.com/paulo-herrera/PyEVTK](https://github.com/paulo-herrera/PyEVTK) -The overview below shows which PyEVTK installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using PyEVTK, load one of these modules using a `module load` command like: -```shell -module load PyEVTK/1.6.0-gfbf-2023a -``` +|PyEVTK version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyEVTK/1.6.0-gfbf-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyEVTK/1.6.0-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in PyEVTK installations -### PyEVTK/1.6.0-gfbf-2023a +### pyevtk -This is a list of extensions included in the module: -pyevtk-1.6.0 \ No newline at end of file +|`pyevtk` version|PyEVTK modules that include it| +| --- | --- | +|1.6.0|`PyEVTK/1.6.0-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/PyGObject.md b/docs/available_software/detail/PyGObject.md index bd3776c375..6ae738ba2b 100644 --- a/docs/available_software/detail/PyGObject.md +++ b/docs/available_software/detail/PyGObject.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: PyGObject is a Python package which provides bindings for GObject basedlibraries - such as GTK, GStreamer, WebKitGTK, GLib, GIO and many more. + description: 'PyGObject is a Python package which provides bindings for GObject + based + + libraries such as GTK, GStreamer, WebKitGTK, GLib, GIO and many more.' license: Not confirmed name: PyGObject offers: @@ -25,30 +25,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyGObject/3.46.0-GCCcore-12.3.0'']' + softwareVersion: '[''3.54.3'', ''3.46.0'']' url: https://pygobject.readthedocs.io/ --- - -PyGObject -========= - - -PyGObject is a Python package which provides bindings for GObject basedlibraries such as GTK, GStreamer, WebKitGTK, GLib, GIO and many more. - -https://pygobject.readthedocs.io/ -# Available modules +# PyGObject -The overview below shows which PyGObject installations are available per target architecture in EESSI, ordered based on software version (new to old). +PyGObject is a Python package which provides bindings for GObject based +libraries such as GTK, GStreamer, WebKitGTK, GLib, GIO and many more. -To start using PyGObject, load one of these modules using a `module load` command like: +homepage: [https://pygobject.readthedocs.io/](https://pygobject.readthedocs.io/) -```shell -module load PyGObject/3.46.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyGObject/3.46.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PyGObject version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.54.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyGObject/3.54.3-GCCcore-14.3.0`| +|3.46.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyGObject/3.46.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PyOpenGL.md b/docs/available_software/detail/PyOpenGL.md index 7604205f38..ba6558948b 100644 --- a/docs/available_software/detail/PyOpenGL.md +++ b/docs/available_software/detail/PyOpenGL.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,37 +23,38 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyOpenGL/3.1.7-GCCcore-12.3.0'']' + softwareVersion: '[''3.1.7'']' url: http://pyopengl.sourceforge.net --- - -PyOpenGL -======== +# PyOpenGL PyOpenGL is the most common cross platform Python binding to OpenGL and related APIs. -http://pyopengl.sourceforge.net -# Available modules +homepage: [http://pyopengl.sourceforge.net](http://pyopengl.sourceforge.net) + +## Available installations + +|PyOpenGL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyOpenGL/3.1.7-GCCcore-12.3.0`| -The overview below shows which PyOpenGL installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using PyOpenGL, load one of these modules using a `module load` command like: +Overview of extensions included in PyOpenGL installations -```shell -module load PyOpenGL/3.1.7-GCCcore-12.3.0 -``` -*(This data was automatically generated on {{ generated_time }})* +### PyOpenGL -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyOpenGL/3.1.7-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`PyOpenGL` version|PyOpenGL modules that include it| +| --- | --- | +|3.1.7|`PyOpenGL/3.1.7-GCCcore-12.3.0`| -### PyOpenGL/3.1.7-GCCcore-12.3.0 +### PyOpenGL-accelerate -This is a list of extensions included in the module: -PyOpenGL-3.1.7, PyOpenGL-accelerate-3.1.7 \ No newline at end of file +|`PyOpenGL-accelerate` version|PyOpenGL modules that include it| +| --- | --- | +|3.1.7|`PyOpenGL/3.1.7-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PyQt-builder.md b/docs/available_software/detail/PyQt-builder.md index 3873e84bf0..6eff6d5962 100644 --- a/docs/available_software/detail/PyQt-builder.md +++ b/docs/available_software/detail/PyQt-builder.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication description: "PyQt-builder is the PEP 517 compliant build system for PyQt and projects\ - \ that extend PyQt. It extends the SIP build system and uses Qt\u2019s qmake\ - \ to perform the actual compilation and installation of extension modules." + \ that \nextend PyQt. It extends the SIP build system and uses Qt\u2019s qmake\ + \ to perform the \nactual compilation and installation of extension modules.\n" license: Not confirmed name: PyQt-builder offers: @@ -26,37 +24,42 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyQt-builder/1.15.4-GCCcore-12.3.0'']' + softwareVersion: '[''1.19.0'', ''1.15.4'']' url: http://www.example.com --- +# PyQt-builder -PyQt-builder -============ +PyQt-builder is the PEP 517 compliant build system for PyQt and projects that +extend PyQt. It extends the SIP build system and uses Qt’s qmake to perform the +actual compilation and installation of extension modules. -PyQt-builder is the PEP 517 compliant build system for PyQt and projects that extend PyQt. It extends the SIP build system and uses Qt’s qmake to perform the actual compilation and installation of extension modules. -http://www.example.com -# Available modules +homepage: [http://www.example.com](http://www.example.com) +## Available installations -The overview below shows which PyQt-builder installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using PyQt-builder, load one of these modules using a `module load` command like: +|PyQt-builder version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.19.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyQt-builder/1.19.0-GCCcore-14.2.0`| +|1.15.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyQt-builder/1.15.4-GCCcore-12.3.0`| -```shell -module load PyQt-builder/1.15.4-GCCcore-12.3.0 -``` +## Extensions -*(This data was automatically generated on {{ generated_time }})* +Overview of extensions included in PyQt-builder installations -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyQt-builder/1.15.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### PyQt-builder -### PyQt-builder/1.15.4-GCCcore-12.3.0 -This is a list of extensions included in the module: +|`PyQt-builder` version|PyQt-builder modules that include it| +| --- | --- | +|1.15.4|`PyQt-builder/1.15.4-GCCcore-12.3.0`| -PyQt-builder-1.15.4 \ No newline at end of file +### pyqt_builder + + +|`pyqt_builder` version|PyQt-builder modules that include it| +| --- | --- | +|1.19.0|`PyQt-builder/1.19.0-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PyQt5.md b/docs/available_software/detail/PyQt5.md index 500a0afa38..a7c2ac1ea9 100644 --- a/docs/available_software/detail/PyQt5.md +++ b/docs/available_software/detail/PyQt5.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication description: "PyQt5 is a set of Python bindings for v5 of the Qt application framework\ - \ from The Qt Company.This bundle includes PyQtWebEngine, a set of Python bindings\ + \ from The Qt Company.\nThis bundle includes PyQtWebEngine, a set of Python bindings\ \ for The Qt Company\u2019s Qt WebEngine framework." license: Not confirmed name: PyQt5 @@ -26,30 +24,46 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyQt5/5.15.10-GCCcore-12.3.0'']' + softwareVersion: '[''5.15.10'']' url: https://www.riverbankcomputing.com/software/pyqt --- +# PyQt5 -PyQt5 -===== +PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company. +This bundle includes PyQtWebEngine, a set of Python bindings for The Qt Company’s Qt WebEngine framework. -PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company.This bundle includes PyQtWebEngine, a set of Python bindings for The Qt Company’s Qt WebEngine framework. +homepage: [https://www.riverbankcomputing.com/software/pyqt](https://www.riverbankcomputing.com/software/pyqt) -https://www.riverbankcomputing.com/software/pyqt -# Available modules +## Available installations -The overview below shows which PyQt5 installations are available per target architecture in EESSI, ordered based on software version (new to old). +|PyQt5 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.15.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyQt5/5.15.10-GCCcore-12.3.0`| -To start using PyQt5, load one of these modules using a `module load` command like: +## Extensions -```shell -module load PyQt5/5.15.10-GCCcore-12.3.0 -``` +Overview of extensions included in PyQt5 installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyQt5/5.15.10-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### PyQt5 + + +|`PyQt5` version|PyQt5 modules that include it| +| --- | --- | +|5.15.10|`PyQt5/5.15.10-GCCcore-12.3.0`| + +### PyQt5_sip + + +|`PyQt5_sip` version|PyQt5 modules that include it| +| --- | --- | +|12.13.0|`PyQt5/5.15.10-GCCcore-12.3.0`| + +### PyQtWebEngine + + +|`PyQtWebEngine` version|PyQt5 modules that include it| +| --- | --- | +|5.15.6|`PyQt5/5.15.10-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PyQt6.md b/docs/available_software/detail/PyQt6.md new file mode 100644 index 0000000000..5e77708f88 --- /dev/null +++ b/docs/available_software/detail/PyQt6.md @@ -0,0 +1,71 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "PyQt6 is a comprehensive set of Python bindings for Qt v6. It is implemented\ + \ as more than 35 extension\nmodules and enables Python to be used as an alternative\ + \ application development language to C++.\nThis bundle includes PyQtWebEngine,\ + \ a set of Python bindings for The Qt Company\u2019s Qt WebEngine framework." + license: Not confirmed + name: PyQt6 + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''6.9.1'']' + url: https://www.riverbankcomputing.com/software/pyqt +--- +# PyQt6 + + +PyQt6 is a comprehensive set of Python bindings for Qt v6. It is implemented as more than 35 extension +modules and enables Python to be used as an alternative application development language to C++. +This bundle includes PyQtWebEngine, a set of Python bindings for The Qt Company’s Qt WebEngine framework. + +homepage: [https://www.riverbankcomputing.com/software/pyqt](https://www.riverbankcomputing.com/software/pyqt) + +## Available installations + + +|PyQt6 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyQt6/6.9.1-GCCcore-14.2.0`| + +## Extensions + +Overview of extensions included in PyQt6 installations + + +### PyQt6 + + +|`PyQt6` version|PyQt6 modules that include it| +| --- | --- | +|6.9.1|`PyQt6/6.9.1-GCCcore-14.2.0`| + +### pyqt6_sip + + +|`pyqt6_sip` version|PyQt6 modules that include it| +| --- | --- | +|13.10.2|`PyQt6/6.9.1-GCCcore-14.2.0`| + +### PyQt6_WebEngine + + +|`PyQt6_WebEngine` version|PyQt6 modules that include it| +| --- | --- | +|6.9.0|`PyQt6/6.9.1-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PyTables.md b/docs/available_software/detail/PyTables.md index 08b2c7cab4..7c6abeac1e 100644 --- a/docs/available_software/detail/PyTables.md +++ b/docs/available_software/detail/PyTables.md @@ -1,20 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: PyTables is a package for managing hierarchical datasets and designed - to efficiently and easily cope with extremely large amounts of data. PyTables - is built on top of the HDF5 library, using the Python language and the NumPy package. - It features an object-oriented interface that, combined with C extensions for - the performance-critical parts of the code (generated using Cython), makes it - a fast, yet extremely easy to use tool for interactively browsing, processing - and searching very large amounts of data. One important feature of PyTables is - that it optimizes memory and disk resources so that data takes much less space - (specially if on-flight compression is used) than other solutions such as relational - or object oriented databases. + description: "PyTables is a package for managing hierarchical datasets and designed\ + \ to efficiently and easily cope\n with extremely large amounts of data. PyTables\ + \ is built on top of the HDF5 library, using the Python language and the\n NumPy\ + \ package. It features an object-oriented interface that, combined with C extensions\ + \ for the performance-critical\n parts of the code (generated using Cython), makes\ + \ it a fast, yet extremely easy to use tool for interactively browsing,\n processing\ + \ and searching very large amounts of data. One important feature of PyTables\ + \ is that it optimizes memory and\n disk resources so that data takes much less\ + \ space (specially if on-flight compression is used) than other solutions\n such\ + \ as relational or object oriented databases." license: Not confirmed name: PyTables offers: @@ -33,37 +31,51 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyTables/3.9.2-foss-2023b'']' + softwareVersion: '[''3.9.2'']' url: https://www.pytables.org --- +# PyTables -PyTables -======== +PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope + with extremely large amounts of data. PyTables is built on top of the HDF5 library, using the Python language and the + NumPy package. It features an object-oriented interface that, combined with C extensions for the performance-critical + parts of the code (generated using Cython), makes it a fast, yet extremely easy to use tool for interactively browsing, + processing and searching very large amounts of data. One important feature of PyTables is that it optimizes memory and + disk resources so that data takes much less space (specially if on-flight compression is used) than other solutions + such as relational or object oriented databases. -PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data. PyTables is built on top of the HDF5 library, using the Python language and the NumPy package. It features an object-oriented interface that, combined with C extensions for the performance-critical parts of the code (generated using Cython), makes it a fast, yet extremely easy to use tool for interactively browsing, processing and searching very large amounts of data. One important feature of PyTables is that it optimizes memory and disk resources so that data takes much less space (specially if on-flight compression is used) than other solutions such as relational or object oriented databases. +homepage: [https://www.pytables.org](https://www.pytables.org) -https://www.pytables.org -# Available modules +## Available installations -The overview below shows which PyTables installations are available per target architecture in EESSI, ordered based on software version (new to old). +|PyTables version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyTables/3.9.2-foss-2023b`| -To start using PyTables, load one of these modules using a `module load` command like: +## Extensions -```shell -module load PyTables/3.9.2-foss-2023b -``` +Overview of extensions included in PyTables installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyTables/3.9.2-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### blosc2 -### PyTables/3.9.2-foss-2023b +|`blosc2` version|PyTables modules that include it| +| --- | --- | +|2.5.1|`PyTables/3.9.2-foss-2023b`| -This is a list of extensions included in the module: +### ndindex -blosc2-2.5.1, ndindex-1.8, tables-3.9.2 \ No newline at end of file + +|`ndindex` version|PyTables modules that include it| +| --- | --- | +|1.8|`PyTables/3.9.2-foss-2023b`| + +### tables + + +|`tables` version|PyTables modules that include it| +| --- | --- | +|3.9.2|`PyTables/3.9.2-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/PyTorch.md b/docs/available_software/detail/PyTorch.md index 6cfdca8cca..8788561011 100644 --- a/docs/available_software/detail/PyTorch.md +++ b/docs/available_software/detail/PyTorch.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Tensors and Dynamic neural networks in Python with strong GPU acceleration.PyTorch - is a deep learning framework that puts Python first. + description: 'Tensors and Dynamic neural networks in Python with strong GPU acceleration. + + PyTorch is a deep learning framework that puts Python first.' license: Not confirmed name: PyTorch offers: @@ -25,30 +24,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyTorch/2.1.2-foss-2023a'']' + softwareVersion: '[''2.1.2'']' url: https://pytorch.org/ --- - -PyTorch -======= - - -Tensors and Dynamic neural networks in Python with strong GPU acceleration.PyTorch is a deep learning framework that puts Python first. - -https://pytorch.org/ -# Available modules +# PyTorch -The overview below shows which PyTorch installations are available per target architecture in EESSI, ordered based on software version (new to old). +Tensors and Dynamic neural networks in Python with strong GPU acceleration. +PyTorch is a deep learning framework that puts Python first. -To start using PyTorch, load one of these modules using a `module load` command like: +homepage: [https://pytorch.org/](https://pytorch.org/) -```shell -module load PyTorch/2.1.2-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyTorch/2.1.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PyTorch version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyTorch/2.1.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/PyVO.md b/docs/available_software/detail/PyVO.md index 5b51043df5..a152079704 100644 --- a/docs/available_software/detail/PyVO.md +++ b/docs/available_software/detail/PyVO.md @@ -1,12 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: PyVO lets you find and retrieve astronomical data available from archives - that support standard IVOA virtualobservatory service protocols. + description: ' + + PyVO lets you find and retrieve astronomical data available from archives that + support standard IVOA virtual + + observatory service protocols. + + ' license: Not confirmed name: PyVO offers: @@ -25,37 +29,34 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyVO/1.7-foss-2023b'']' + softwareVersion: '[''1.7'']' url: https://pyvo.readthedocs.io/ --- +# PyVO -PyVO -==== -PyVO lets you find and retrieve astronomical data available from archives that support standard IVOA virtualobservatory service protocols. +PyVO lets you find and retrieve astronomical data available from archives that support standard IVOA virtual +observatory service protocols. -https://pyvo.readthedocs.io/ -# Available modules +homepage: [https://pyvo.readthedocs.io/](https://pyvo.readthedocs.io/) -The overview below shows which PyVO installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using PyVO, load one of these modules using a `module load` command like: -```shell -module load PyVO/1.7-foss-2023b -``` +|PyVO version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyVO/1.7-foss-2023b`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyVO/1.7-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in PyVO installations -### PyVO/1.7-foss-2023b +### pyvo -This is a list of extensions included in the module: -pyvo-1.7 \ No newline at end of file +|`pyvo` version|PyVO modules that include it| +| --- | --- | +|1.7|`PyVO/1.7-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/PyWavelets.md b/docs/available_software/detail/PyWavelets.md new file mode 100644 index 0000000000..704abe4ac7 --- /dev/null +++ b/docs/available_software/detail/PyWavelets.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: PyWavelets is open source wavelet transform software for Python. + license: Not confirmed + name: PyWavelets + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.9.0'', ''1.8.0'']' + url: https://pywavelets.readthedocs.io +--- +# PyWavelets + + +PyWavelets is open source wavelet transform software for Python. + +homepage: [https://pywavelets.readthedocs.io](https://pywavelets.readthedocs.io) + +## Available installations + + +|PyWavelets version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyWavelets/1.9.0-foss-2025a`| +|1.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyWavelets/1.8.0-foss-2024a`| \ No newline at end of file diff --git a/docs/available_software/detail/PyYAML.md b/docs/available_software/detail/PyYAML.md index e775e5d8fa..df1d1d3070 100644 --- a/docs/available_software/detail/PyYAML.md +++ b/docs/available_software/detail/PyYAML.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyYAML/6.0-GCCcore-12.2.0'', ''PyYAML/6.0-GCCcore-12.3.0'', - ''PyYAML/6.0.1-GCCcore-13.2.0'']' + softwareVersion: '[''6.0.2'', ''6.0.1'', ''6.0'']' url: https://github.com/yaml/pyyaml --- - -PyYAML -====== +# PyYAML PyYAML is a YAML parser and emitter for the Python programming language. -https://github.com/yaml/pyyaml -# Available modules - - -The overview below shows which PyYAML installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using PyYAML, load one of these modules using a `module load` command like: +homepage: [https://github.com/yaml/pyyaml](https://github.com/yaml/pyyaml) -```shell -module load PyYAML/6.0.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyYAML/6.0.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PyYAML/6.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|PyYAML/6.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PyYAML version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyYAML/6.0.2-GCCcore-14.3.0`| +|6.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyYAML/6.0.2-GCCcore-14.2.0`| +|6.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyYAML/6.0.2-GCCcore-13.3.0`| +|6.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyYAML/6.0.1-GCCcore-13.2.0`| +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyYAML/6.0-GCCcore-12.3.0`| +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyYAML/6.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/PyZMQ.md b/docs/available_software/detail/PyZMQ.md index d1c67f13d1..ae9f8529c1 100644 --- a/docs/available_software/detail/PyZMQ.md +++ b/docs/available_software/detail/PyZMQ.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''PyZMQ/25.1.1-GCCcore-12.3.0'']' + softwareVersion: '[''27.1.0'', ''27.0.0'', ''26.2.0'', ''25.1.2'', ''25.1.1'']' url: https://www.zeromq.org/bindings:python --- - -PyZMQ -===== +# PyZMQ Python bindings for ZeroMQ -https://www.zeromq.org/bindings:python -# Available modules - - -The overview below shows which PyZMQ installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using PyZMQ, load one of these modules using a `module load` command like: +homepage: [https://www.zeromq.org/bindings:python](https://www.zeromq.org/bindings:python) -```shell -module load PyZMQ/25.1.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|PyZMQ/25.1.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|PyZMQ version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|27.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyZMQ/27.1.0-GCCcore-14.3.0`| +|27.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyZMQ/27.0.0-GCCcore-14.2.0`| +|26.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PyZMQ/26.2.0-GCCcore-13.3.0`| +|25.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyZMQ/25.1.2-GCCcore-13.2.0`| +|25.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PyZMQ/25.1.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Pygments.md b/docs/available_software/detail/Pygments.md index 50fcf58d66..5a7b0e89f8 100644 --- a/docs/available_software/detail/Pygments.md +++ b/docs/available_software/detail/Pygments.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Generic syntax highlighter suitable for use in code hosting, forums, - wikis or other applications that need to prettify source code. + description: "Generic syntax highlighter suitable for use in code hosting, forums,\ + \ wikis or other applications\n that need to prettify source code." license: Not confirmed name: Pygments offers: @@ -25,30 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Pygments/2.18.0-GCCcore-12.3.0'']' + softwareVersion: '[''2.19.2'', ''2.18.0'']' url: https://pygments.org/ --- +# Pygments -Pygments -======== +Generic syntax highlighter suitable for use in code hosting, forums, wikis or other applications + that need to prettify source code. -Generic syntax highlighter suitable for use in code hosting, forums, wikis or other applications that need to prettify source code. +homepage: [https://pygments.org/](https://pygments.org/) -https://pygments.org/ -# Available modules +## Available installations -The overview below shows which Pygments installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Pygments, load one of these modules using a `module load` command like: - -```shell -module load Pygments/2.18.0-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Pygments/2.18.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Pygments version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.19.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Pygments/2.19.2-GCCcore-14.3.0`| +|2.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pygments/2.18.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Pysam.md b/docs/available_software/detail/Pysam.md index 879f7fdd35..e4d436da6f 100644 --- a/docs/available_software/detail/Pysam.md +++ b/docs/available_software/detail/Pysam.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Pysam is a python module for reading and manipulating Samfiles. It's - a lightweight wrapper of the samtools C-API. Pysam also includes an interface - for tabix. + description: "Pysam is a python module for reading and manipulating Samfiles.\n\ + \ It's a lightweight wrapper of the samtools C-API. Pysam also includes an interface\ + \ for tabix." license: Not confirmed name: Pysam offers: @@ -26,31 +24,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Pysam/0.21.0-GCC-12.2.0'', ''Pysam/0.22.0-GCC-12.3.0'']' + softwareVersion: '[''0.22.0'', ''0.21.0'']' url: https://github.com/pysam-developers/pysam --- +# Pysam -Pysam -===== +Pysam is a python module for reading and manipulating Samfiles. + It's a lightweight wrapper of the samtools C-API. Pysam also includes an interface for tabix. -Pysam is a python module for reading and manipulating Samfiles. It's a lightweight wrapper of the samtools C-API. Pysam also includes an interface for tabix. +homepage: [https://github.com/pysam-developers/pysam](https://github.com/pysam-developers/pysam) -https://github.com/pysam-developers/pysam -# Available modules +## Available installations -The overview below shows which Pysam installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Pysam, load one of these modules using a `module load` command like: - -```shell -module load Pysam/0.22.0-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Pysam/0.22.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Pysam/0.21.0-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Pysam version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.22.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pysam/0.22.0-GCC-12.3.0`| +|0.21.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Pysam/0.21.0-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Python-bundle-PyPI.md b/docs/available_software/detail/Python-bundle-PyPI.md index 965cd2127d..83e5fe9114 100644 --- a/docs/available_software/detail/Python-bundle-PyPI.md +++ b/docs/available_software/detail/Python-bundle-PyPI.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,44 +22,1286 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Python-bundle-PyPI/2023.06-GCCcore-12.3.0'', ''Python-bundle-PyPI/2023.10-GCCcore-13.2.0'']' + softwareVersion: '[''2025.07'', ''2025.04'', ''2024.06'', ''2023.10'', ''2023.06'']' url: https://python.org/ --- - -Python-bundle-PyPI -================== +# Python-bundle-PyPI Bundle of Python packages from PyPI -https://python.org/ -# Available modules +homepage: [https://python.org/](https://python.org/) + +## Available installations + + +|Python-bundle-PyPI version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025.07|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|2025.04|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2024.06|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2023.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|2023.06|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in Python-bundle-PyPI installations + + +### alabaster + + +|`alabaster` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|0.7.16|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.7.13|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### appdirs + + +|`appdirs` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.4.4|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### asn1crypto + + +|`asn1crypto` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.5.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### atomicwrites + + +|`atomicwrites` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.4.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### attrs + + +|`attrs` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|25.3.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|23.2.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|23.1.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### Babel + + +|`Babel` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.17.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2.15.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.13.1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|2.12.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### backports.entry-points-selectable + + +|`backports.entry-points-selectable` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.3.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.2.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### backports.functools-lru-cache + + +|`backports.functools-lru-cache` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| + +### backports.functools_lru_cache + + +|`backports.functools_lru_cache` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.6.6|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.6.5|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### bitarray + + +|`bitarray` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.6.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|3.3.1|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2.9.2|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.8.2|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| + +### bitstring + + +|`bitstring` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|4.3.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|4.2.3|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|4.1.2|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|4.0.2|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### blist + + +|`blist` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.3.6|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### CacheControl + + +|`CacheControl` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.14.3|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|0.14.2|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|0.14.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.12.14|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### cachecontrol + + +|`cachecontrol` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.13.1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| + +### cachy + + +|`cachy` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.3.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### certifi + + +|`certifi` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2025.7.14|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|2025.4.26|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2024.6.2|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2023.7.22|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|2023.5.7|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### cffi + + +|`cffi` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.17.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.16.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.15.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### chardet + + +|`chardet` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|5.2.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|5.1.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### charset-normalizer + + +|`charset-normalizer` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.4.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|3.4.1|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.3.2|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.3.1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|3.1.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### cleo + + +|`cleo` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.1.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.0.1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### click + + +|`click` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|8.2.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|8.1.8|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|8.1.7|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|8.1.3|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### cloudpickle + + +|`cloudpickle` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.1.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.0.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|2.2.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### colorama + + +|`colorama` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.4.6|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### commonmark + + +|`commonmark` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.9.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### crashtest + + +|`crashtest` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.4.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### Cython + + +|`Cython` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.0.4|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|0.29.35|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### decorator + + +|`decorator` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|5.2.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|5.1.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### distlib + + +|`distlib` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.4.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|0.3.9|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|0.3.8|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.3.7|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|0.3.6|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### distro + + +|`distro` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.9.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.8.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### docopt + + +|`docopt` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.6.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### docutils + + +|`docutils` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.21.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.20.1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### doit + + +|`doit` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.36.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### dulwich + + +|`dulwich` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.22.8|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|0.22.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.21.6|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|0.21.5|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### ecdsa + + +|`ecdsa` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.19.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|0.19.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.18.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### editables + + +|`editables` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.5|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|0.3|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### exceptiongroup + + +|`exceptiongroup` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.3.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|1.2.2|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.2.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.1.3|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.1.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### execnet + + +|`execnet` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.1.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.0.2|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.9.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### filelock + + +|`filelock` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.18.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.15.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.13.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|3.12.2|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### fsspec + + +|`fsspec` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2025.7.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|2025.3.2|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2024.6.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2023.10.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|2023.6.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### future + + +|`future` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.18.3|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### glob2 + + +|`glob2` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.7|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### html5lib + + +|`html5lib` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### idna + + +|`idna` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.10|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.7|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.4|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### imagesize + + +|`imagesize` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.4.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### importlib-metadata + + +|`importlib-metadata` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|8.7.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|7.1.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| + +### importlib-resources + + +|`importlib-resources` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|6.5.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|6.4.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| + +### importlib_metadata + + +|`importlib_metadata` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|6.8.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|6.7.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### importlib_resources + + +|`importlib_resources` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|6.1.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|5.12.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### iniconfig + + +|`iniconfig` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.1.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2.0.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### intervaltree + + +|`intervaltree` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.1.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### intreehooks + + +|`intreehooks` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### ipaddress + + +|`ipaddress` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.0.23|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### jaraco.classes + + +|`jaraco.classes` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.4.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.3.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|3.2.3|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### jaraco.context + + +|`jaraco.context` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|6.0.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|5.3.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| + +### jaraco.functools + + +|`jaraco.functools` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|4.2.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|4.1.0|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| + +### jeepney + + +|`jeepney` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.9.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|0.8.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### Jinja2 + + +|`Jinja2` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.1.6|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.1.4|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.1.2|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### joblib + + +|`joblib` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.5.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|1.4.2|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.3.2|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.2.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### jsonschema + + +|`jsonschema` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|4.25.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|4.23.0|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|4.22.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|4.17.3|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### jsonschema-specifications + + +|`jsonschema-specifications` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2025.4.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2023.12.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| + +### keyring + + +|`keyring` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|25.6.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|24.3.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|24.2.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|23.13.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### keyrings.alt + + +|`keyrings.alt` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|5.0.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|5.0.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|5.0.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|4.2.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### liac-arff + + +|`liac-arff` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.5.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### lockfile + + +|`lockfile` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.12.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### markdown-it-py + + +|`markdown-it-py` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### MarkupSafe + + +|`MarkupSafe` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.0.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2.1.5|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.1.3|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### mdurl + + +|`mdurl` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.1.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### mock + + +|`mock` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|5.2.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|5.1.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|5.0.2|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### more-itertools + + +|`more-itertools` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|10.7.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|10.3.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|10.1.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|9.1.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### msgpack + + +|`msgpack` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.1.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|1.1.0|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.0.8|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.0.7|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.0.5|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### netaddr + + +|`netaddr` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.3.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.9.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|0.8.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### netifaces + + +|`netifaces` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.11.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### packaging + + +|`packaging` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|24.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|23.2|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|23.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pastel + + +|`pastel` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.2.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pathlib2 + + +|`pathlib2` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.3.7.post1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pathspec + + +|`pathspec` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.12.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.11.2|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|0.11.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pbr + + +|`pbr` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|6.1.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|6.0.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|5.11.1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pexpect + + +|`pexpect` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|4.9.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|4.8.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pkginfo + + +|`pkginfo` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.12.1.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.11.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.9.6|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### platformdirs + + +|`platformdirs` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|4.3.8|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|4.3.7|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|4.2.2|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.11.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|3.8.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pluggy + + +|`pluggy` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.6.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|1.5.0|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.3.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.2.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pooch + + +|`pooch` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.8.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.8.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.7.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### psutil + + +|`psutil` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|7.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|5.9.8|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|5.9.6|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|5.9.5|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### ptyprocess + + +|`ptyprocess` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.7.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### py + + +|`py` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.11.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### py-expression-eval + + +|`py-expression-eval` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.3.14|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| + +### py_expression_eval + + +|`py_expression_eval` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.3.14|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pyasn1 + + +|`pyasn1` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.6.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|0.6.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.5.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pycparser + + +|`pycparser` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.22|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.21|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pycryptodome + + +|`pycryptodome` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.23.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|3.22.0|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.20.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.19.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|3.18.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pydevtool + + +|`pydevtool` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.3.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### Pygments + + +|`Pygments` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.19.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|2.19.1|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2.18.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.16.1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|2.15.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pylev + + +|`pylev` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.4.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### PyNaCl + + +|`PyNaCl` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.5.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pyparsing + + +|`pyparsing` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.2.3|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.1.2|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.1.1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|3.1.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pyrsistent + + +|`pyrsistent` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.20.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|0.19.3|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pytest + + +|`pytest` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|8.4.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|8.3.5|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|8.2.2|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|7.4.3|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|7.4.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pytest-xdist + + +|`pytest-xdist` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.8.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|3.6.1|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.3.1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### python-dateutil + + +|`python-dateutil` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.9.0.post0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.8.2|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pytoml + + +|`pytoml` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.1.21|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### pytz + + +|`pytz` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2025.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2024.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2023.3.post1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|2023.3|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### rapidfuzz + + +|`rapidfuzz` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.13.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.9.3|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.15.2|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|2.15.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### referencing + + +|`referencing` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.36.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|0.35.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| + +### regex + + +|`regex` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2025.7.31|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|2024.11.6|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2024.5.15|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2023.10.3|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|2023.6.3|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### requests + + +|`requests` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.32.4|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|2.32.3|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.31.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### requests-toolbelt + + +|`requests-toolbelt` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### rich + + +|`rich` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|14.1.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|14.0.0|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|13.7.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|13.6.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|13.4.2|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### rich-click + + +|`rich-click` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.8.9|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|1.8.8|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.8.3|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.7.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.6.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### roman-numerals-py + + +|`roman-numerals-py` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.1.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| + +### rpds-py + + +|`rpds-py` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.26.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|0.24.0|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|0.18.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| + +### scandir + + +|`scandir` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.10.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### SecretStorage + + +|`SecretStorage` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.3.3|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### semantic-version + + +|`semantic-version` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.10.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| + +### semantic_version + + +|`semantic_version` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.10.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### shellingham + + +|`shellingham` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.5.4|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.5.0.post1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### simplegeneric + + +|`simplegeneric` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.8.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### simplejson + + +|`simplejson` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.20.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.19.2|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|3.19.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### six + + +|`six` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.17.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.16.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### snowballstemmer + + +|`snowballstemmer` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.0.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|2.2.0|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### sortedcontainers + + +|`sortedcontainers` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.4.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### Sphinx + + +|`Sphinx` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|8.2.3|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|7.3.7|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|7.0.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### sphinx + + +|`sphinx` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|7.2.6|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| + +### sphinx-bootstrap-theme + + +|`sphinx-bootstrap-theme` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.8.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### sphinxcontrib-applehelp + + +|`sphinxcontrib-applehelp` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.0.8|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.0.4|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### sphinxcontrib-devhelp + + +|`sphinxcontrib-devhelp` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.0.6|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.0.2|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### sphinxcontrib-htmlhelp + + +|`sphinxcontrib-htmlhelp` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.1.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2.0.5|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.0.1|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### sphinxcontrib-jsmath + + +|`sphinxcontrib-jsmath` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.0.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### sphinxcontrib-qthelp + + +|`sphinxcontrib-qthelp` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.0.7|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.0.3|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### sphinxcontrib-serializinghtml + + +|`sphinxcontrib-serializinghtml` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.1.10|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.1.5|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### sphinxcontrib-websupport + + +|`sphinxcontrib-websupport` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.0.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.2.7|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|1.2.4|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### sphinxcontrib_applehelp + + +|`sphinxcontrib_applehelp` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.0.7|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| + +### sphinxcontrib_devhelp + + +|`sphinxcontrib_devhelp` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.0.5|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| + +### sphinxcontrib_htmlhelp + + +|`sphinxcontrib_htmlhelp` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.0.4|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| + +### sphinxcontrib_qthelp + + +|`sphinxcontrib_qthelp` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.0.6|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| + +### sphinxcontrib_serializinghtml + + +|`sphinxcontrib_serializinghtml` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.1.9|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| + +### sphinxcontrib_websupport + + +|`sphinxcontrib_websupport` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.2.6|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| + +### tabulate + + +|`tabulate` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.9.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### threadpoolctl + + +|`threadpoolctl` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.6.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.5.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.2.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|3.1.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### toml + + +|`toml` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.10.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### tomli + + +|`tomli` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.0.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### tomli-w + + +|`tomli-w` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.2.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|1.0.0|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| + +### tomli_w + + +|`tomli_w` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|1.0.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### tomlkit + + +|`tomlkit` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.13.3|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|0.13.2|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|0.12.5|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.12.1|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|0.11.8|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### ujson + + +|`ujson` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|5.10.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|5.8.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### urllib3 + + +|`urllib3` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.5.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|2.4.0|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|2.2.1|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|2.0.7|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|1.26.16|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| + +### wcwidth + +|`wcwidth` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.2.13|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|0.2.8|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|0.2.6|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| -The overview below shows which Python-bundle-PyPI installations are available per target architecture in EESSI, ordered based on software version (new to old). +### webencodings -To start using Python-bundle-PyPI, load one of these modules using a `module load` command like: -```shell -module load Python-bundle-PyPI/2023.10-GCCcore-13.2.0 -``` +|`webencodings` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.5.1|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### xlrd -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Python-bundle-PyPI/2023.10-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Python-bundle-PyPI/2023.06-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`xlrd` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|2.0.2|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|2.0.1|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| -### Python-bundle-PyPI/2023.10-GCCcore-13.2.0 +### zipfile36 -This is a list of extensions included in the module: -alabaster-0.7.13, appdirs-1.4.4, asn1crypto-1.5.1, atomicwrites-1.4.1, attrs-23.1.0, Babel-2.13.1, backports.entry-points-selectable-1.2.0, backports.functools_lru_cache-1.6.6, bitarray-2.8.2, bitstring-4.1.2, blist-1.3.6, cachecontrol-0.13.1, cachy-0.3.0, certifi-2023.7.22, cffi-1.16.0, chardet-5.2.0, charset-normalizer-3.3.1, cleo-2.0.1, click-8.1.7, cloudpickle-3.0.0, colorama-0.4.6, commonmark-0.9.1, crashtest-0.4.1, Cython-3.0.4, decorator-5.1.1, distlib-0.3.7, distro-1.8.0, docopt-0.6.2, docutils-0.20.1, doit-0.36.0, dulwich-0.21.6, ecdsa-0.18.0, editables-0.5, exceptiongroup-1.1.3, execnet-2.0.2, filelock-3.13.0, fsspec-2023.10.0, future-0.18.3, glob2-0.7, html5lib-1.1, idna-3.4, imagesize-1.4.1, importlib_metadata-6.8.0, importlib_resources-6.1.0, iniconfig-2.0.0, intervaltree-3.1.0, intreehooks-1.0, ipaddress-1.0.23, jaraco.classes-3.3.0, jeepney-0.8.0, Jinja2-3.1.2, joblib-1.3.2, jsonschema-4.17.3, keyring-24.2.0, keyrings.alt-5.0.0, liac-arff-2.5.0, lockfile-0.12.2, markdown-it-py-3.0.0, MarkupSafe-2.1.3, mdurl-0.1.2, mock-5.1.0, more-itertools-10.1.0, msgpack-1.0.7, netaddr-0.9.0, netifaces-0.11.0, packaging-23.2, pastel-0.2.1, pathlib2-2.3.7.post1, pathspec-0.11.2, pbr-5.11.1, pexpect-4.8.0, pkginfo-1.9.6, platformdirs-3.11.0, pluggy-1.3.0, pooch-1.8.0, psutil-5.9.6, ptyprocess-0.7.0, py-1.11.0, py_expression_eval-0.3.14, pyasn1-0.5.0, pycparser-2.21, pycryptodome-3.19.0, pydevtool-0.3.0, Pygments-2.16.1, Pygments-2.16.1, pylev-1.4.0, PyNaCl-1.5.0, pyparsing-3.1.1, pyrsistent-0.20.0, pytest-7.4.3, pytest-xdist-3.3.1, python-dateutil-2.8.2, pytoml-0.1.21, pytz-2023.3.post1, rapidfuzz-2.15.2, regex-2023.10.3, requests-2.31.0, requests-toolbelt-1.0.0, rich-13.6.0, rich-click-1.7.0, scandir-1.10.0, SecretStorage-3.3.3, semantic_version-2.10.0, shellingham-1.5.4, simplegeneric-0.8.1, simplejson-3.19.2, six-1.16.0, snowballstemmer-2.2.0, sortedcontainers-2.4.0, sphinx-7.2.6, sphinx-bootstrap-theme-0.8.1, sphinxcontrib-jsmath-1.0.1, sphinxcontrib_applehelp-1.0.7, sphinxcontrib_devhelp-1.0.5, sphinxcontrib_htmlhelp-2.0.4, sphinxcontrib_qthelp-1.0.6, sphinxcontrib_serializinghtml-1.1.9, sphinxcontrib_websupport-1.2.6, tabulate-0.9.0, threadpoolctl-3.2.0, toml-0.10.2, tomli-2.0.1, tomli_w-1.0.0, tomlkit-0.12.1, ujson-5.8.0, urllib3-2.0.7, wcwidth-0.2.8, webencodings-0.5.1, xlrd-2.0.1, zipfile36-0.1.3, zipp-3.17.0 +|`zipfile36` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|0.1.3|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`
`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`
`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`
`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`
`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| -### Python-bundle-PyPI/2023.06-GCCcore-12.3.0 +### zipp -This is a list of extensions included in the module: -alabaster-0.7.13, appdirs-1.4.4, asn1crypto-1.5.1, atomicwrites-1.4.1, attrs-23.1.0, Babel-2.12.1, backports.entry-points-selectable-1.2.0, backports.functools_lru_cache-1.6.5, bitstring-4.0.2, blist-1.3.6, CacheControl-0.12.14, cachy-0.3.0, certifi-2023.5.7, cffi-1.15.1, chardet-5.1.0, charset-normalizer-3.1.0, cleo-2.0.1, click-8.1.3, cloudpickle-2.2.1, colorama-0.4.6, commonmark-0.9.1, crashtest-0.4.1, Cython-0.29.35, decorator-5.1.1, distlib-0.3.6, distro-1.8.0, docopt-0.6.2, docutils-0.20.1, doit-0.36.0, dulwich-0.21.5, ecdsa-0.18.0, editables-0.3, exceptiongroup-1.1.1, execnet-1.9.0, filelock-3.12.2, fsspec-2023.6.0, future-0.18.3, glob2-0.7, html5lib-1.1, idna-3.4, imagesize-1.4.1, importlib_metadata-6.7.0, importlib_resources-5.12.0, iniconfig-2.0.0, intervaltree-3.1.0, intreehooks-1.0, ipaddress-1.0.23, jaraco.classes-3.2.3, jeepney-0.8.0, Jinja2-3.1.2, joblib-1.2.0, jsonschema-4.17.3, keyring-23.13.1, keyrings.alt-4.2.0, liac-arff-2.5.0, lockfile-0.12.2, markdown-it-py-3.0.0, MarkupSafe-2.1.3, mdurl-0.1.2, mock-5.0.2, more-itertools-9.1.0, msgpack-1.0.5, netaddr-0.8.0, netifaces-0.11.0, packaging-23.1, pastel-0.2.1, pathlib2-2.3.7.post1, pathspec-0.11.1, pbr-5.11.1, pexpect-4.8.0, pkginfo-1.9.6, platformdirs-3.8.0, pluggy-1.2.0, pooch-1.7.0, psutil-5.9.5, ptyprocess-0.7.0, py-1.11.0, py_expression_eval-0.3.14, pyasn1-0.5.0, pycparser-2.21, pycryptodome-3.18.0, pydevtool-0.3.0, Pygments-2.15.1, Pygments-2.15.1, pylev-1.4.0, PyNaCl-1.5.0, pyparsing-3.1.0, pyrsistent-0.19.3, pytest-7.4.0, pytest-xdist-3.3.1, python-dateutil-2.8.2, pytoml-0.1.21, pytz-2023.3, rapidfuzz-2.15.1, regex-2023.6.3, requests-2.31.0, requests-toolbelt-1.0.0, rich-13.4.2, rich-click-1.6.1, scandir-1.10.0, SecretStorage-3.3.3, semantic_version-2.10.0, shellingham-1.5.0.post1, simplegeneric-0.8.1, simplejson-3.19.1, six-1.16.0, snowballstemmer-2.2.0, sortedcontainers-2.4.0, Sphinx-7.0.1, sphinx-bootstrap-theme-0.8.1, sphinxcontrib-applehelp-1.0.4, sphinxcontrib-devhelp-1.0.2, sphinxcontrib-htmlhelp-2.0.1, sphinxcontrib-jsmath-1.0.1, sphinxcontrib-qthelp-1.0.3, sphinxcontrib-serializinghtml-1.1.5, sphinxcontrib-websupport-1.2.4, tabulate-0.9.0, threadpoolctl-3.1.0, toml-0.10.2, tomli-2.0.1, tomli_w-1.0.0, tomlkit-0.11.8, ujson-5.8.0, urllib3-1.26.16, wcwidth-0.2.6, webencodings-0.5.1, xlrd-2.0.1, zipfile36-0.1.3, zipp-3.15.0 \ No newline at end of file +|`zipp` version|Python-bundle-PyPI modules that include it| +| --- | --- | +|3.23.0|`Python-bundle-PyPI/2025.07-GCCcore-14.3.0`| +|3.21.0|`Python-bundle-PyPI/2025.04-GCCcore-14.2.0`| +|3.19.2|`Python-bundle-PyPI/2024.06-GCCcore-13.3.0`| +|3.17.0|`Python-bundle-PyPI/2023.10-GCCcore-13.2.0`| +|3.15.0|`Python-bundle-PyPI/2023.06-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Python.md b/docs/available_software/detail/Python.md index fd0adaeea1..75bd68bfe8 100644 --- a/docs/available_software/detail/Python.md +++ b/docs/available_software/detail/Python.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Python is a programming language that lets you work more quickly and - integrate your systems more effectively. + description: "Python is a programming language that lets you work more quickly and\ + \ integrate your systems\n more effectively." license: Not confirmed name: Python offers: @@ -25,54 +23,1086 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Python/2.7.18-GCCcore-12.2.0-bare'', ''Python/3.10.8-GCCcore-12.2.0'', - ''Python/3.10.8-GCCcore-12.2.0-bare'', ''Python/3.11.3-GCCcore-12.3.0'', ''Python/3.11.5-GCCcore-13.2.0'']' + softwareVersion: '[''3.13.5'', ''3.13.1'', ''3.12.3'', ''3.11.5'', ''3.11.3'', ''3.10.8'', + ''2.7.18'']' url: https://python.org/ --- +# Python -Python -====== +Python is a programming language that lets you work more quickly and integrate your systems + more effectively. -Python is a programming language that lets you work more quickly and integrate your systems more effectively. +homepage: [https://python.org/](https://python.org/) -https://python.org/ -# Available modules +## Available installations -The overview below shows which Python installations are available per target architecture in EESSI, ordered based on software version (new to old). +|Python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.13.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Python/3.13.5-GCCcore-14.3.0`| +|3.13.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Python/3.13.1-GCCcore-14.2.0`| +|3.12.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Python/3.12.3-GCCcore-13.3.0`| +|3.11.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Python/3.11.5-GCCcore-13.2.0`| +|3.11.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Python/3.11.3-GCCcore-12.3.0`| +|3.10.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Python/3.10.8-GCCcore-12.2.0-bare`| +|3.10.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Python/3.10.8-GCCcore-12.2.0`| +|2.7.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Python/2.7.18-GCCcore-12.2.0-bare`| -To start using Python, load one of these modules using a `module load` command like: +## Extensions -```shell -module load Python/3.11.5-GCCcore-13.2.0 -``` +Overview of extensions included in Python installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Python/3.11.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Python/3.11.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Python/3.10.8-GCCcore-12.2.0-bare|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Python/3.10.8-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Python/2.7.18-GCCcore-12.2.0-bare|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### alabaster -### Python/3.11.5-GCCcore-13.2.0 +|`alabaster` version|Python modules that include it| +| --- | --- | +|0.7.12|`Python/3.10.8-GCCcore-12.2.0`| -This is a list of extensions included in the module: +### appdirs -flit_core-3.9.0, packaging-23.2, pip-23.2.1, setuptools-68.2.2, setuptools-scm-8.0.4, tomli-2.0.1, typing_extensions-4.8.0, wheel-0.41.2 -### Python/3.11.3-GCCcore-12.3.0 +|`appdirs` version|Python modules that include it| +| --- | --- | +|1.4.4|`Python/3.10.8-GCCcore-12.2.0`| -This is a list of extensions included in the module: +### asn1crypto -flit_core-3.9.0, packaging-23.1, pip-23.1.2, setuptools-67.7.2, setuptools_scm-7.1.0, tomli-2.0.1, typing_extensions-4.6.3, wheel-0.40.0 -### Python/3.10.8-GCCcore-12.2.0 +|`asn1crypto` version|Python modules that include it| +| --- | --- | +|1.5.1|`Python/3.10.8-GCCcore-12.2.0`| -This is a list of extensions included in the module: +### atomicwrites -alabaster-0.7.12, appdirs-1.4.4, asn1crypto-1.5.1, atomicwrites-1.4.1, attrs-22.1.0, Babel-2.11.0, backports.entry-points-selectable-1.2.0, backports.functools_lru_cache-1.6.4, bcrypt-4.0.1, bitstring-3.1.9, blist-1.3.6, CacheControl-0.12.11, cachy-0.3.0, certifi-2022.9.24, cffi-1.15.1, chardet-5.0.0, charset-normalizer-2.1.1, cleo-1.0.0a5, click-8.1.3, clikit-0.6.2, cloudpickle-2.2.0, colorama-0.4.6, commonmark-0.9.1, crashtest-0.3.1, cryptography-38.0.3, Cython-0.29.32, decorator-5.1.1, distlib-0.3.6, docopt-0.6.2, docutils-0.19, doit-0.36.0, dulwich-0.20.50, ecdsa-0.18.0, editables-0.3, exceptiongroup-1.0.1, execnet-1.9.0, filelock-3.8.0, flit-3.8.0, flit_core-3.8.0, flit_scm-1.7.0, fsspec-2022.11.0, future-0.18.2, glob2-0.7, hatch_fancy_pypi_readme-22.8.0, hatch_vcs-0.2.0, hatchling-1.11.1, html5lib-1.1, idna-3.4, imagesize-1.4.1, importlib_metadata-5.0.0, importlib_resources-5.10.0, iniconfig-1.1.1, intervaltree-3.1.0, intreehooks-1.0, ipaddress-1.0.23, jaraco.classes-3.2.3, jeepney-0.8.0, Jinja2-3.1.2, joblib-1.2.0, jsonschema-4.17.0, keyring-23.11.0, keyrings.alt-4.2.0, liac-arff-2.5.0, lockfile-0.12.2, MarkupSafe-2.1.1, mock-4.0.3, more-itertools-9.0.0, msgpack-1.0.4, netaddr-0.8.0, netifaces-0.11.0, packaging-21.3, paramiko-2.12.0, pastel-0.2.1, pathlib2-2.3.7.post1, pathspec-0.10.1, pbr-5.11.0, pexpect-4.8.0, pip-22.3.1, pkginfo-1.8.3, platformdirs-2.5.3, pluggy-1.0.0, poetry-1.2.2, poetry-core-1.3.2, poetry_plugin_export-1.2.0, pooch-1.6.0, psutil-5.9.4, ptyprocess-0.7.0, py-1.11.0, py_expression_eval-0.3.14, pyasn1-0.4.8, pycparser-2.21, pycryptodome-3.17, pydevtool-0.3.0, Pygments-2.13.0, pylev-1.4.0, PyNaCl-1.5.0, pyparsing-3.0.9, pyrsistent-0.19.2, pytest-7.2.0, pytest-xdist-3.1.0, python-dateutil-2.8.2, pytoml-0.1.21, pytz-2022.6, regex-2022.10.31, requests-2.28.1, requests-toolbelt-0.9.1, rich-13.1.0, rich-click-1.6.0, scandir-1.10.0, SecretStorage-3.3.3, semantic_version-2.10.0, setuptools-63.4.3, setuptools-rust-1.5.2, setuptools_scm-7.0.5, shellingham-1.5.0, simplegeneric-0.8.1, simplejson-3.17.6, six-1.16.0, snowballstemmer-2.2.0, sortedcontainers-2.4.0, Sphinx-5.3.0, sphinx-bootstrap-theme-0.8.1, sphinxcontrib-applehelp-1.0.2, sphinxcontrib-devhelp-1.0.2, sphinxcontrib-htmlhelp-2.0.0, sphinxcontrib-jsmath-1.0.1, sphinxcontrib-qthelp-1.0.3, sphinxcontrib-serializinghtml-1.1.5, sphinxcontrib-websupport-1.2.4, tabulate-0.9.0, threadpoolctl-3.1.0, toml-0.10.2, tomli-2.0.1, tomli_w-1.0.0, tomlkit-0.11.6, typing_extensions-4.4.0, ujson-5.5.0, urllib3-1.26.12, virtualenv-20.16.6, wcwidth-0.2.5, webencodings-0.5.1, wheel-0.38.4, xlrd-2.0.1, zipfile36-0.1.3, zipp-3.10.0 \ No newline at end of file + +|`atomicwrites` version|Python modules that include it| +| --- | --- | +|1.4.1|`Python/3.10.8-GCCcore-12.2.0`| + +### attrs + + +|`attrs` version|Python modules that include it| +| --- | --- | +|22.1.0|`Python/3.10.8-GCCcore-12.2.0`| + +### Babel + + +|`Babel` version|Python modules that include it| +| --- | --- | +|2.11.0|`Python/3.10.8-GCCcore-12.2.0`| + +### backports.entry-points-selectable + + +|`backports.entry-points-selectable` version|Python modules that include it| +| --- | --- | +|1.2.0|`Python/3.10.8-GCCcore-12.2.0`| + +### backports.functools_lru_cache + + +|`backports.functools_lru_cache` version|Python modules that include it| +| --- | --- | +|1.6.4|`Python/3.10.8-GCCcore-12.2.0`| + +### bcrypt + + +|`bcrypt` version|Python modules that include it| +| --- | --- | +|4.0.1|`Python/3.10.8-GCCcore-12.2.0`| + +### bitstring + + +|`bitstring` version|Python modules that include it| +| --- | --- | +|3.1.9|`Python/3.10.8-GCCcore-12.2.0`| + +### blist + + +|`blist` version|Python modules that include it| +| --- | --- | +|1.3.6|`Python/3.10.8-GCCcore-12.2.0`| + +### CacheControl + + +|`CacheControl` version|Python modules that include it| +| --- | --- | +|0.12.11|`Python/3.10.8-GCCcore-12.2.0`| + +### cachy + + +|`cachy` version|Python modules that include it| +| --- | --- | +|0.3.0|`Python/3.10.8-GCCcore-12.2.0`| + +### certifi + + +|`certifi` version|Python modules that include it| +| --- | --- | +|2022.9.24|`Python/3.10.8-GCCcore-12.2.0`| + +### cffi + + +|`cffi` version|Python modules that include it| +| --- | --- | +|1.15.1|`Python/3.10.8-GCCcore-12.2.0`| + +### chardet + + +|`chardet` version|Python modules that include it| +| --- | --- | +|5.0.0|`Python/3.10.8-GCCcore-12.2.0`| + +### charset-normalizer + + +|`charset-normalizer` version|Python modules that include it| +| --- | --- | +|2.1.1|`Python/3.10.8-GCCcore-12.2.0`| + +### cleo + + +|`cleo` version|Python modules that include it| +| --- | --- | +|1.0.0a5|`Python/3.10.8-GCCcore-12.2.0`| + +### click + + +|`click` version|Python modules that include it| +| --- | --- | +|8.1.3|`Python/3.10.8-GCCcore-12.2.0`| + +### clikit + + +|`clikit` version|Python modules that include it| +| --- | --- | +|0.6.2|`Python/3.10.8-GCCcore-12.2.0`| + +### cloudpickle + + +|`cloudpickle` version|Python modules that include it| +| --- | --- | +|2.2.0|`Python/3.10.8-GCCcore-12.2.0`| + +### colorama + + +|`colorama` version|Python modules that include it| +| --- | --- | +|0.4.6|`Python/3.10.8-GCCcore-12.2.0`| + +### commonmark + + +|`commonmark` version|Python modules that include it| +| --- | --- | +|0.9.1|`Python/3.10.8-GCCcore-12.2.0`| + +### crashtest + + +|`crashtest` version|Python modules that include it| +| --- | --- | +|0.3.1|`Python/3.10.8-GCCcore-12.2.0`| + +### cryptography + + +|`cryptography` version|Python modules that include it| +| --- | --- | +|38.0.3|`Python/3.10.8-GCCcore-12.2.0`| + +### Cython + + +|`Cython` version|Python modules that include it| +| --- | --- | +|0.29.32|`Python/3.10.8-GCCcore-12.2.0`| + +### decorator + + +|`decorator` version|Python modules that include it| +| --- | --- | +|5.1.1|`Python/3.10.8-GCCcore-12.2.0`| + +### distlib + + +|`distlib` version|Python modules that include it| +| --- | --- | +|0.3.6|`Python/3.10.8-GCCcore-12.2.0`| + +### docopt + + +|`docopt` version|Python modules that include it| +| --- | --- | +|0.6.2|`Python/3.10.8-GCCcore-12.2.0`| + +### docutils + + +|`docutils` version|Python modules that include it| +| --- | --- | +|0.19|`Python/3.10.8-GCCcore-12.2.0`| + +### doit + + +|`doit` version|Python modules that include it| +| --- | --- | +|0.36.0|`Python/3.10.8-GCCcore-12.2.0`| + +### dulwich + + +|`dulwich` version|Python modules that include it| +| --- | --- | +|0.20.50|`Python/3.10.8-GCCcore-12.2.0`| + +### ecdsa + + +|`ecdsa` version|Python modules that include it| +| --- | --- | +|0.18.0|`Python/3.10.8-GCCcore-12.2.0`| + +### editables + + +|`editables` version|Python modules that include it| +| --- | --- | +|0.3|`Python/3.10.8-GCCcore-12.2.0`| + +### exceptiongroup + + +|`exceptiongroup` version|Python modules that include it| +| --- | --- | +|1.0.1|`Python/3.10.8-GCCcore-12.2.0`| + +### execnet + + +|`execnet` version|Python modules that include it| +| --- | --- | +|1.9.0|`Python/3.10.8-GCCcore-12.2.0`| + +### filelock + + +|`filelock` version|Python modules that include it| +| --- | --- | +|3.8.0|`Python/3.10.8-GCCcore-12.2.0`| + +### flit + + +|`flit` version|Python modules that include it| +| --- | --- | +|3.8.0|`Python/3.10.8-GCCcore-12.2.0`| + +### flit_core + + +|`flit_core` version|Python modules that include it| +| --- | --- | +|3.12.0|`Python/3.13.5-GCCcore-14.3.0`| +|3.10.1|`Python/3.13.1-GCCcore-14.2.0`| +|3.9.0|`Python/3.12.3-GCCcore-13.3.0`
`Python/3.11.5-GCCcore-13.2.0`
`Python/3.11.3-GCCcore-12.3.0`| +|3.8.0|`Python/3.10.8-GCCcore-12.2.0`| + +### flit_scm + + +|`flit_scm` version|Python modules that include it| +| --- | --- | +|1.7.0|`Python/3.10.8-GCCcore-12.2.0`| + +### fsspec + + +|`fsspec` version|Python modules that include it| +| --- | --- | +|2022.11.0|`Python/3.10.8-GCCcore-12.2.0`| + +### future + + +|`future` version|Python modules that include it| +| --- | --- | +|0.18.2|`Python/3.10.8-GCCcore-12.2.0`| + +### glob2 + + +|`glob2` version|Python modules that include it| +| --- | --- | +|0.7|`Python/3.10.8-GCCcore-12.2.0`| + +### hatch_fancy_pypi_readme + + +|`hatch_fancy_pypi_readme` version|Python modules that include it| +| --- | --- | +|22.8.0|`Python/3.10.8-GCCcore-12.2.0`| + +### hatch_vcs + + +|`hatch_vcs` version|Python modules that include it| +| --- | --- | +|0.2.0|`Python/3.10.8-GCCcore-12.2.0`| + +### hatchling + + +|`hatchling` version|Python modules that include it| +| --- | --- | +|1.11.1|`Python/3.10.8-GCCcore-12.2.0`| + +### html5lib + + +|`html5lib` version|Python modules that include it| +| --- | --- | +|1.1|`Python/3.10.8-GCCcore-12.2.0`| + +### idna + + +|`idna` version|Python modules that include it| +| --- | --- | +|3.4|`Python/3.10.8-GCCcore-12.2.0`| + +### imagesize + + +|`imagesize` version|Python modules that include it| +| --- | --- | +|1.4.1|`Python/3.10.8-GCCcore-12.2.0`| + +### importlib_metadata + + +|`importlib_metadata` version|Python modules that include it| +| --- | --- | +|5.0.0|`Python/3.10.8-GCCcore-12.2.0`| + +### importlib_resources + + +|`importlib_resources` version|Python modules that include it| +| --- | --- | +|5.10.0|`Python/3.10.8-GCCcore-12.2.0`| + +### iniconfig + + +|`iniconfig` version|Python modules that include it| +| --- | --- | +|1.1.1|`Python/3.10.8-GCCcore-12.2.0`| + +### intervaltree + + +|`intervaltree` version|Python modules that include it| +| --- | --- | +|3.1.0|`Python/3.10.8-GCCcore-12.2.0`| + +### intreehooks + + +|`intreehooks` version|Python modules that include it| +| --- | --- | +|1.0|`Python/3.10.8-GCCcore-12.2.0`| + +### ipaddress + + +|`ipaddress` version|Python modules that include it| +| --- | --- | +|1.0.23|`Python/3.10.8-GCCcore-12.2.0`| + +### jaraco.classes + + +|`jaraco.classes` version|Python modules that include it| +| --- | --- | +|3.2.3|`Python/3.10.8-GCCcore-12.2.0`| + +### jeepney + + +|`jeepney` version|Python modules that include it| +| --- | --- | +|0.8.0|`Python/3.10.8-GCCcore-12.2.0`| + +### Jinja2 + + +|`Jinja2` version|Python modules that include it| +| --- | --- | +|3.1.2|`Python/3.10.8-GCCcore-12.2.0`| + +### joblib + + +|`joblib` version|Python modules that include it| +| --- | --- | +|1.2.0|`Python/3.10.8-GCCcore-12.2.0`| + +### jsonschema + + +|`jsonschema` version|Python modules that include it| +| --- | --- | +|4.17.0|`Python/3.10.8-GCCcore-12.2.0`| + +### keyring + + +|`keyring` version|Python modules that include it| +| --- | --- | +|23.11.0|`Python/3.10.8-GCCcore-12.2.0`| + +### keyrings.alt + + +|`keyrings.alt` version|Python modules that include it| +| --- | --- | +|4.2.0|`Python/3.10.8-GCCcore-12.2.0`| + +### liac-arff + + +|`liac-arff` version|Python modules that include it| +| --- | --- | +|2.5.0|`Python/3.10.8-GCCcore-12.2.0`| + +### lockfile + + +|`lockfile` version|Python modules that include it| +| --- | --- | +|0.12.2|`Python/3.10.8-GCCcore-12.2.0`| + +### MarkupSafe + + +|`MarkupSafe` version|Python modules that include it| +| --- | --- | +|2.1.1|`Python/3.10.8-GCCcore-12.2.0`| + +### mock + + +|`mock` version|Python modules that include it| +| --- | --- | +|4.0.3|`Python/3.10.8-GCCcore-12.2.0`| + +### more-itertools + + +|`more-itertools` version|Python modules that include it| +| --- | --- | +|9.0.0|`Python/3.10.8-GCCcore-12.2.0`| + +### msgpack + + +|`msgpack` version|Python modules that include it| +| --- | --- | +|1.0.4|`Python/3.10.8-GCCcore-12.2.0`| + +### netaddr + + +|`netaddr` version|Python modules that include it| +| --- | --- | +|0.8.0|`Python/3.10.8-GCCcore-12.2.0`| + +### netifaces + + +|`netifaces` version|Python modules that include it| +| --- | --- | +|0.11.0|`Python/3.10.8-GCCcore-12.2.0`| + +### packaging + + +|`packaging` version|Python modules that include it| +| --- | --- | +|25.0|`Python/3.13.5-GCCcore-14.3.0`| +|24.2|`Python/3.13.1-GCCcore-14.2.0`| +|24.0|`Python/3.12.3-GCCcore-13.3.0`| +|23.2|`Python/3.11.5-GCCcore-13.2.0`| +|23.1|`Python/3.11.3-GCCcore-12.3.0`| +|21.3|`Python/3.10.8-GCCcore-12.2.0`| + +### paramiko + + +|`paramiko` version|Python modules that include it| +| --- | --- | +|2.12.0|`Python/3.10.8-GCCcore-12.2.0`| + +### pastel + + +|`pastel` version|Python modules that include it| +| --- | --- | +|0.2.1|`Python/3.10.8-GCCcore-12.2.0`| + +### pathlib2 + + +|`pathlib2` version|Python modules that include it| +| --- | --- | +|2.3.7.post1|`Python/3.10.8-GCCcore-12.2.0`| + +### pathspec + + +|`pathspec` version|Python modules that include it| +| --- | --- | +|0.10.1|`Python/3.10.8-GCCcore-12.2.0`| + +### pbr + + +|`pbr` version|Python modules that include it| +| --- | --- | +|5.11.0|`Python/3.10.8-GCCcore-12.2.0`| + +### pexpect + + +|`pexpect` version|Python modules that include it| +| --- | --- | +|4.8.0|`Python/3.10.8-GCCcore-12.2.0`| + +### pip + + +|`pip` version|Python modules that include it| +| --- | --- | +|25.1.1|`Python/3.13.5-GCCcore-14.3.0`| +|24.3.1|`Python/3.13.1-GCCcore-14.2.0`| +|24.0|`Python/3.12.3-GCCcore-13.3.0`| +|23.2.1|`Python/3.11.5-GCCcore-13.2.0`| +|23.1.2|`Python/3.11.3-GCCcore-12.3.0`| +|22.3.1|`Python/3.10.8-GCCcore-12.2.0`| + +### pkginfo + + +|`pkginfo` version|Python modules that include it| +| --- | --- | +|1.8.3|`Python/3.10.8-GCCcore-12.2.0`| + +### platformdirs + + +|`platformdirs` version|Python modules that include it| +| --- | --- | +|2.5.3|`Python/3.10.8-GCCcore-12.2.0`| + +### pluggy + + +|`pluggy` version|Python modules that include it| +| --- | --- | +|1.0.0|`Python/3.10.8-GCCcore-12.2.0`| + +### poetry + + +|`poetry` version|Python modules that include it| +| --- | --- | +|1.2.2|`Python/3.10.8-GCCcore-12.2.0`| + +### poetry-core + + +|`poetry-core` version|Python modules that include it| +| --- | --- | +|1.3.2|`Python/3.10.8-GCCcore-12.2.0`| + +### poetry_plugin_export + + +|`poetry_plugin_export` version|Python modules that include it| +| --- | --- | +|1.2.0|`Python/3.10.8-GCCcore-12.2.0`| + +### pooch + + +|`pooch` version|Python modules that include it| +| --- | --- | +|1.6.0|`Python/3.10.8-GCCcore-12.2.0`| + +### psutil + + +|`psutil` version|Python modules that include it| +| --- | --- | +|5.9.4|`Python/3.10.8-GCCcore-12.2.0`| + +### ptyprocess + + +|`ptyprocess` version|Python modules that include it| +| --- | --- | +|0.7.0|`Python/3.10.8-GCCcore-12.2.0`| + +### py + + +|`py` version|Python modules that include it| +| --- | --- | +|1.11.0|`Python/3.10.8-GCCcore-12.2.0`| + +### py_expression_eval + + +|`py_expression_eval` version|Python modules that include it| +| --- | --- | +|0.3.14|`Python/3.10.8-GCCcore-12.2.0`| + +### pyasn1 + + +|`pyasn1` version|Python modules that include it| +| --- | --- | +|0.4.8|`Python/3.10.8-GCCcore-12.2.0`| + +### pycparser + + +|`pycparser` version|Python modules that include it| +| --- | --- | +|2.21|`Python/3.10.8-GCCcore-12.2.0`| + +### pycryptodome + + +|`pycryptodome` version|Python modules that include it| +| --- | --- | +|3.17|`Python/3.10.8-GCCcore-12.2.0`| + +### pydevtool + + +|`pydevtool` version|Python modules that include it| +| --- | --- | +|0.3.0|`Python/3.10.8-GCCcore-12.2.0`| + +### Pygments + + +|`Pygments` version|Python modules that include it| +| --- | --- | +|2.13.0|`Python/3.10.8-GCCcore-12.2.0`| + +### pylev + + +|`pylev` version|Python modules that include it| +| --- | --- | +|1.4.0|`Python/3.10.8-GCCcore-12.2.0`| + +### PyNaCl + + +|`PyNaCl` version|Python modules that include it| +| --- | --- | +|1.5.0|`Python/3.10.8-GCCcore-12.2.0`| + +### pyparsing + + +|`pyparsing` version|Python modules that include it| +| --- | --- | +|3.0.9|`Python/3.10.8-GCCcore-12.2.0`| + +### pyrsistent + + +|`pyrsistent` version|Python modules that include it| +| --- | --- | +|0.19.2|`Python/3.10.8-GCCcore-12.2.0`| + +### pytest + + +|`pytest` version|Python modules that include it| +| --- | --- | +|7.2.0|`Python/3.10.8-GCCcore-12.2.0`| + +### pytest-xdist + + +|`pytest-xdist` version|Python modules that include it| +| --- | --- | +|3.1.0|`Python/3.10.8-GCCcore-12.2.0`| + +### python-dateutil + + +|`python-dateutil` version|Python modules that include it| +| --- | --- | +|2.8.2|`Python/3.10.8-GCCcore-12.2.0`| + +### pytoml + + +|`pytoml` version|Python modules that include it| +| --- | --- | +|0.1.21|`Python/3.10.8-GCCcore-12.2.0`| + +### pytz + + +|`pytz` version|Python modules that include it| +| --- | --- | +|2022.6|`Python/3.10.8-GCCcore-12.2.0`| + +### regex + + +|`regex` version|Python modules that include it| +| --- | --- | +|2022.10.31|`Python/3.10.8-GCCcore-12.2.0`| + +### requests + + +|`requests` version|Python modules that include it| +| --- | --- | +|2.28.1|`Python/3.10.8-GCCcore-12.2.0`| + +### requests-toolbelt + + +|`requests-toolbelt` version|Python modules that include it| +| --- | --- | +|0.9.1|`Python/3.10.8-GCCcore-12.2.0`| + +### rich + + +|`rich` version|Python modules that include it| +| --- | --- | +|13.1.0|`Python/3.10.8-GCCcore-12.2.0`| + +### rich-click + + +|`rich-click` version|Python modules that include it| +| --- | --- | +|1.6.0|`Python/3.10.8-GCCcore-12.2.0`| + +### scandir + + +|`scandir` version|Python modules that include it| +| --- | --- | +|1.10.0|`Python/3.10.8-GCCcore-12.2.0`| + +### SecretStorage + + +|`SecretStorage` version|Python modules that include it| +| --- | --- | +|3.3.3|`Python/3.10.8-GCCcore-12.2.0`| + +### semantic_version + + +|`semantic_version` version|Python modules that include it| +| --- | --- | +|2.10.0|`Python/3.10.8-GCCcore-12.2.0`| + +### setuptools + + +|`setuptools` version|Python modules that include it| +| --- | --- | +|80.9.0|`Python/3.13.5-GCCcore-14.3.0`| +|75.6.0|`Python/3.13.1-GCCcore-14.2.0`| +|70.0.0|`Python/3.12.3-GCCcore-13.3.0`| +|68.2.2|`Python/3.11.5-GCCcore-13.2.0`| +|67.7.2|`Python/3.11.3-GCCcore-12.3.0`| +|63.4.3|`Python/3.10.8-GCCcore-12.2.0`| + +### setuptools-rust + + +|`setuptools-rust` version|Python modules that include it| +| --- | --- | +|1.5.2|`Python/3.10.8-GCCcore-12.2.0`| + +### setuptools-scm + + +|`setuptools-scm` version|Python modules that include it| +| --- | --- | +|8.0.4|`Python/3.11.5-GCCcore-13.2.0`| + +### setuptools_scm + + +|`setuptools_scm` version|Python modules that include it| +| --- | --- | +|8.3.1|`Python/3.13.5-GCCcore-14.3.0`| +|8.1.0|`Python/3.13.1-GCCcore-14.2.0`
`Python/3.12.3-GCCcore-13.3.0`| +|7.1.0|`Python/3.11.3-GCCcore-12.3.0`| +|7.0.5|`Python/3.10.8-GCCcore-12.2.0`| + +### shellingham + + +|`shellingham` version|Python modules that include it| +| --- | --- | +|1.5.0|`Python/3.10.8-GCCcore-12.2.0`| + +### simplegeneric + + +|`simplegeneric` version|Python modules that include it| +| --- | --- | +|0.8.1|`Python/3.10.8-GCCcore-12.2.0`| + +### simplejson + + +|`simplejson` version|Python modules that include it| +| --- | --- | +|3.17.6|`Python/3.10.8-GCCcore-12.2.0`| + +### six + + +|`six` version|Python modules that include it| +| --- | --- | +|1.16.0|`Python/3.10.8-GCCcore-12.2.0`| + +### snowballstemmer + + +|`snowballstemmer` version|Python modules that include it| +| --- | --- | +|2.2.0|`Python/3.10.8-GCCcore-12.2.0`| + +### sortedcontainers + + +|`sortedcontainers` version|Python modules that include it| +| --- | --- | +|2.4.0|`Python/3.10.8-GCCcore-12.2.0`| + +### Sphinx + + +|`Sphinx` version|Python modules that include it| +| --- | --- | +|5.3.0|`Python/3.10.8-GCCcore-12.2.0`| + +### sphinx-bootstrap-theme + + +|`sphinx-bootstrap-theme` version|Python modules that include it| +| --- | --- | +|0.8.1|`Python/3.10.8-GCCcore-12.2.0`| + +### sphinxcontrib-applehelp + + +|`sphinxcontrib-applehelp` version|Python modules that include it| +| --- | --- | +|1.0.2|`Python/3.10.8-GCCcore-12.2.0`| + +### sphinxcontrib-devhelp + + +|`sphinxcontrib-devhelp` version|Python modules that include it| +| --- | --- | +|1.0.2|`Python/3.10.8-GCCcore-12.2.0`| + +### sphinxcontrib-htmlhelp + + +|`sphinxcontrib-htmlhelp` version|Python modules that include it| +| --- | --- | +|2.0.0|`Python/3.10.8-GCCcore-12.2.0`| + +### sphinxcontrib-jsmath + + +|`sphinxcontrib-jsmath` version|Python modules that include it| +| --- | --- | +|1.0.1|`Python/3.10.8-GCCcore-12.2.0`| + +### sphinxcontrib-qthelp + + +|`sphinxcontrib-qthelp` version|Python modules that include it| +| --- | --- | +|1.0.3|`Python/3.10.8-GCCcore-12.2.0`| + +### sphinxcontrib-serializinghtml + + +|`sphinxcontrib-serializinghtml` version|Python modules that include it| +| --- | --- | +|1.1.5|`Python/3.10.8-GCCcore-12.2.0`| + +### sphinxcontrib-websupport + + +|`sphinxcontrib-websupport` version|Python modules that include it| +| --- | --- | +|1.2.4|`Python/3.10.8-GCCcore-12.2.0`| + +### tabulate + + +|`tabulate` version|Python modules that include it| +| --- | --- | +|0.9.0|`Python/3.10.8-GCCcore-12.2.0`| + +### threadpoolctl + + +|`threadpoolctl` version|Python modules that include it| +| --- | --- | +|3.1.0|`Python/3.10.8-GCCcore-12.2.0`| + +### toml + + +|`toml` version|Python modules that include it| +| --- | --- | +|0.10.2|`Python/3.10.8-GCCcore-12.2.0`| + +### tomli + + +|`tomli` version|Python modules that include it| +| --- | --- | +|2.2.1|`Python/3.13.5-GCCcore-14.3.0`
`Python/3.13.1-GCCcore-14.2.0`| +|2.0.1|`Python/3.12.3-GCCcore-13.3.0`
`Python/3.11.5-GCCcore-13.2.0`
`Python/3.11.3-GCCcore-12.3.0`
`Python/3.10.8-GCCcore-12.2.0`| + +### tomli_w + + +|`tomli_w` version|Python modules that include it| +| --- | --- | +|1.0.0|`Python/3.10.8-GCCcore-12.2.0`| + +### tomlkit + + +|`tomlkit` version|Python modules that include it| +| --- | --- | +|0.11.6|`Python/3.10.8-GCCcore-12.2.0`| + +### typing_extensions + + +|`typing_extensions` version|Python modules that include it| +| --- | --- | +|4.14.0|`Python/3.13.5-GCCcore-14.3.0`| +|4.12.2|`Python/3.13.1-GCCcore-14.2.0`| +|4.11.0|`Python/3.12.3-GCCcore-13.3.0`| +|4.8.0|`Python/3.11.5-GCCcore-13.2.0`| +|4.6.3|`Python/3.11.3-GCCcore-12.3.0`| +|4.4.0|`Python/3.10.8-GCCcore-12.2.0`| + +### ujson + + +|`ujson` version|Python modules that include it| +| --- | --- | +|5.5.0|`Python/3.10.8-GCCcore-12.2.0`| + +### urllib3 + + +|`urllib3` version|Python modules that include it| +| --- | --- | +|1.26.12|`Python/3.10.8-GCCcore-12.2.0`| + +### virtualenv + + +|`virtualenv` version|Python modules that include it| +| --- | --- | +|20.16.6|`Python/3.10.8-GCCcore-12.2.0`| + +### wcwidth + + +|`wcwidth` version|Python modules that include it| +| --- | --- | +|0.2.5|`Python/3.10.8-GCCcore-12.2.0`| + +### webencodings + + +|`webencodings` version|Python modules that include it| +| --- | --- | +|0.5.1|`Python/3.10.8-GCCcore-12.2.0`| + +### wheel + + +|`wheel` version|Python modules that include it| +| --- | --- | +|0.45.1|`Python/3.13.5-GCCcore-14.3.0`
`Python/3.13.1-GCCcore-14.2.0`| +|0.43.0|`Python/3.12.3-GCCcore-13.3.0`| +|0.41.2|`Python/3.11.5-GCCcore-13.2.0`| +|0.40.0|`Python/3.11.3-GCCcore-12.3.0`| +|0.38.4|`Python/3.10.8-GCCcore-12.2.0`| + +### xlrd + + +|`xlrd` version|Python modules that include it| +| --- | --- | +|2.0.1|`Python/3.10.8-GCCcore-12.2.0`| + +### zipfile36 + + +|`zipfile36` version|Python modules that include it| +| --- | --- | +|0.1.3|`Python/3.10.8-GCCcore-12.2.0`| + +### zipp + + +|`zipp` version|Python modules that include it| +| --- | --- | +|3.10.0|`Python/3.10.8-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/QScintilla.md b/docs/available_software/detail/QScintilla.md index f9a424a7db..5ec3590f0f 100644 --- a/docs/available_software/detail/QScintilla.md +++ b/docs/available_software/detail/QScintilla.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''QScintilla/2.14.1-GCCcore-12.3.0'']' + softwareVersion: '[''2.14.1'']' url: https://www.riverbankcomputing.com/software/qscintilla --- - -QScintilla -========== +# QScintilla QScintilla is a port to Qt of Neil Hodgson's Scintilla C++ editor control -https://www.riverbankcomputing.com/software/qscintilla -# Available modules - - -The overview below shows which QScintilla installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using QScintilla, load one of these modules using a `module load` command like: +homepage: [https://www.riverbankcomputing.com/software/qscintilla](https://www.riverbankcomputing.com/software/qscintilla) -```shell -module load QScintilla/2.14.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|QScintilla/2.14.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|QScintilla version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.14.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`QScintilla/2.14.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Qhull.md b/docs/available_software/detail/Qhull.md index e2db08065a..ac93ef337f 100644 --- a/docs/available_software/detail/Qhull.md +++ b/docs/available_software/detail/Qhull.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, - halfspace intersection about a point, furthest-site Delaunay triangulation, and - furthest-site Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, and higher - dimensions. Qhull implements the Quickhull algorithm for computing the convex - hull. + description: "\n Qhull computes the convex hull, Delaunay triangulation, Voronoi\ + \ diagram,\n halfspace intersection about a point, furthest-site Delaunay triangulation,\n\ + \ and furthest-site Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, and\n\ + \ higher dimensions. Qhull implements the Quickhull algorithm for computing the\n\ + \ convex hull.\n" license: Not confirmed name: Qhull offers: @@ -28,33 +26,30 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Qhull/2020.2-GCCcore-12.2.0'', ''Qhull/2020.2-GCCcore-12.3.0'', - ''Qhull/2020.2-GCCcore-13.2.0'']' + softwareVersion: '[''2020.2'']' url: http://www.qhull.org --- +# Qhull -Qhull -===== -Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, halfspace intersection about a point, furthest-site Delaunay triangulation, and furthest-site Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, and higher dimensions. Qhull implements the Quickhull algorithm for computing the convex hull. + Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, + halfspace intersection about a point, furthest-site Delaunay triangulation, + and furthest-site Voronoi diagram. The source code runs in 2-d, 3-d, 4-d, and + higher dimensions. Qhull implements the Quickhull algorithm for computing the + convex hull. -http://www.qhull.org -# Available modules +homepage: [http://www.qhull.org](http://www.qhull.org) -The overview below shows which Qhull installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using Qhull, load one of these modules using a `module load` command like: -```shell -module load Qhull/2020.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Qhull/2020.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Qhull/2020.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Qhull/2020.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Qhull version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2020.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Qhull/2020.2-GCCcore-14.3.0`| +|2020.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Qhull/2020.2-GCCcore-14.2.0`| +|2020.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Qhull/2020.2-GCCcore-13.3.0`| +|2020.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Qhull/2020.2-GCCcore-13.2.0`| +|2020.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Qhull/2020.2-GCCcore-12.3.0`| +|2020.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Qhull/2020.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Qt5.md b/docs/available_software/detail/Qt5.md index 77d7b7063f..ffa1a08243 100644 --- a/docs/available_software/detail/Qt5.md +++ b/docs/available_software/detail/Qt5.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Qt5/5.15.7-GCCcore-12.2.0'', ''Qt5/5.15.10-GCCcore-12.3.0'', - ''Qt5/5.15.13-GCCcore-13.2.0'']' + softwareVersion: '[''5.15.13'', ''5.15.10'', ''5.15.7'']' url: https://qt.io/ --- - -Qt5 -=== +# Qt5 Qt is a comprehensive cross-platform C++ application framework. -https://qt.io/ -# Available modules - - -The overview below shows which Qt5 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Qt5, load one of these modules using a `module load` command like: +homepage: [https://qt.io/](https://qt.io/) -```shell -module load Qt5/5.15.13-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Qt5/5.15.13-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Qt5/5.15.10-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Qt5/5.15.7-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Qt5 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.15.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Qt5/5.15.13-GCCcore-13.2.0`| +|5.15.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Qt5/5.15.10-GCCcore-12.3.0`| +|5.15.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Qt5/5.15.7-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Qt6.md b/docs/available_software/detail/Qt6.md new file mode 100644 index 0000000000..9e923065a4 --- /dev/null +++ b/docs/available_software/detail/Qt6.md @@ -0,0 +1,42 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Qt is a comprehensive cross-platform C++ application framework. + license: Not confirmed + name: Qt6 + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''6.9.3'', ''6.7.2'']' + url: https://qt.io/ +--- +# Qt6 + + +Qt is a comprehensive cross-platform C++ application framework. + +homepage: [https://qt.io/](https://qt.io/) + +## Available installations + + +|Qt6 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Qt6/6.9.3-GCCcore-14.3.0`| +|6.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Qt6/6.9.3-GCCcore-14.2.0`| +|6.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Qt6/6.7.2-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/QuantumESPRESSO.md b/docs/available_software/detail/QuantumESPRESSO.md index 8d82ff0cb9..b4ef1f5285 100644 --- a/docs/available_software/detail/QuantumESPRESSO.md +++ b/docs/available_software/detail/QuantumESPRESSO.md @@ -1,13 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Quantum ESPRESSO is an integrated suite of computer codesfor electronic-structure - calculations and materials modeling at the nanoscale.It is based on density-functional - theory, plane waves, and pseudopotentials(both norm-conserving and ultrasoft). + description: 'Quantum ESPRESSO is an integrated suite of computer codes + + for electronic-structure calculations and materials modeling at the nanoscale. + + It is based on density-functional theory, plane waves, and pseudopotentials + + (both norm-conserving and ultrasoft). + + ' license: Not confirmed name: QuantumESPRESSO offers: @@ -26,31 +30,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''QuantumESPRESSO/7.2-foss-2022b'', ''QuantumESPRESSO/7.3.1-foss-2023a'']' + softwareVersion: '[''7.5'', ''7.3.1'', ''7.2'']' url: https://www.quantum-espresso.org --- +# QuantumESPRESSO -QuantumESPRESSO -=============== - - -Quantum ESPRESSO is an integrated suite of computer codesfor electronic-structure calculations and materials modeling at the nanoscale.It is based on density-functional theory, plane waves, and pseudopotentials(both norm-conserving and ultrasoft). - -https://www.quantum-espresso.org -# Available modules +Quantum ESPRESSO is an integrated suite of computer codes +for electronic-structure calculations and materials modeling at the nanoscale. +It is based on density-functional theory, plane waves, and pseudopotentials +(both norm-conserving and ultrasoft). -The overview below shows which QuantumESPRESSO installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using QuantumESPRESSO, load one of these modules using a `module load` command like: +homepage: [https://www.quantum-espresso.org](https://www.quantum-espresso.org) -```shell -module load QuantumESPRESSO/7.3.1-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|QuantumESPRESSO/7.3.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|QuantumESPRESSO/7.2-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|QuantumESPRESSO version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`QuantumESPRESSO/7.5-foss-2025b`| +|7.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`QuantumESPRESSO/7.3.1-foss-2023a`| +|7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`QuantumESPRESSO/7.2-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/R-bundle-Bioconductor.md b/docs/available_software/detail/R-bundle-Bioconductor.md index cbf8f990eb..35c00df2a7 100644 --- a/docs/available_software/detail/R-bundle-Bioconductor.md +++ b/docs/available_software/detail/R-bundle-Bioconductor.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Bioconductor provides tools for the analysis and coprehension of high-throughput - genomic data. + description: "Bioconductor provides tools for the analysis and coprehension\n of\ + \ high-throughput genomic data." license: Not confirmed name: R-bundle-Bioconductor offers: @@ -25,44 +23,3832 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2'', ''R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2'']' + softwareVersion: '[''3.20'', ''3.18'', ''3.16'']' url: https://bioconductor.org --- +# R-bundle-Bioconductor -R-bundle-Bioconductor -===================== +Bioconductor provides tools for the analysis and coprehension + of high-throughput genomic data. -Bioconductor provides tools for the analysis and coprehension of high-throughput genomic data. +homepage: [https://bioconductor.org](https://bioconductor.org) -https://bioconductor.org -# Available modules +## Available installations -The overview below shows which R-bundle-Bioconductor installations are available per target architecture in EESSI, ordered based on software version (new to old). +|R-bundle-Bioconductor version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.20|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| -To start using R-bundle-Bioconductor, load one of these modules using a `module load` command like: +## Extensions -```shell -module load R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2 -``` +Overview of extensions included in R-bundle-Bioconductor installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### affxparser -### R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2 +|`affxparser` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.78.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.74.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.70.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| -This is a list of extensions included in the module: +### affy -affxparser-1.74.0, affy-1.80.0, affycoretools-1.74.0, affyio-1.72.0, AgiMicroRna-2.52.0, agricolae-1.3-7, ALDEx2-1.34.0, ALL-1.44.0, ANCOMBC-2.4.0, annaffy-1.74.0, annotate-1.80.0, AnnotationDbi-1.64.1, AnnotationFilter-1.26.0, AnnotationForge-1.44.0, AnnotationHub-3.10.0, anytime-0.3.9, aroma.affymetrix-3.2.1, aroma.apd-0.7.0, aroma.core-3.3.0, aroma.light-3.32.0, ash-1.0-15, ATACseqQC-1.26.0, AUCell-1.24.0, aws.s3-0.3.21, aws.signature-0.6.0, babelgene-22.9, ballgown-2.34.0, basilisk-1.14.2, basilisk.utils-1.14.1, batchelor-1.18.1, baySeq-2.36.0, beachmat-2.18.0, BH-1.84.0-0, Biobase-2.62.0, BiocBaseUtils-1.4.0, BiocFileCache-2.10.1, BiocGenerics-0.48.0, BiocIO-1.12.0, BiocManager-1.30.22, BiocNeighbors-1.20.2, BiocParallel-1.36.0, BiocSingular-1.18.0, BiocStyle-2.30.0, BiocVersion-3.18.1, biomaRt-2.58.0, biomformat-1.30.0, Biostrings-2.70.0, biovizBase-1.50.0, blme-1.0-5, bluster-1.12.0, bookdown-0.37, BSgenome-1.70.1, BSgenome.Cfamiliaris.UCSC.canFam3-1.4.0, BSgenome.Hsapiens.UCSC.hg19-1.4.3, BSgenome.Hsapiens.UCSC.hg38-1.4.5, BSgenome.Mmusculus.UCSC.mm10-1.4.3, bsseq-1.38.0, bumphunter-1.44.0, ca-0.71.1, CAGEfightR-1.22.0, CAGEr-2.8.0, CAMERA-1.58.0, Category-2.68.0, ccdata-1.28.0, ccmap-1.28.0, CGHbase-1.62.0, CGHcall-2.64.0, ChIPpeakAnno-3.36.0, ChIPseeker-1.38.0, chromVAR-1.24.0, clusterProfiler-4.10.0, CNEr-1.38.0, coloc-5.2.3, colorRamps-2.3.1, ComplexHeatmap-2.18.0, ConsensusClusterPlus-1.66.0, conumee-1.36.0, crossmeta-1.28.0, cummeRbund-2.44.0, cytolib-2.14.1, CytoML-2.14.0, dada2-1.30.0, ddPCRclust-1.22.0, DECIPHER-2.30.0, DeconRNASeq-1.44.0, decontam-1.22.0, decoupleR-2.8.0, DEGseq-1.56.1, DelayedArray-0.28.0, DelayedMatrixStats-1.24.0, densEstBayes-1.0-2.2, derfinder-1.36.0, derfinderHelper-1.36.0, DESeq2-1.42.0, diffcyt-1.22.0, dir.expiry-1.10.0, directlabels-2024.1.21, DirichletMultinomial-1.44.0, DNABarcodes-1.32.0, DNAcopy-1.76.0, DO.db-2.9, docopt-0.7.1, DOSE-3.28.2, dqrng-0.3.2, DRIMSeq-1.30.0, DropletUtils-1.22.0, DSS-2.50.1, dupRadar-1.32.0, DynDoc-1.80.0, EBImage-4.44.0, edgeR-4.0.12, egg-0.4.5, emmeans-1.10.0, enrichplot-1.22.0, EnsDb.Hsapiens.v75-2.99.0, EnsDb.Hsapiens.v79-2.99.0, EnsDb.Hsapiens.v86-2.99.0, ensembldb-2.26.0, escape-1.12.0, estimability-1.4.1, ExperimentHub-2.10.0, extraDistr-1.10.0, factoextra-1.0.7, fANCOVA-0.6-1, fda-6.1.4, FDb.InfiniumMethylation.hg19-2.2.0, fds-1.8, feature-1.2.15, fgsea-1.28.0, filelock-1.0.3, flowAI-1.32.0, flowClean-1.40.0, flowClust-3.40.0, flowCore-2.14.0, flowDensity-1.36.1, flowFP-1.60.0, flowMerge-2.50.0, flowPeaks-1.48.0, FlowSOM-2.10.0, FlowSorted.Blood.EPIC-2.6.0, FlowSorted.CordBloodCombined.450k-1.18.0, flowStats-4.14.1, flowViz-1.66.0, flowWorkspace-4.14.2, FRASER-1.14.0, fresh-0.2.0, gcrma-2.74.0, gdsfmt-1.38.0, genefilter-1.84.0, geneLenDataBase-1.38.0, geneplotter-1.80.0, GENESIS-2.32.0, GENIE3-1.24.0, genomation-1.34.0, GenomeInfoDb-1.38.5, GenomeInfoDbData-1.2.11, GenomicAlignments-1.38.2, GenomicFeatures-1.54.1, GenomicFiles-1.38.0, GenomicInteractions-1.36.0, GenomicRanges-1.54.1, GenomicScores-2.14.3, GEOmap-2.5-5, GEOquery-2.70.0, ggbio-1.50.0, ggcyto-1.30.0, ggdendro-0.1.23, ggnewscale-0.4.9, ggpointdensity-0.1.0, ggrastr-1.0.2, ggseqlogo-0.1, ggthemes-5.0.0, ggtree-3.10.0, GLAD-2.66.0, Glimma-2.12.0, GlobalAncova-4.20.0, globaltest-5.56.0, GO.db-3.18.0, GOSemSim-2.28.1, goseq-1.54.0, GOstats-2.68.0, graph-1.80.0, graphite-1.48.0, GSEABase-1.64.0, gsmoothr-0.1.7, gson-0.1.0, GSVA-1.50.0, Gviz-1.46.1, GWASExactHW-1.01, GWASTools-1.48.0, HDF5Array-1.30.0, HDO.db-0.99.1, hdrcde-3.4, heatmaply-1.5.0, hgu133plus2.db-3.13.0, HiCBricks-1.20.0, HiCcompare-1.24.0, HMMcopy-1.44.0, Homo.sapiens-1.3.1, IHW-1.30.0, IlluminaHumanMethylation450kanno.ilmn12.hg19-0.6.1, IlluminaHumanMethylation450kmanifest-0.4.0, IlluminaHumanMethylationEPICanno.ilm10b2.hg19-0.6.0, IlluminaHumanMethylationEPICanno.ilm10b4.hg19-0.6.0, IlluminaHumanMethylationEPICmanifest-0.3.0, illuminaio-0.44.0, impute-1.76.0, InteractionSet-1.30.0, interactiveDisplayBase-1.40.0, intervals-0.15.4, IRanges-2.36.0, isva-1.9, JASPAR2020-0.99.10, KEGGgraph-1.62.0, KEGGREST-1.42.0, LEA-3.14.0, limma-3.58.1, log4r-0.4.3, lpsymphony-1.30.0, lsa-0.73.3, lumi-2.54.0, M3Drop-1.28.0, marray-1.80.0, maSigPro-1.74.0, MassSpecWavelet-1.68.0, MatrixGenerics-1.14.0, MBA-0.1-0, MEDIPS-1.54.0, MetaboCoreUtils-1.10.0, metagenomeSeq-1.43.0, metaMA-3.1.3, metap-1.9, metapod-1.10.1, MethylSeekR-1.42.0, methylumi-2.48.0, Mfuzz-2.62.0, mia-1.10.0, minfi-1.48.0, missMethyl-1.36.0, mixOmics-6.26.0, mixsqp-0.3-54, MLInterfaces-1.82.0, MotifDb-1.44.0, motifmatchr-1.24.0, motifStack-1.46.0, MsCoreUtils-1.14.1, MsExperiment-1.4.0, MsFeatures-1.10.0, msigdbr-7.5.1, MSnbase-2.28.1, MSstats-4.10.0, MSstatsConvert-1.12.0, MSstatsLiP-1.8.1, MSstatsPTM-2.4.2, MSstatsTMT-2.10.0, MultiAssayExperiment-1.28.0, MultiDataSet-1.30.0, multtest-2.58.0, muscat-1.16.0, mutoss-0.1-13, mzID-1.40.0, mzR-2.36.0, NADA-1.6-1.1, ncdfFlow-2.48.0, NMF-0.26, NOISeq-2.46.0, numbat-1.3.2-1, oligo-1.66.0, oligoClasses-1.64.0, ontologyIndex-2.11, oompaBase-3.2.9, oompaData-3.1.3, openCyto-2.14.0, org.Hs.eg.db-3.18.0, org.Mm.eg.db-3.18.0, org.Rn.eg.db-3.18.0, OrganismDbi-1.44.0, OUTRIDER-1.20.0, pathview-1.42.0, pcaMethods-1.94.0, perm-1.0-0.4, PFAM.db-3.18.0, phyloseq-1.46.0, plyranges-1.22.0, pmp-1.14.0, polyester-1.38.0, poweRlaw-0.70.6, preprocessCore-1.64.0, pRoloc-1.42.0, pRolocdata-1.40.0, pRolocGUI-2.12.0, ProtGenerics-1.34.0, PRROC-1.3.1, PSCBS-0.66.0, PureCN-2.8.1, qap-0.1-2, QDNAseq-1.38.0, QFeatures-1.12.0, qlcMatrix-0.9.7, qqconf-1.3.2, quantsmooth-1.68.0, qvalue-2.34.0, R.devices-2.17.1, R.filesets-2.15.0, R.huge-0.10.1, rainbow-3.8, randomcoloR-1.1.0.1, rARPACK-0.11-0, RBGL-1.78.0, RcisTarget-1.22.0, RcppAnnoy-0.0.22, RcppHNSW-0.5.0, RcppML-0.3.7, RcppZiggurat-0.1.6, reactome.db-1.86.2, ReactomePA-1.46.0, regioneR-1.34.0, reldist-1.7-2, remaCor-0.0.16, Repitools-1.48.0, ReportingTools-2.42.3, ResidualMatrix-1.12.0, restfulr-0.0.15, Rfast-2.1.0, RFOC-3.4-10, rGADEM-2.50.0, Rgraphviz-2.46.0, rhdf5-2.46.1, rhdf5filters-1.14.1, Rhdf5lib-1.24.1, Rhtslib-2.4.1, Ringo-1.66.0, RNASeqPower-1.42.0, RnBeads-2.20.0, RnBeads.hg19-1.34.0, RnBeads.hg38-1.34.0, RnBeads.mm10-2.10.0, RnBeads.mm9-1.34.0, RnBeads.rn5-1.34.0, ROC-1.78.0, rols-2.30.0, ROntoTools-2.30.0, ropls-1.34.0, RPMG-2.2-7, RProtoBufLib-2.14.0, Rsamtools-2.18.0, RSEIS-4.1-6, Rsubread-2.16.1, rsvd-1.0.5, rtracklayer-1.62.0, Rwave-2.6-5, S4Arrays-1.2.0, S4Vectors-0.40.2, samr-3.0, SamSPECTRAL-1.56.0, SC3-1.30.0, ScaledMatrix-1.10.0, SCANVIS-1.16.0, scater-1.30.1, scattermore-1.2, scDblFinder-1.16.0, scistreer-1.2.0, scran-1.30.2, scrime-1.3.5, scuttle-1.12.0, SeqArray-1.42.0, seqLogo-1.68.0, seqPattern-1.34.0, SeqVarTools-1.40.0, seriation-1.5.4, Seurat-5.0.1, SeuratObject-5.0.1, shinyBS-0.61.1, shinydashboardPlus-2.0.3, shinyFiles-0.9.3, shinyhelper-0.3.2, shinypanel-0.1.5, shinyWidgets-0.8.1, ShortRead-1.60.0, siggenes-1.76.0, Signac-1.12.0, SimBu-1.4.3, simplifyEnrichment-1.12.0, SingleCellExperiment-1.24.0, SingleR-2.4.1, sitmo-2.0.2, slingshot-2.10.0, SMVar-1.3.4, SNPRelate-1.36.0, snpStats-1.52.0, SparseArray-1.2.3, sparseMatrixStats-1.14.0, sparsesvd-0.2-2, SpatialExperiment-1.12.0, Spectra-1.12.0, SPIA-2.54.0, splancs-2.01-44, SPOTlight-1.6.7, stageR-1.24.0, struct-1.14.0, structToolbox-1.14.0, SummarizedExperiment-1.32.0, susieR-0.12.35, sva-3.50.0, TailRank-3.2.2, TFBSTools-1.40.0, TFMPvalue-0.0.9, tkWidgets-1.80.0, TrajectoryUtils-1.10.0, treeio-1.26.0, TreeSummarizedExperiment-2.10.0, TSP-1.2-4, TxDb.Hsapiens.UCSC.hg19.knownGene-3.2.2, TxDb.Mmusculus.UCSC.mm10.knownGene-3.10.0, tximport-1.30.0, UCell-2.6.2, uwot-0.1.16, variancePartition-1.32.2, VariantAnnotation-1.48.1, venn-1.12, vsn-3.70.0, waiter-0.2.5, wateRmelon-2.8.0, WGCNA-1.72-5, widgetTools-1.80.0, Wrench-1.20.0, xcms-4.0.2, XVector-0.42.0, zCompositions-1.5.0-1, zellkonverter-1.12.1, zlibbioc-1.48.0 -### R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2 +|`affy` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.84.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.80.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.76.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| -This is a list of extensions included in the module: +### affycoretools -affxparser-1.70.0, affy-1.76.0, affycoretools-1.70.0, affyio-1.68.0, AgiMicroRna-2.48.0, agricolae-1.3-5, ALDEx2-1.30.0, ALL-1.40.0, ANCOMBC-2.0.2, annaffy-1.70.0, annotate-1.76.0, AnnotationDbi-1.60.2, AnnotationFilter-1.22.0, AnnotationForge-1.40.1, AnnotationHub-3.6.0, anytime-0.3.9, aroma.affymetrix-3.2.1, aroma.apd-0.6.1, aroma.core-3.3.0, aroma.light-3.28.0, ash-1.0-15, ATACseqQC-1.22.0, AUCell-1.20.2, aws.s3-0.3.21, aws.signature-0.6.0, babelgene-22.9, ballgown-2.30.0, basilisk-1.10.2, basilisk.utils-1.10.0, batchelor-1.14.1, baySeq-2.31.0, beachmat-2.14.0, Biobase-2.58.0, BiocBaseUtils-1.0.0, BiocFileCache-2.6.1, BiocGenerics-0.44.0, BiocIO-1.8.0, BiocManager-1.30.20, BiocNeighbors-1.16.0, BiocParallel-1.32.5, BiocSingular-1.14.0, BiocStyle-2.26.0, BiocVersion-3.16.0, biomaRt-2.54.0, biomformat-1.26.0, Biostrings-2.66.0, biovizBase-1.46.0, blme-1.0-5, bluster-1.8.0, bookdown-0.33, BSgenome-1.66.3, BSgenome.Cfamiliaris.UCSC.canFam3-1.4.0, BSgenome.Hsapiens.UCSC.hg19-1.4.3, BSgenome.Hsapiens.UCSC.hg38-1.4.5, BSgenome.Mmusculus.UCSC.mm10-1.4.3, bsseq-1.34.0, bumphunter-1.40.0, ca-0.71.1, CAGEr-2.4.0, CAMERA-1.54.0, Category-2.64.0, ccdata-1.24.0, ccmap-1.24.0, CGHbase-1.58.0, CGHcall-2.60.0, ChIPpeakAnno-3.32.0, chromVAR-1.20.2, clusterProfiler-4.6.2, CNEr-1.34.0, coloc-5.1.0.1, colorRamps-2.3.1, ComplexHeatmap-2.14.0, ConsensusClusterPlus-1.62.0, conumee-1.32.0, crossmeta-1.24.0, cummeRbund-2.40.0, cytolib-2.10.1, CytoML-2.10.0, dada2-1.26.0, ddPCRclust-1.18.0, DECIPHER-2.26.0, DeconRNASeq-1.40.0, decontam-1.18.0, decoupleR-2.4.0, DEGseq-1.52.0, DelayedArray-0.24.0, DelayedMatrixStats-1.20.0, densEstBayes-1.0-2.1, derfinder-1.32.0, derfinderHelper-1.32.0, DESeq2-1.38.3, diffcyt-1.18.0, dir.expiry-1.6.0, DirichletMultinomial-1.40.0, DNABarcodes-1.28.0, DNAcopy-1.72.3, DO.db-2.9, docopt-0.7.1, DOSE-3.24.2, dqrng-0.3.0, DRIMSeq-1.26.0, DropletUtils-1.18.1, DSS-2.46.0, dupRadar-1.28.0, DynDoc-1.76.0, EBImage-4.40.0, edgeR-3.40.2, egg-0.4.5, emmeans-1.8.5, enrichplot-1.18.3, EnsDb.Hsapiens.v75-2.99.0, EnsDb.Hsapiens.v79-2.99.0, EnsDb.Hsapiens.v86-2.99.0, ensembldb-2.22.0, escape-1.8.0, estimability-1.4.1, ExperimentHub-2.6.0, extraDistr-1.9.1, factoextra-1.0.7, fda-6.0.5, FDb.InfiniumMethylation.hg19-2.2.0, fds-1.8, feature-1.2.15, fgsea-1.24.0, filelock-1.0.2, flowAI-1.28.0, flowClean-1.36.0, flowClust-3.36.0, flowCore-2.10.0, flowDensity-1.32.0, flowFP-1.56.3, flowMerge-2.46.0, flowPeaks-1.44.0, FlowSOM-2.6.0, FlowSorted.Blood.EPIC-2.2.0, FlowSorted.CordBloodCombined.450k-1.14.0, flowStats-4.10.0, flowViz-1.62.0, flowWorkspace-4.10.1, FRASER-1.10.2, fresh-0.2.0, gcrma-2.70.0, gdsfmt-1.34.0, genefilter-1.80.3, geneLenDataBase-1.34.0, geneplotter-1.76.0, GENESIS-2.28.0, GENIE3-1.20.0, GenomeInfoDb-1.34.9, GenomeInfoDbData-1.2.9, GenomicAlignments-1.34.1, GenomicFeatures-1.50.4, GenomicFiles-1.34.0, GenomicRanges-1.50.2, GenomicScores-2.10.0, GEOmap-2.5-0, GEOquery-2.66.0, ggbio-1.46.0, ggcyto-1.26.4, ggdendro-0.1.23, ggnewscale-0.4.8, ggpointdensity-0.1.0, ggrastr-1.0.1, ggseqlogo-0.1, ggthemes-4.2.4, ggtree-3.6.2, GLAD-2.62.0, Glimma-2.8.0, GlobalAncova-4.16.0, globaltest-5.52.0, GO.db-3.16.0, GOSemSim-2.24.0, goseq-1.50.0, GOstats-2.64.0, graph-1.76.0, graphite-1.44.0, GSEABase-1.60.0, gsmoothr-0.1.7, gson-0.1.0, GSVA-1.46.0, Gviz-1.42.1, GWASExactHW-1.01, GWASTools-1.44.0, HDF5Array-1.26.0, HDO.db-0.99.1, hdrcde-3.4, heatmaply-1.4.2, hgu133plus2.db-3.13.0, HiCBricks-1.16.0, HiCcompare-1.20.0, HMMcopy-1.40.0, Homo.sapiens-1.3.1, IHW-1.26.0, IlluminaHumanMethylation450kanno.ilmn12.hg19-0.6.1, IlluminaHumanMethylation450kmanifest-0.4.0, IlluminaHumanMethylationEPICanno.ilm10b2.hg19-0.6.0, IlluminaHumanMethylationEPICanno.ilm10b4.hg19-0.6.0, IlluminaHumanMethylationEPICmanifest-0.3.0, illuminaio-0.40.0, impute-1.72.3, InteractionSet-1.26.1, interactiveDisplayBase-1.36.0, intervals-0.15.4, IRanges-2.32.0, isva-1.9, JASPAR2020-0.99.10, KEGGgraph-1.58.3, KEGGREST-1.38.0, LEA-3.10.2, limma-3.54.2, log4r-0.4.3, lpsymphony-1.26.3, lsa-0.73.3, lumi-2.50.0, M3Drop-1.24.0, marray-1.76.0, maSigPro-1.70.0, MassSpecWavelet-1.64.1, MatrixGenerics-1.10.0, MBA-0.1-0, MEDIPS-1.50.0, metagenomeSeq-1.40.0, metaMA-3.1.3, metap-1.8, metapod-1.6.0, MethylSeekR-1.38.0, methylumi-2.44.0, Mfuzz-2.58.0, mia-1.6.0, minfi-1.44.0, missMethyl-1.32.0, mixOmics-6.22.0, mixsqp-0.3-48, MLInterfaces-1.78.0, MotifDb-1.40.0, motifmatchr-1.20.0, motifStack-1.42.0, MsCoreUtils-1.10.0, MsFeatures-1.6.0, msigdbr-7.5.1, MSnbase-2.24.2, MSstats-4.6.5, MSstatsConvert-1.8.3, MSstatsLiP-1.4.1, MSstatsPTM-2.0.3, MSstatsTMT-2.6.1, MultiAssayExperiment-1.24.0, MultiDataSet-1.26.0, multtest-2.54.0, muscat-1.12.1, mutoss-0.1-13, mzID-1.36.0, mzR-2.32.0, NADA-1.6-1.1, ncdfFlow-2.44.0, NMF-0.25, NOISeq-2.42.0, numbat-1.2.2, oligo-1.62.2, oligoClasses-1.60.0, ontologyIndex-2.10, oompaBase-3.2.9, oompaData-3.1.3, openCyto-2.10.1, org.Hs.eg.db-3.16.0, org.Mm.eg.db-3.16.0, org.Rn.eg.db-3.16.0, OrganismDbi-1.40.0, OUTRIDER-1.16.3, pathview-1.38.0, pcaMethods-1.90.0, perm-1.0-0.2, PFAM.db-3.16.0, phyloseq-1.42.0, pmp-1.10.0, polyester-1.34.0, poweRlaw-0.70.6, preprocessCore-1.60.2, pRoloc-1.38.2, pRolocdata-1.36.0, pRolocGUI-2.8.0, ProtGenerics-1.30.0, PRROC-1.3.1, PSCBS-0.66.0, PureCN-2.4.0, qap-0.1-2, QDNAseq-1.34.0, qlcMatrix-0.9.7, qqconf-1.3.1, quantsmooth-1.64.0, qvalue-2.30.0, R.devices-2.17.1, R.filesets-2.15.0, R.huge-0.9.0, rainbow-3.7, randomcoloR-1.1.0.1, rARPACK-0.11-0, RBGL-1.74.0, RcisTarget-1.18.2, RcppAnnoy-0.0.20, RcppHNSW-0.4.1, RcppML-0.3.7, RcppZiggurat-0.1.6, reactome.db-1.82.0, ReactomePA-1.42.0, regioneR-1.30.0, reldist-1.7-2, remaCor-0.0.11, Repitools-1.44.0, ReportingTools-2.38.0, ResidualMatrix-1.8.0, restfulr-0.0.15, Rfast-2.0.7, RFOC-3.4-6, rGADEM-2.46.0, Rgraphviz-2.42.0, rhdf5-2.42.0, rhdf5filters-1.10.0, Rhdf5lib-1.20.0, Rhtslib-2.0.0, Ringo-1.62.0, RNASeqPower-1.38.0, RnBeads-2.16.0, RnBeads.hg19-1.30.0, RnBeads.hg38-1.30.0, RnBeads.mm10-2.6.0, RnBeads.mm9-1.30.0, RnBeads.rn5-1.30.0, ROC-1.74.0, rols-2.26.0, ROntoTools-2.26.0, ropls-1.30.0, RPMG-2.2-3, RProtoBufLib-2.10.0, Rsamtools-2.14.0, RSEIS-4.1-4, Rsubread-2.12.3, rsvd-1.0.5, rtracklayer-1.58.0, Rwave-2.6-5, S4Vectors-0.36.2, samr-3.0, SamSPECTRAL-1.52.0, SC3-1.26.2, ScaledMatrix-1.6.0, SCANVIS-1.12.0, scater-1.26.1, scattermore-0.8, scDblFinder-1.12.0, scistreer-1.1.0, scran-1.26.2, scrime-1.3.5, scuttle-1.8.4, SeqArray-1.38.0, seqLogo-1.64.0, SeqVarTools-1.36.0, seriation-1.4.2, Seurat-4.3.0, SeuratObject-4.1.3, shinyBS-0.61.1, shinydashboardPlus-2.0.3, shinyFiles-0.9.3, shinyhelper-0.3.2, shinypanel-0.1.5, shinyWidgets-0.7.6, ShortRead-1.56.1, siggenes-1.72.0, Signac-1.9.0, simplifyEnrichment-1.8.0, SingleCellExperiment-1.20.0, SingleR-2.0.0, sitmo-2.0.2, slingshot-2.6.0, SMVar-1.3.4, SNPRelate-1.32.2, snpStats-1.48.0, sparseMatrixStats-1.10.0, sparsesvd-0.2-2, SpatialExperiment-1.8.1, SPIA-2.50.0, splancs-2.01-43, SPOTlight-1.2.0, stageR-1.20.0, struct-1.10.0, structToolbox-1.10.1, SummarizedExperiment-1.28.0, susieR-0.12.35, sva-3.46.0, TailRank-3.2.2, TFBSTools-1.36.0, TFMPvalue-0.0.9, tkWidgets-1.76.0, TrajectoryUtils-1.6.0, treeio-1.22.0, TreeSummarizedExperiment-2.6.0, TSP-1.2-3, TxDb.Hsapiens.UCSC.hg19.knownGene-3.2.2, TxDb.Mmusculus.UCSC.mm10.knownGene-3.10.0, tximport-1.26.1, UCell-2.2.0, uwot-0.1.14, variancePartition-1.28.7, VariantAnnotation-1.44.1, venn-1.11, vsn-3.66.0, waiter-0.2.5, wateRmelon-2.4.0, WGCNA-1.72-1, widgetTools-1.76.0, Wrench-1.16.0, xcms-3.20.0, XVector-0.38.0, zCompositions-1.4.0-1, zellkonverter-1.8.0, zlibbioc-1.44.0 \ No newline at end of file + +|`affycoretools` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.78.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.74.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.70.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### affyio + + +|`affyio` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.76.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.72.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.68.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### AgiMicroRna + + +|`AgiMicroRna` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.56.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.52.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.48.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### agricolae + + +|`agricolae` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.3-7|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.3-5|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ALDEx2 + + +|`ALDEx2` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.30.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ALL + + +|`ALL` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ANCOMBC + + +|`ANCOMBC` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.8.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.4.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.0.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### annaffy + + +|`annaffy` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.78.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.74.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.70.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### annotate + + +|`annotate` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.84.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.80.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.76.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### AnnotationDbi + + +|`AnnotationDbi` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.68.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.64.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.60.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### AnnotationFilter + + +|`AnnotationFilter` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.30.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.26.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.22.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### AnnotationForge + + +|`AnnotationForge` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.40.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### AnnotationHub + + +|`AnnotationHub` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### anytime + + +|`anytime` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.3.9|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### aroma.affymetrix + + +|`aroma.affymetrix` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.2.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.2.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### aroma.apd + + +|`aroma.apd` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.7.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.6.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### aroma.core + + +|`aroma.core` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.3.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.3.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### aroma.light + + +|`aroma.light` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.36.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.32.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.28.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ash + + +|`ash` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0-15|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### assorthead + + +|`assorthead` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### ATACseqQC + + +|`ATACseqQC` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.30.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.26.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.22.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### AUCell + + +|`AUCell` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.28.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.24.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.20.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### aws.s3 + + +|`aws.s3` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.3.21|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### aws.signature + + +|`aws.signature` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.6.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### babelgene + + +|`babelgene` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|22.9|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ballgown + + +|`ballgown` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.30.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### basilisk + + +|`basilisk` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.14.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.10.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### basilisk.utils + + +|`basilisk.utils` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.14.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### batchelor + + +|`batchelor` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.22.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.18.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.14.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### baySeq + + +|`baySeq` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.31.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### beachmat + + +|`beachmat` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.22.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.18.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.14.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BH + + +|`BH` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.84.0-0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### Biobase + + +|`Biobase` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.66.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.62.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.58.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BiocBaseUtils + + +|`BiocBaseUtils` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.8.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.4.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.0.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BiocFileCache + + +|`BiocFileCache` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.10.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.6.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BiocGenerics + + +|`BiocGenerics` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.52.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.48.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.44.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BiocIO + + +|`BiocIO` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BiocManager + + +|`BiocManager` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.30.25|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.22|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.30.20|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BiocNeighbors + + +|`BiocNeighbors` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.0.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.20.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BiocParallel + + +|`BiocParallel` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.32.5|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BiocSingular + + +|`BiocSingular` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.22.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.18.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.14.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BiocStyle + + +|`BiocStyle` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.26.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BiocVersion + + +|`BiocVersion` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.18.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### biomaRt + + +|`biomaRt` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.62.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.58.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.54.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### biomformat + + +|`biomformat` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Biostrings + + +|`Biostrings` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.74.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.70.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.66.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### biovizBase + + +|`biovizBase` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.54.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.50.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.46.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### blme + + +|`blme` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0-6|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.0-5|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### bluster + + +|`bluster` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### bookdown + + +|`bookdown` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.41|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.37|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.33|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BSgenome + + +|`BSgenome` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.74.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.70.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.66.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BSgenome.Cfamiliaris.UCSC.canFam3 + + +|`BSgenome.Cfamiliaris.UCSC.canFam3` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.4.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BSgenome.Hsapiens.UCSC.hg19 + + +|`BSgenome.Hsapiens.UCSC.hg19` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.4.3|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BSgenome.Hsapiens.UCSC.hg38 + + +|`BSgenome.Hsapiens.UCSC.hg38` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.4.5|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### BSgenome.Mmusculus.UCSC.mm10 + + +|`BSgenome.Mmusculus.UCSC.mm10` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.4.3|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### bsseq + + +|`bsseq` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.42.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.38.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.34.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### bumphunter + + +|`bumphunter` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ca + + +|`ca` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.71.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### CAGEfightR + + +|`CAGEfightR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.26.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.22.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### CAGEr + + +|`CAGEr` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.12.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.8.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.4.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### CAMERA + + +|`CAMERA` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.62.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.58.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.54.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Category + + +|`Category` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.72.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.68.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.64.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ccdata + + +|`ccdata` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.32.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.28.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.24.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ccmap + + +|`ccmap` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.32.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.28.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.24.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### CGHbase + + +|`CGHbase` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.66.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.62.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.58.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### CGHcall + + +|`CGHcall` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.68.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.64.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.60.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ChIPpeakAnno + + +|`ChIPpeakAnno` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.32.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ChIPseeker + + +|`ChIPseeker` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.42.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.38.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### chromVAR + + +|`chromVAR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.28.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.24.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.20.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### clusterProfiler + + +|`clusterProfiler` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|4.14.3|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|4.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|4.6.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### CNEr + + +|`CNEr` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.42.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.38.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.34.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### coloc + + +|`coloc` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|5.2.3|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|5.1.0.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### colorRamps + + +|`colorRamps` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.3.4|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.3.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ComplexHeatmap + + +|`ComplexHeatmap` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.22.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.18.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.14.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ConsensusClusterPlus + + +|`ConsensusClusterPlus` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.70.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.66.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.62.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### conumee + + +|`conumee` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.32.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### crossmeta + + +|`crossmeta` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.28.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.24.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### cummeRbund + + +|`cummeRbund` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### cytolib + + +|`cytolib` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.14.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.10.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### CytoML + + +|`CytoML` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### dada2 + + +|`dada2` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ddPCRclust + + +|`ddPCRclust` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.26.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.22.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.18.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DECIPHER + + +|`DECIPHER` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.26.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DeconRNASeq + + +|`DeconRNASeq` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### decontam + + +|`decontam` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.26.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.22.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.18.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### decoupleR + + +|`decoupleR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.12.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.8.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.4.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DEGseq + + +|`DEGseq` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.60.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.56.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.52.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DelayedArray + + +|`DelayedArray` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.32.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.28.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.24.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DelayedMatrixStats + + +|`DelayedMatrixStats` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.28.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.24.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.20.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### densEstBayes + + +|`densEstBayes` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0-2.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.0-2.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### derfinder + + +|`derfinder` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.32.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### derfinderHelper + + +|`derfinderHelper` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.32.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DESeq2 + + +|`DESeq2` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.46.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.42.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.38.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### diffcyt + + +|`diffcyt` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.26.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.22.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.18.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### dir.expiry + + +|`dir.expiry` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### directlabels + + +|`directlabels` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2024.1.21|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### DirichletMultinomial + + +|`DirichletMultinomial` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DNABarcodes + + +|`DNABarcodes` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.36.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.32.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.28.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DNAcopy + + +|`DNAcopy` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.80.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.76.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.72.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DO.db + + +|`DO.db` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.9|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### docopt + + +|`docopt` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.7.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DOSE + + +|`DOSE` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|4.0.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.28.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.24.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### dqrng + + +|`dqrng` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.4.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.3.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.3.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DRIMSeq + + +|`DRIMSeq` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DropletUtils + + +|`DropletUtils` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.26.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.22.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.18.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DSS + + +|`DSS` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.54.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.50.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.46.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### dupRadar + + +|`dupRadar` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.36.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.32.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.28.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### DynDoc + + +|`DynDoc` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.84.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.80.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.76.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### EBImage + + +|`EBImage` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|4.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|4.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|4.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### edgeR + + +|`edgeR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|4.4.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|4.0.12|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.40.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### egg + + +|`egg` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.4.5|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### emmeans + + +|`emmeans` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8.5|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### enrichplot + + +|`enrichplot` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.26.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.22.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.18.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### EnsDb.Hsapiens.v75 + + +|`EnsDb.Hsapiens.v75` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.99.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### EnsDb.Hsapiens.v79 + + +|`EnsDb.Hsapiens.v79` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.99.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### EnsDb.Hsapiens.v86 + + +|`EnsDb.Hsapiens.v86` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.99.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ensembldb + + +|`ensembldb` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.30.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.26.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.22.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### escape + + +|`escape` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.2.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### estimability + + +|`estimability` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.4.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ExperimentHub + + +|`ExperimentHub` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### extraDistr + + +|`extraDistr` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.10.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.9.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### factoextra + + +|`factoextra` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0.7|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### fANCOVA + + +|`fANCOVA` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.6-1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### fda + + +|`fda` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|6.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|6.1.4|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|6.0.5|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### FDb.InfiniumMethylation.hg19 + + +|`FDb.InfiniumMethylation.hg19` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### fds + + +|`fds` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.8|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### feature + + +|`feature` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.2.15|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### fgsea + + +|`fgsea` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.32.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.28.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.24.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### filelock + + +|`filelock` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0.3|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.0.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowAI + + +|`flowAI` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.36.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.32.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.28.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowClean + + +|`flowClean` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.44.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.40.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.36.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowClust + + +|`flowClust` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.44.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.40.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.36.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowCore + + +|`flowCore` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowDensity + + +|`flowDensity` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.36.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.32.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowFP + + +|`flowFP` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.64.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.60.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.56.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowMerge + + +|`flowMerge` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.54.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.50.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.46.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowPeaks + + +|`flowPeaks` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.52.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.48.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.44.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### FlowSOM + + +|`FlowSOM` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### FlowSorted.Blood.EPIC + + +|`FlowSorted.Blood.EPIC` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.10.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.6.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.2.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### FlowSorted.CordBloodCombined.450k + + +|`FlowSorted.CordBloodCombined.450k` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.22.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.18.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.14.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowStats + + +|`flowStats` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|4.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|4.14.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|4.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowViz + + +|`flowViz` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.70.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.66.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.62.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### flowWorkspace + + +|`flowWorkspace` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|4.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|4.14.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|4.10.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### FRASER + + +|`FRASER` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.10.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### fresh + + +|`fresh` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.2.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.2.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### gcrma + + +|`gcrma` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.78.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.74.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.70.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### gdsfmt + + +|`gdsfmt` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.42.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.38.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.34.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### genefilter + + +|`genefilter` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.88.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.84.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.80.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### geneLenDataBase + + +|`geneLenDataBase` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.42.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.38.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.34.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### geneplotter + + +|`geneplotter` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.84.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.80.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.76.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GENESIS + + +|`GENESIS` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.36.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.32.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.28.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GENIE3 + + +|`GENIE3` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.28.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.24.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.20.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### genomation + + +|`genomation` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### GenomeInfoDb + + +|`GenomeInfoDb` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.42.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.38.5|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.34.9|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GenomeInfoDbData + + +|`GenomeInfoDbData` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.2.13|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.2.11|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.2.9|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GenomicAlignments + + +|`GenomicAlignments` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.42.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.38.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.34.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GenomicFeatures + + +|`GenomicFeatures` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.58.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.54.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.50.4|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GenomicFiles + + +|`GenomicFiles` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.42.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.38.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.34.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GenomicInteractions + + +|`GenomicInteractions` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### GenomicRanges + + +|`GenomicRanges` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.58.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.54.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.50.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GenomicScores + + +|`GenomicScores` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.14.3|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GEOmap + + +|`GEOmap` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.5-11|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.5-5|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.5-0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GEOquery + + +|`GEOquery` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.74.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.70.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.66.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ggbio + + +|`ggbio` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.54.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.50.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.46.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ggcyto + + +|`ggcyto` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.4|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ggdendro + + +|`ggdendro` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.1.23|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ggnewscale + + +|`ggnewscale` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.5.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.4.9|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.4.8|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ggpicrust2 + + +|`ggpicrust2` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.1.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### ggpointdensity + + +|`ggpointdensity` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.1.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ggrastr + + +|`ggrastr` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.0.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ggseqlogo + + +|`ggseqlogo` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ggtangle + + +|`ggtangle` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.0.4|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### ggthemes + + +|`ggthemes` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|5.1.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|5.0.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|4.2.4|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ggtree + + +|`ggtree` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.6.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GLAD + + +|`GLAD` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.70.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.66.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.62.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Glimma + + +|`Glimma` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.8.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GlobalAncova + + +|`GlobalAncova` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|4.24.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|4.20.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|4.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### globaltest + + +|`globaltest` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|5.60.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|5.56.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|5.52.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GO.db + + +|`GO.db` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.18.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GOSemSim + + +|`GOSemSim` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.32.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.28.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.24.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### goseq + + +|`goseq` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.58.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.54.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.50.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GOstats + + +|`GOstats` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.72.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.68.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.64.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### graph + + +|`graph` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.84.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.80.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.76.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### graphite + + +|`graphite` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.52.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.48.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.44.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GSEABase + + +|`GSEABase` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.68.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.64.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.60.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### gsignal + + +|`gsignal` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.3-7|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### gsmoothr + + +|`gsmoothr` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.1.7|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### gson + + +|`gson` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.1.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GSVA + + +|`GSVA` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.0.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.50.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.46.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Gviz + + +|`Gviz` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.50.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.46.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.42.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GWASExactHW + + +|`GWASExactHW` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.01|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### GWASTools + + +|`GWASTools` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.52.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.48.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.44.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### hahmmr + + +|`hahmmr` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### HDF5Array + + +|`HDF5Array` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### HDO.db + + +|`HDO.db` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.99.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### hdrcde + + +|`hdrcde` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.4|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### heatmaply + + +|`heatmaply` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.5.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.4.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### hgu133plus2.db + + +|`hgu133plus2.db` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.13.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### hiAnnotator + + +|`hiAnnotator` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### HiCBricks + + +|`HiCBricks` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.24.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.20.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### HiCcompare + + +|`HiCcompare` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.28.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.24.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.20.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### HMMcopy + + +|`HMMcopy` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Homo.sapiens + + +|`Homo.sapiens` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.3.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### IHW + + +|`IHW` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### IlluminaHumanMethylation450kanno.ilmn12.hg19 + + +|`IlluminaHumanMethylation450kanno.ilmn12.hg19` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.6.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### IlluminaHumanMethylation450kmanifest + + +|`IlluminaHumanMethylation450kmanifest` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.4.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### IlluminaHumanMethylationEPICanno.ilm10b2.hg19 + + +|`IlluminaHumanMethylationEPICanno.ilm10b2.hg19` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.6.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### IlluminaHumanMethylationEPICanno.ilm10b4.hg19 + + +|`IlluminaHumanMethylationEPICanno.ilm10b4.hg19` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.6.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### IlluminaHumanMethylationEPICmanifest + + +|`IlluminaHumanMethylationEPICmanifest` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.3.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### IlluminaHumanMethylationEPICv2anno.20a1.hg38 + + +|`IlluminaHumanMethylationEPICv2anno.20a1.hg38` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### IlluminaHumanMethylationEPICv2manifest + + +|`IlluminaHumanMethylationEPICv2manifest` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### illuminaio + + +|`illuminaio` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### impute + + +|`impute` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.80.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.76.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.72.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### InteractionSet + + +|`InteractionSet` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### interactiveDisplayBase + + +|`interactiveDisplayBase` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.44.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.40.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.36.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### intervals + + +|`intervals` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.15.5|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.15.4|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### IRanges + + +|`IRanges` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.32.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### isva + + +|`isva` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.9|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### JASPAR2020 + + +|`JASPAR2020` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.99.10|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### KEGGgraph + + +|`KEGGgraph` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.66.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.62.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.58.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### KEGGREST + + +|`KEGGREST` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.46.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.42.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.38.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### LEA + + +|`LEA` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.10.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### lefser + + +|`lefser` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.16.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### limma + + +|`limma` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.62.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.58.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.54.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### log4r + + +|`log4r` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.4.4|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.4.3|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### lpsymphony + + +|`lpsymphony` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### lsa + + +|`lsa` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.73.3|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### lumi + + +|`lumi` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.58.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.54.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.50.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### M3Drop + + +|`M3Drop` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.32.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.28.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.24.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Maaslin2 + + +|`Maaslin2` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### marray + + +|`marray` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.84.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.80.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.76.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### maSigPro + + +|`maSigPro` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.78.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.74.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.70.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MassSpecWavelet + + +|`MassSpecWavelet` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.72.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.68.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.64.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MatrixGenerics + + +|`MatrixGenerics` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MBA + + +|`MBA` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.1-2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.1-0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MEDIPS + + +|`MEDIPS` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.58.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.54.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.50.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MetaboCoreUtils + + +|`MetaboCoreUtils` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### metagenomeSeq + + +|`metagenomeSeq` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.48.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.43.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### metaMA + + +|`metaMA` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.1.3|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### metap + + +|`metap` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.11|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.9|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### metapod + + +|`metapod` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.10.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MethylSeekR + + +|`MethylSeekR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.46.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.42.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.38.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### methylumi + + +|`methylumi` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.52.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.48.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.44.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Mfuzz + + +|`Mfuzz` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.66.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.62.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.58.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### mia + + +|`mia` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### minfi + + +|`minfi` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.52.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.48.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.44.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### missMethyl + + +|`missMethyl` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.32.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### mixOmics + + +|`mixOmics` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|6.30.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|6.26.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|6.22.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### mixsqp + + +|`mixsqp` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.3-54|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.3-48|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MLInterfaces + + +|`MLInterfaces` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.86.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.82.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.78.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MotifDb + + +|`MotifDb` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### motifmatchr + + +|`motifmatchr` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.28.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.24.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.20.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### motifStack + + +|`motifStack` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.50.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.46.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.42.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MsCoreUtils + + +|`MsCoreUtils` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.14.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MsExperiment + + +|`MsExperiment` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.8.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.4.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### MsFeatures + + +|`MsFeatures` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### msigdbr + + +|`msigdbr` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|7.5.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MSnbase + + +|`MSnbase` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.32.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.28.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.24.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MSstats + + +|`MSstats` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|4.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|4.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|4.6.5|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MSstatsConvert + + +|`MSstatsConvert` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MSstatsLiP + + +|`MSstatsLiP` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.12.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.8.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.4.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MSstatsPTM + + +|`MSstatsPTM` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.8.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.4.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.0.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MSstatsTMT + + +|`MSstatsTMT` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.14.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.6.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MultiAssayExperiment + + +|`MultiAssayExperiment` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.32.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.28.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.24.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### MultiDataSet + + +|`MultiDataSet` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### multtest + + +|`multtest` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.62.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.58.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.54.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### muscat + + +|`muscat` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.16.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.12.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### mutoss + + +|`mutoss` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.1-13|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### mzID + + +|`mzID` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.44.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.40.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.36.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### mzR + + +|`mzR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.32.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### NADA + + +|`NADA` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.6-1.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ncdfFlow + + +|`ncdfFlow` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.52.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.48.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.44.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### NMF + + +|`NMF` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.28|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.26|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.25|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### NOISeq + + +|`NOISeq` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.50.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.46.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.42.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### numbat + + +|`numbat` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.4.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.3.2-1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.2.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### oligo + + +|`oligo` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.70.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.66.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.62.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### oligoClasses + + +|`oligoClasses` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.68.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.64.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.60.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ontologyIndex + + +|`ontologyIndex` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.12|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.11|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.10|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### oompaBase + + +|`oompaBase` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.2.9|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### oompaData + + +|`oompaData` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.1.4|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.1.3|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### openCyto + + +|`openCyto` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.10.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### org.Hs.eg.db + + +|`org.Hs.eg.db` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.18.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### org.Mm.eg.db + + +|`org.Mm.eg.db` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.18.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### org.Rn.eg.db + + +|`org.Rn.eg.db` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.18.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### OrganismDbi + + +|`OrganismDbi` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.48.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.44.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.40.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### OUTRIDER + + +|`OUTRIDER` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.24.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.20.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.16.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### pathview + + +|`pathview` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.46.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.42.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.38.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### pcaMethods + + +|`pcaMethods` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.98.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.94.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.90.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### perm + + +|`perm` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0-0.4|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.0-0.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### PFAM.db + + +|`PFAM.db` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.18.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### phyloseq + + +|`phyloseq` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.50.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.46.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.42.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### plyranges + + +|`plyranges` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.26.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.22.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### pmp + + +|`pmp` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### polyester + + +|`polyester` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.34.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### poweRlaw + + +|`poweRlaw` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.80.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.70.6|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### preprocessCore + + +|`preprocessCore` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.68.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.64.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.60.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### pRoloc + + +|`pRoloc` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.46.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.42.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.38.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### pRolocdata + + +|`pRolocdata` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.44.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.40.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.36.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### pRolocGUI + + +|`pRolocGUI` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.8.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ProtGenerics + + +|`ProtGenerics` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.30.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### PRROC + + +|`PRROC` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.3.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### PSCBS + + +|`PSCBS` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.67.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.66.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### PSMatch + + +|`PSMatch` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.10.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### PureCN + + +|`PureCN` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.12.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.8.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.4.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### pwalign + + +|`pwalign` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### qap + + +|`qap` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.1-2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### QDNAseq + + +|`QDNAseq` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.42.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.38.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.34.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### QFeatures + + +|`QFeatures` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### qlcMatrix + + +|`qlcMatrix` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.9.8|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.9.7|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### qqconf + + +|`qqconf` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.3.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.3.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### quantsmooth + + +|`quantsmooth` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.72.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.68.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.64.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### qvalue + + +|`qvalue` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.30.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### R.devices + + +|`R.devices` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.17.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.17.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### R.filesets + + +|`R.filesets` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.15.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.15.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### R.huge + + +|`R.huge` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.10.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.9.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### rainbow + + +|`rainbow` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.8|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.7|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### randomcoloR + + +|`randomcoloR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.1.0.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### rARPACK + + +|`rARPACK` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.11-0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RBGL + + +|`RBGL` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.82.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.78.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.74.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### rbiom + + +|`rbiom` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0.3|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### RcisTarget + + +|`RcisTarget` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.26.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.22.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.18.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RcppAnnoy + + +|`RcppAnnoy` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.0.22|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.0.20|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RcppHNSW + + +|`RcppHNSW` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.6.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.5.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.4.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RcppML + + +|`RcppML` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.3.7|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RcppZiggurat + + +|`RcppZiggurat` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.1.6|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### reactome.db + + +|`reactome.db` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.89.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.86.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.82.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ReactomePA + + +|`ReactomePA` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.50.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.46.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.42.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### regioneR + + +|`regioneR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.30.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### reldist + + +|`reldist` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.7-2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### remaCor + + +|`remaCor` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.0.18|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.0.16|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.0.11|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Repitools + + +|`Repitools` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.52.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.48.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.44.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ReportingTools + + +|`ReportingTools` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.46.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.42.3|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.38.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ResidualMatrix + + +|`ResidualMatrix` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### restfulr + + +|`restfulr` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.0.15|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Rfast + + +|`Rfast` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.1.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.0.7|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RFOC + + +|`RFOC` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.4-10|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.4-6|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### rGADEM + + +|`rGADEM` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.54.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.50.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.46.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Rgraphviz + + +|`Rgraphviz` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.50.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.46.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.42.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### rhdf5 + + +|`rhdf5` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.50.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.46.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.42.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### rhdf5filters + + +|`rhdf5filters` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.14.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Rhdf5lib + + +|`Rhdf5lib` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.28.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.24.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.20.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Rhtslib + + +|`Rhtslib` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.4.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.0.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Ringo + + +|`Ringo` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.66.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.62.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RNASeqPower + + +|`RNASeqPower` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.46.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.42.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.38.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RnBeads + + +|`RnBeads` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.24.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.20.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RnBeads.hg19 + + +|`RnBeads.hg19` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.30.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RnBeads.hg38 + + +|`RnBeads.hg38` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.30.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RnBeads.mm10 + + +|`RnBeads.mm10` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RnBeads.mm9 + + +|`RnBeads.mm9` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.30.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RnBeads.rn5 + + +|`RnBeads.rn5` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.30.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ROC + + +|`ROC` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.82.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.78.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.74.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### rols + + +|`rols` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.26.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ROntoTools + + +|`ROntoTools` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.26.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ropls + + +|`ropls` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.30.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RPMG + + +|`RPMG` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.2-7|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.2-3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RProtoBufLib + + +|`RProtoBufLib` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Rsamtools + + +|`Rsamtools` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.22.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.18.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.14.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### RSEIS + + +|`RSEIS` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|4.2-4|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|4.1-6|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|4.1-4|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Rsubread + + +|`Rsubread` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.16.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.12.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### rsvd + + +|`rsvd` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.0.5|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### rtracklayer + + +|`rtracklayer` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.66.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.62.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.58.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Rwave + + +|`Rwave` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.6-5|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### S4Arrays + + +|`S4Arrays` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.6.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.2.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### S4Vectors + + +|`S4Vectors` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.44.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.40.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.36.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### samr + + +|`samr` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SamSPECTRAL + + +|`SamSPECTRAL` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.60.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.56.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.52.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SC3 + + +|`SC3` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ScaledMatrix + + +|`ScaledMatrix` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SCANVIS + + +|`SCANVIS` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.16.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.12.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### scater + + +|`scater` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### scattermore + + +|`scattermore` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.8|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### scDblFinder + + +|`scDblFinder` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.20.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.16.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.12.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### scistreer + + +|`scistreer` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.1.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### scran + + +|`scran` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### scrime + + +|`scrime` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.3.5|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### scuttle + + +|`scuttle` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8.4|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SeqArray + + +|`SeqArray` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.46.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.42.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.38.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### seqLogo + + +|`seqLogo` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.72.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.68.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.64.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### seqPattern + + +|`seqPattern` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.38.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.34.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### SeqVarTools + + +|`SeqVarTools` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.44.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.40.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.36.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### seriation + + +|`seriation` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.5.6|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.5.4|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.4.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Seurat + + +|`Seurat` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|5.1.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|5.0.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|4.3.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SeuratObject + + +|`SeuratObject` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|5.0.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|5.0.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|4.1.3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### shinyBS + + +|`shinyBS` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.61.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### shinydashboardPlus + + +|`shinydashboardPlus` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.0.5|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.0.3|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### shinyFiles + + +|`shinyFiles` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.9.3|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### shinyhelper + + +|`shinyhelper` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.3.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### shinypanel + + +|`shinypanel` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.1.5|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### shinyWidgets + + +|`shinyWidgets` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.8.7|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.8.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.7.6|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### ShortRead + + +|`ShortRead` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.64.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.60.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.56.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### siggenes + + +|`siggenes` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.80.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.76.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.72.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Signac + + +|`Signac` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.9.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SimBu + + +|`SimBu` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.8.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.4.3|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### simona + + +|`simona` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.4.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### simplifyEnrichment + + +|`simplifyEnrichment` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.0.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SingleCellExperiment + + +|`SingleCellExperiment` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.28.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.24.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.20.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SingleR + + +|`SingleR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.8.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.4.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.0.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### sitmo + + +|`sitmo` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.0.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### slingshot + + +|`slingshot` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SMVar + + +|`SMVar` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.3.4|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SNPRelate + + +|`SNPRelate` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.40.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.36.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.32.2|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### snpStats + + +|`snpStats` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.56.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.52.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.48.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SparseArray + + +|`SparseArray` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.6.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.2.3|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### sparseMatrixStats + + +|`sparseMatrixStats` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### sparsesvd + + +|`sparsesvd` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.2-2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SpatialExperiment + + +|`SpatialExperiment` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Spectra + + +|`Spectra` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| + +### SPIA + + +|`SPIA` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.58.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.54.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.50.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### splancs + + +|`splancs` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.01-45|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.01-44|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.01-43|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SPOTlight + + +|`SPOTlight` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.10.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.6.7|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.2.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### stageR + + +|`stageR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.28.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.24.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.20.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### struct + + +|`struct` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.10.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### structToolbox + + +|`structToolbox` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.18.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.14.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.10.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### SummarizedExperiment + + +|`SummarizedExperiment` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.36.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.32.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.28.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### susieR + + +|`susieR` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.12.35|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### sva + + +|`sva` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.54.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.50.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.46.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### TailRank + + +|`TailRank` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.2.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### TFBSTools + + +|`TFBSTools` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.44.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.40.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.36.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### TFMPvalue + + +|`TFMPvalue` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.0.9|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### tkWidgets + + +|`tkWidgets` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.84.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.80.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.76.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### TrajectoryUtils + + +|`TrajectoryUtils` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### treeio + + +|`treeio` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.30.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.26.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.22.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### TreeSummarizedExperiment + + +|`TreeSummarizedExperiment` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.14.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.10.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.6.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### TSP + + +|`TSP` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.2-4|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.2-3|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### TxDb.Hsapiens.UCSC.hg19.knownGene + + +|`TxDb.Hsapiens.UCSC.hg19.knownGene` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.2.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### TxDb.Mmusculus.UCSC.mm10.knownGene + + +|`TxDb.Mmusculus.UCSC.mm10.knownGene` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.10.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### txdbmaker + + +|`txdbmaker` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### tximport + + +|`tximport` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.34.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.30.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.26.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### UCell + + +|`UCell` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.10.1|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.6.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.2.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### UCSC.utils + + +|`UCSC.utils` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.2.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### universalmotif + + +|`universalmotif` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.24.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| + +### uwot + + +|`uwot` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.2.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.1.16|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.1.14|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### variancePartition + + +|`variancePartition` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.36.2|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.32.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.28.7|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### VariantAnnotation + + +|`VariantAnnotation` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.52.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.48.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.44.1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### venn + + +|`venn` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.12|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.11|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### vsn + + +|`vsn` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|3.74.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|3.70.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.66.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### waiter + + +|`waiter` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.2.5|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`
`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`
`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### wateRmelon + + +|`wateRmelon` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|2.12.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|2.8.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|2.4.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### WGCNA + + +|`WGCNA` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.73|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.72-5|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.72-1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### widgetTools + + +|`widgetTools` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.84.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.80.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.76.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### Wrench + + +|`Wrench` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.24.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.20.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.16.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### xcms + + +|`xcms` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|4.4.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|4.0.2|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|3.20.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### XVector + + +|`XVector` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|0.46.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|0.42.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|0.38.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### zCompositions + + +|`zCompositions` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.5.0-4|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.5.0-1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.4.0-1|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### zellkonverter + + +|`zellkonverter` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.16.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.12.1|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.8.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| + +### zlibbioc + + +|`zlibbioc` version|R-bundle-Bioconductor modules that include it| +| --- | --- | +|1.52.0|`R-bundle-Bioconductor/3.20-foss-2024a-R-4.4.2`| +|1.48.0|`R-bundle-Bioconductor/3.18-foss-2023a-R-4.3.2`| +|1.44.0|`R-bundle-Bioconductor/3.16-foss-2022b-R-4.2.2`| \ No newline at end of file diff --git a/docs/available_software/detail/R-bundle-CRAN.md b/docs/available_software/detail/R-bundle-CRAN.md index 7714eb6b36..ab63c24a00 100644 --- a/docs/available_software/detail/R-bundle-CRAN.md +++ b/docs/available_software/detail/R-bundle-CRAN.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,44 +22,8734 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''R-bundle-CRAN/2023.12-foss-2023a'', ''R-bundle-CRAN/2024.06-foss-2023b'']' + softwareVersion: '[''2024.11'', ''2024.06'', ''2023.12'']' url: https://www.r-project.org/ --- +# R-bundle-CRAN -R-bundle-CRAN -============= +Bundle of R packages from CRAN + +homepage: [https://www.r-project.org/](https://www.r-project.org/) + +## Available installations + + +|R-bundle-CRAN version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2024.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`R-bundle-CRAN/2024.11-foss-2024a`| +|2024.06|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`R-bundle-CRAN/2024.06-foss-2023b`| +|2023.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`R-bundle-CRAN/2023.12-foss-2023a`| + +## Extensions + +Overview of extensions included in R-bundle-CRAN installations + + +### abc + + +|`abc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### abc.data + + +|`abc.data` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### abe + + +|`abe` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### abind + + +|`abind` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4-8|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.4-5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### acepack + + +|`acepack` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### adabag + + +|`adabag` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ade4 + + +|`ade4` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-22|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ADGofTest + + +|`ADGofTest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### admisc + + +|`admisc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.36|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.35|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.34|`R-bundle-CRAN/2023.12-foss-2023a`| + +### aggregation + + +|`aggregation` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### AICcmodavg + + +|`AICcmodavg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### akima + + +|`akima` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-3.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### alabama + + +|`alabama` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2023.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### AlgDesign + + +|`AlgDesign` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### alluvial + + +|`alluvial` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### AMAPVox + + +|`AMAPVox` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### animation + + +|`animation` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### aod + + +|`aod` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### apcluster + + +|`apcluster` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4.11|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ape + + +|`ape` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|5.7-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### aplot + + +|`aplot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### argparse + + +|`argparse` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.4|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.2.3|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.2.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### aricode + + +|`aricode` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### arm + + +|`arm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.14-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.13-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### arrayhelpers + + +|`arrayhelpers` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### asnipe + + +|`asnipe` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.17|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive + + +|`assertive` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.base + + +|`assertive.base` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.code + + +|`assertive.code` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.data + + +|`assertive.data` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.data.uk + + +|`assertive.data.uk` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.data.us + + +|`assertive.data.us` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.datetimes + + +|`assertive.datetimes` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.files + + +|`assertive.files` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.matrices + + +|`assertive.matrices` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.models + + +|`assertive.models` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.numbers + + +|`assertive.numbers` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.properties + + +|`assertive.properties` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.reflection + + +|`assertive.reflection` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.sets + + +|`assertive.sets` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.strings + + +|`assertive.strings` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertive.types + + +|`assertive.types` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### assertthat + + +|`assertthat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### AUC + + +|`AUC` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### audio + + +|`audio` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### aws + + +|`aws` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.5-6|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.5-5|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.5-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### awsMethods + + +|`awsMethods` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### backports + + +|`backports` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### bacr + + +|`bacr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bartMachine + + +|`bartMachine` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.4.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bartMachineJARs + + +|`bartMachineJARs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### base64 + + +|`base64` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.0.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BatchJobs + + +|`BatchJobs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### batchmeans + + +|`batchmeans` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BayesianTools + + +|`BayesianTools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BayesLogit + + +|`BayesLogit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bayesm + + +|`bayesm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BayesPen + + +|`BayesPen` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bayesplot + + +|`bayesplot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.11.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.10.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### bayestestR + + +|`bayestestR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.15.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.14.0|`R-bundle-CRAN/2024.06-foss-2023b`| + +### BB + + +|`BB` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2019.10-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BBmisc + + +|`BBmisc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bbmle + + +|`bbmle` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.25.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BCEE + + +|`BCEE` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BDgraph + + +|`BDgraph` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.73|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.72|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bdsmatrix + + +|`bdsmatrix` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3-6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### beanplot + + +|`beanplot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### beepr + + +|`beepr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0|`R-bundle-CRAN/2024.11-foss-2024a`| + +### beeswarm + + +|`beeswarm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### berryFunctions + + +|`berryFunctions` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.22.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.22.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### betareg + + +|`betareg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.2-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.1-4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BH + + +|`BH` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.84.0-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.81.0-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### BiasedUrn + + +|`BiasedUrn` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0.11|`R-bundle-CRAN/2023.12-foss-2023a`| + +### bibtex + + +|`bibtex` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BIEN + + +|`BIEN` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bigD + + +|`bigD` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.2.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BIGL + + +|`BIGL` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.9.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.8.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### biglm + + +|`biglm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-3|`R-bundle-CRAN/2024.11-foss-2024a`| + +### bigmemory + + +|`bigmemory` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.6.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|4.6.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### bigmemory.sri + + +|`bigmemory.sri` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.1.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### bindr + + +|`bindr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.1.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bindrcpp + + +|`bindrcpp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### bio3d + + +|`bio3d` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4-5|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.4-4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### biom + + +|`biom` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### biomod2 + + +|`biomod2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.2-5-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|4.2-4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### bit + + +|`bit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.5.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.0.5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bit64 + + +|`bit64` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.5.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.0.5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bitops + + +|`bitops` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-9|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0-7|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### blavaan + + +|`blavaan` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-6|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.5-5|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.5-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### blob + + +|`blob` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### BMA + + +|`BMA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.18.19|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.18.17|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bmp + + +|`bmp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bnlearn + + +|`bnlearn` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.0.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.9.4|`R-bundle-CRAN/2024.06-foss-2023b`| +|4.9.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### bold + + +|`bold` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### boot + + +|`boot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-31|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.3-30|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3-28.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### bootstrap + + +|`bootstrap` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2019.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Boruta + + +|`Boruta` version|R-bundle-CRAN modules that include it| +| --- | --- | +|8.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### brglm + + +|`brglm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bridgedist + + +|`bridgedist` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.1.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### bridgesampling + + +|`bridgesampling` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### brms + + +|`brms` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.22.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.21.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.20.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### Brobdingnag + + +|`Brobdingnag` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### broom + + +|`broom` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0.6|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### broom.helpers + + +|`broom.helpers` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.17.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.15.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.14.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### broom.mixed + + +|`broom.mixed` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.9.6|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.2.9.5|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2.9.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### bst + + +|`bst` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-24|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Cairo + + +|`Cairo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### calibrate + + +|`calibrate` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### car + + +|`car` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-3|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.1-2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### carData + + +|`carData` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0-5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cards + + +|`cards` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.0|`R-bundle-CRAN/2024.11-foss-2024a`| + +### caret + + +|`caret` version|R-bundle-CRAN modules that include it| +| --- | --- | +|6.0-94|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### catlearn + + +|`catlearn` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### caTools + + +|`caTools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.18.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.18.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### CBPS + + +|`CBPS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.23|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### celestial + + +|`celestial` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cellranger + + +|`cellranger` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cgdsr + + +|`cgdsr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cghFLasso + + +|`cghFLasso` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### changepoint + + +|`changepoint` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.2.4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### checkmate + + +|`checkmate` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.3.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### chemometrics + + +|`chemometrics` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### chk + + +|`chk` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.9.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### chkptstanr + + +|`chkptstanr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### chron + + +|`chron` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3-61|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### circlize + + +|`circlize` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.16|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4.15|`R-bundle-CRAN/2023.12-foss-2023a`| + +### circular + + +|`circular` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.5-0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### class + + +|`class` version|R-bundle-CRAN modules that include it| +| --- | --- | +|7.3-22|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### classInt + + +|`classInt` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4-10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cld2 + + +|`cld2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2.4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### clisymbols + + +|`clisymbols` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### clock + + +|`clock` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.7.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### clue + + +|`clue` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-66|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3-65|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cluster + + +|`cluster` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### clusterGeneration + + +|`clusterGeneration` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### clusterRepro + + +|`clusterRepro` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### clustree + + +|`clustree` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### clValid + + +|`clValid` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cmna + + +|`cmna` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cmprsk + + +|`cmprsk` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2-12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.2-11|`R-bundle-CRAN/2023.12-foss-2023a`| + +### cNORM + + +|`cNORM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.4.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.0.4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cobalt + + +|`cobalt` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.5.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|4.5.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### cobs + + +|`cobs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3-5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### coda + + +|`coda` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.19-4.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.19-4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### codetools + + +|`codetools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2-20|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2-19|`R-bundle-CRAN/2023.12-foss-2023a`| + +### coin + + +|`coin` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### collapse + + +|`collapse` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.18|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.0.14|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0.7|`R-bundle-CRAN/2023.12-foss-2023a`| + +### colorspace + + +|`colorspace` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.1-0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### colourpicker + + +|`colourpicker` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### combinat + + +|`combinat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ComICS + + +|`ComICS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ComplexUpset + + +|`ComplexUpset` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### compositions + + +|`compositions` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0-6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### CompQuadForm + + +|`CompQuadForm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### conditionz + + +|`conditionz` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### conflicted + + +|`conflicted` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### conquer + + +|`conquer` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ConsRank + + +|`ConsRank` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### contfrac + + +|`contfrac` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### copCAR + + +|`copCAR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### copula + + +|`copula` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-4|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### corpcor + + +|`corpcor` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6.10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### corrplot + + +|`corrplot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.95|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.92|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### covr + + +|`covr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.6.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### CovSel + + +|`CovSel` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### covsim + + +|`covsim` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### cowplot + + +|`cowplot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### coxed + + +|`coxed` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### coxme + + +|`coxme` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2-22|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.2-20|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.2-18.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### cplm + + +|`cplm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7-12.1|`R-bundle-CRAN/2024.11-foss-2024a`| + +### crfsuite + + +|`crfsuite` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### crosstalk + + +|`crosstalk` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### crul + + +|`crul` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.4.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### cSEM + + +|`cSEM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### csSAM + + +|`csSAM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ctmle + + +|`ctmle` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cubature + + +|`cubature` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.1.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cubelyr + + +|`cubelyr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### cvAUC + + +|`cvAUC` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### CVST + + +|`CVST` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### CVXR + + +|`CVXR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-15|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0-13|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0-11|`R-bundle-CRAN/2023.12-foss-2023a`| + +### d3Network + + +|`d3Network` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dagitty + + +|`dagitty` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### data.table + + +|`data.table` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.16.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.15.4|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.14.10|`R-bundle-CRAN/2023.12-foss-2023a`| + +### data.tree + + +|`data.tree` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DataCombine + + +|`DataCombine` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.21|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### datawizard + + +|`datawizard` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.13.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.12.2|`R-bundle-CRAN/2024.06-foss-2023b`| + +### date + + +|`date` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-42|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dbarts + + +|`dbarts` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-28|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.9-25|`R-bundle-CRAN/2023.12-foss-2023a`| + +### DBI + + +|`DBI` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### dbplyr + + +|`dbplyr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.5.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.4.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### dbscan + + +|`dbscan` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-12|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dcurver + + +|`dcurver` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ddalpha + + +|`ddalpha` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.16|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.3.15|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3.13|`R-bundle-CRAN/2023.12-foss-2023a`| + +### deal + + +|`deal` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-42|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### debugme + + +|`debugme` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### deldir + + +|`deldir` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### dendextend + + +|`dendextend` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.19.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.17.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DEoptim + + +|`DEoptim` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DEoptimR + + +|`DEoptimR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-3-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DepthProc + + +|`DepthProc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Deriv + + +|`Deriv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.1.6|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.1.3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DescTools + + +|`DescTools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.99.58|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.99.54|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.99.52|`R-bundle-CRAN/2023.12-foss-2023a`| + +### deSolve + + +|`deSolve` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.40|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dfidx + + +|`dfidx` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.0-5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DHARMa + + +|`DHARMa` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.4.6|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dHSIC + + +|`dHSIC` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### diagram + + +|`diagram` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DiagrammeR + + +|`DiagrammeR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.10|`R-bundle-CRAN/2023.12-foss-2023a`| + +### DiceKriging + + +|`DiceKriging` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dichromat + + +|`dichromat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0-0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dimRed + + +|`dimRed` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### diptest + + +|`diptest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.77-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.77-0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### DiscriMiner + + +|`DiscriMiner` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-29|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dismo + + +|`dismo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-14|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### distillery + + +|`distillery` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### distr + + +|`distr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.9.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.9.3|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.9.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### distrEx + + +|`distrEx` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.9.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.9.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.9.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### distributional + + +|`distributional` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.4.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.3.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### DistributionUtils + + +|`DistributionUtils` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### diveRsity + + +|`diveRsity` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9.90|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dlm + + +|`dlm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-6.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-6|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DMCfun + + +|`DMCfun` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.0.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.5.4|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### doBy + + +|`doBy` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.6.24|`R-bundle-CRAN/2024.11-foss-2024a`| + +### doc2vec + + +|`doc2vec` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### docstring + + +|`docstring` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### doMC + + +|`doMC` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### doParallel + + +|`doParallel` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.17|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### doRNG + + +|`doRNG` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### doSNOW + + +|`doSNOW` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.20|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dotCall64 + + +|`dotCall64` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### downloader + + +|`downloader` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dplyr + + +|`dplyr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dr + + +|`dr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0.10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dreamerr + + +|`dreamerr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### drgee + + +|`drgee` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DRR + + +|`DRR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### drugCombo + + +|`drugCombo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DT + + +|`DT` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.33|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.31|`R-bundle-CRAN/2023.12-foss-2023a`| + +### dtangle + + +|`dtangle` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dtplyr + + +|`dtplyr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### DTRreg + + +|`DTRreg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### dtw + + +|`dtw` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.23-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dummies + + +|`dummies` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dygraphs + + +|`dygraphs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.1.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### dynamicTreeCut + + +|`dynamicTreeCut` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.63-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### e1071 + + +|`e1071` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-16|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7-14|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### earth + + +|`earth` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.3.4|`R-bundle-CRAN/2024.11-foss-2024a`| +|5.3.3|`R-bundle-CRAN/2024.06-foss-2023b`| +|5.3.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### EasyABC + + +|`EasyABC` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ECOSolveR + + +|`ECOSolveR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ellipse + + +|`ellipse` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### elliptic + + +|`elliptic` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### emdbook + + +|`emdbook` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### emmeans + + +|`emmeans` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.10.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.10.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.8.9|`R-bundle-CRAN/2023.12-foss-2023a`| + +### emoa + + +|`emoa` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-3|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.5-2|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.5-0.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### emulator + + +|`emulator` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-24|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2-21|`R-bundle-CRAN/2023.12-foss-2023a`| + +### energy + + +|`energy` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-12|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7-11|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ENMeval + + +|`ENMeval` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### entropy + + +|`entropy` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### EnvStats + + +|`EnvStats` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.8.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### epitools + + +|`epitools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-10.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ergm + + +|`ergm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.7.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.6.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|4.5.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ergm.count + + +|`ergm.count` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|4.1.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ergm.multi + + +|`ergm.multi` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.1.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.2.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### estimability + + +|`estimability` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### EValue + + +|`EValue` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### evd + + +|`evd` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3-7.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.3-7|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.3-6.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### Exact + + +|`Exact` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### expm + + +|`expm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.999-9|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.999-8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ExPosition + + +|`ExPosition` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.8.23|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### expsmooth + + +|`expsmooth` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### extrafont + + +|`extrafont` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.19|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### extrafontdb + + +|`extrafontdb` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### extRemes + + +|`extRemes` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### FactoMineR + + +|`FactoMineR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.9|`R-bundle-CRAN/2023.12-foss-2023a`| + +### FactorCopula + + +|`FactorCopula` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fail + + +|`fail` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### farver + + +|`farver` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### fastcluster + + +|`fastcluster` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### fastDummies + + +|`fastDummies` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7.4|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7.3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fasterize + + +|`fasterize` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0.5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fastGHQuad + + +|`fastGHQuad` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.1|`R-bundle-CRAN/2024.11-foss-2024a`| + +### fastICA + + +|`fastICA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-5.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2-4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fastlogranktest + + +|`fastlogranktest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.1|`R-bundle-CRAN/2024.11-foss-2024a`| + +### fastmatch + + +|`fastmatch` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fBasics + + +|`fBasics` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4041.97|`R-bundle-CRAN/2024.11-foss-2024a`| + +### fdrtool + + +|`fdrtool` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.18|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2.17|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### feather + + +|`feather` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ff + + +|`ff` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.5.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.0.12|`R-bundle-CRAN/2024.06-foss-2023b`| +|4.0.9|`R-bundle-CRAN/2023.12-foss-2023a`| + +### fftw + + +|`fftw` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-9|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0-8|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0-7|`R-bundle-CRAN/2023.12-foss-2023a`| + +### fftwtools + + +|`fftwtools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fields + + +|`fields` version|R-bundle-CRAN modules that include it| +| --- | --- | +|16.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|15.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### filehash + + +|`filehash` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4-6|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.4-5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### finalfit + + +|`finalfit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.8|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0.7|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### findpython + + +|`findpython` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.9|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0.8|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fishMod + + +|`fishMod` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.29.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.29|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fitdistrplus + + +|`fitdistrplus` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-11|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fixest + + +|`fixest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.12.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.11.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### FKSUM + + +|`FKSUM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### flashClust + + +|`flashClust` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.01-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### flexclust + + +|`flexclust` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### flexmix + + +|`flexmix` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3-19|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### flextable + + +|`flextable` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.9.6|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.9.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### fma + + +|`fma` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### FME + + +|`FME` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.6.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fmri + + +|`fmri` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9.12.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.9.12|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### FNN + + +|`FNN` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.4.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1.4|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.3.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### fontBitstreamVera + + +|`fontBitstreamVera` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fontLiberation + + +|`fontLiberation` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fontquiver + + +|`fontquiver` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### forcats + + +|`forcats` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### foreach + + +|`foreach` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### forecast + + +|`forecast` version|R-bundle-CRAN modules that include it| +| --- | --- | +|8.23.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|8.21.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### foreign + + +|`foreign` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8-87|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.8-86|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### formatR + + +|`formatR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.14|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Formula + + +|`Formula` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### formula.tools + + +|`formula.tools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fossil + + +|`fossil` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fpc + + +|`fpc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2-13|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.2-12|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.2-10|`R-bundle-CRAN/2023.12-foss-2023a`| + +### fpp + + +|`fpp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### fracdiff + + +|`fracdiff` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.5-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### frbs + + +|`frbs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.2-0|`R-bundle-CRAN/2024.11-foss-2024a`| + +### furrr + + +|`furrr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### futile.logger + + +|`futile.logger` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### futile.options + + +|`futile.options` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### future + + +|`future` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.34.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.33.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.33.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### future.apply + + +|`future.apply` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.11.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.11.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.11.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gam + + +|`gam` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.22-5|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.22-3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gamlss + + +|`gamlss` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.4-22|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|5.4-20|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gamlss.data + + +|`gamlss.data` version|R-bundle-CRAN modules that include it| +| --- | --- | +|6.0-6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|6.0-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gamlss.dist + + +|`gamlss.dist` version|R-bundle-CRAN modules that include it| +| --- | --- | +|6.1-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gamlss.tr + + +|`gamlss.tr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.1-9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|5.1-7|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gamm4 + + +|`gamm4` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2-6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gap + + +|`gap` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.5-3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gap.datasets + + +|`gap.datasets` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gapfill + + +|`gapfill` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.6-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gargle + + +|`gargle` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gaussquad + + +|`gaussquad` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gbm + + +|`gbm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.1.9|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1.8.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gbRd + + +|`gbRd` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4-11|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gclus + + +|`gclus` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gcmr + + +|`gcmr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.3|`R-bundle-CRAN/2024.11-foss-2024a`| + +### gdalUtils + + +|`gdalUtils` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.3.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gdata + + +|`gdata` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.0.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gdistance + + +|`gdistance` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gdtools + + +|`gdtools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3.7|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.3.5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gee + + +|`gee` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.13-27|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|4.13-26|`R-bundle-CRAN/2023.12-foss-2023a`| + +### geeM + + +|`geeM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.10.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### geepack + + +|`geepack` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.12|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.3.11|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3.9|`R-bundle-CRAN/2023.12-foss-2023a`| + +### geex + + +|`geex` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### geiger + + +|`geiger` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### GeneNet + + +|`GeneNet` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.16|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### generics + + +|`generics` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### genoPlotR + + +|`genoPlotR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### GenSA + + +|`GenSA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.14.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1.14|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.10.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### geojsonsf + + +|`geojsonsf` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### geometries + + +|`geometries` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### geometry + + +|`geometry` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.4.7|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### getopt + + +|`getopt` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.20.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### GetoptLong + + +|`GetoptLong` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gfonts + + +|`gfonts` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### GGally + + +|`GGally` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.2.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggbeeswarm + + +|`ggbeeswarm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggdag + + +|`ggdag` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.13|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.2.12|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2.10|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggdist + + +|`ggdist` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|3.3.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggExtra + + +|`ggExtra` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.10.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggfan + + +|`ggfan` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggforce + + +|`ggforce` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggformula + + +|`ggformula` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.12.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggfun + + +|`ggfun` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.1.5|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.1.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggh4x + + +|`ggh4x` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggnetwork + + +|`ggnetwork` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.5.12|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggplot2 + + +|`ggplot2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|3.4.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggplotify + + +|`ggplotify` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggprism + + +|`ggprism` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.6|`R-bundle-CRAN/2024.11-foss-2024a`| + +### ggpubr + + +|`ggpubr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggraph + + +|`ggraph` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggrepel + + +|`ggrepel` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.6|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.9.5|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.9.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggridges + + +|`ggridges` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.5.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggsci + + +|`ggsci` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|3.0.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggsignif + + +|`ggsignif` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggstance + + +|`ggstance` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.3.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggstats + + +|`ggstats` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.6.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.5.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggvenn + + +|`ggvenn` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ggvis + + +|`ggvis` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4.8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### GillespieSSA + + +|`GillespieSSA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### git2r + + +|`git2r` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.35.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.33.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### GJRM + + +|`GJRM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2-6.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.2-6.5|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2-6.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### glasso + + +|`glasso` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gld + + +|`gld` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.6.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gllvm + + +|`gllvm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### glmmML + + +|`glmmML` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1.6|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### glmmTMB + + +|`glmmTMB` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.10|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1.9|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### glmnet + + +|`glmnet` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.1-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### GlobalOptions + + +|`GlobalOptions` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### globals + + +|`globals` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.16.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.16.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gmm + + +|`gmm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gmodels + + +|`gmodels` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.19.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.18.1.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gmp + + +|`gmp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7-5|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.7-4|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.7-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gnumeric + + +|`gnumeric` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7-10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### goftest + + +|`goftest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### goldilocks + + +|`goldilocks` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.0|`R-bundle-CRAN/2024.11-foss-2024a`| + +### gomms + + +|`gomms` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### googledrive + + +|`googledrive` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### googlesheets4 + + +|`googlesheets4` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gower + + +|`gower` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### GPArotation + + +|`GPArotation` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2024.3-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2023.11-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gplots + + +|`gplots` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.2.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.1.3.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.1.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### graphlayouts + + +|`graphlayouts` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### grf + + +|`grf` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.3.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.3.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gridBase + + +|`gridBase` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4-7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gridExtra + + +|`gridExtra` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gridGraphics + + +|`gridGraphics` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### grImport2 + + +|`grImport2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-3|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3-1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### grpreg + + +|`grpreg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.5.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.4.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### GSA + + +|`GSA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.03.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.03.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gsalib + + +|`gsalib` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gsDesign + + +|`gsDesign` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.6.5|`R-bundle-CRAN/2024.11-foss-2024a`| + +### gsl + + +|`gsl` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gss + + +|`gss` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2-9|`R-bundle-CRAN/2024.11-foss-2024a`| + +### gsubfn + + +|`gsubfn` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7|`R-bundle-CRAN/2024.11-foss-2024a`| + +### gsw + + +|`gsw` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gt + + +|`gt` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.11.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.10.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.10.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gtable + + +|`gtable` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.6|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3.5|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.3.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### gtools + + +|`gtools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.9.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gtsummary + + +|`gtsummary` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### GUTS + + +|`GUTS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gWidgets2 + + +|`gWidgets2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### gWidgets2tcltk + + +|`gWidgets2tcltk` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### GxEScanR + + +|`GxEScanR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### h2o + + +|`h2o` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.44.0.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|3.42.0.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### hal9001 + + +|`hal9001` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### haldensify + + +|`haldensify` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### hardhat + + +|`hardhat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### harmony + + +|`harmony` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### hash + + +|`hash` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.6.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### haven + + +|`haven` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.5.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### hdf5r + + +|`hdf5r` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.11|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.3.10|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3.8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### hdm + + +|`hdm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.3.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### heatmap3 + + +|`heatmap3` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### here + + +|`here` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### hexbin + + +|`hexbin` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.28.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.28.3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### HGNChelper + + +|`HGNChelper` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8.15|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.8.14|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.8.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### HiddenMarkov + + +|`HiddenMarkov` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8-13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Hmisc + + +|`Hmisc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.2-0|`R-bundle-CRAN/2024.11-foss-2024a`| +|5.1-3|`R-bundle-CRAN/2024.06-foss-2023b`| +|5.1-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### hms + + +|`hms` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Hmsc + + +|`Hmsc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0-13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### htmlTable + + +|`htmlTable` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.4.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### httpcode + + +|`httpcode` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### huge + + +|`huge` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### hunspell + + +|`hunspell` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.0.3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### hwriter + + +|`hwriter` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### HWxtest + + +|`HWxtest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### hypergeo + + +|`hypergeo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ica + + +|`ica` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### IDPmisc + + +|`IDPmisc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.21|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.20|`R-bundle-CRAN/2023.12-foss-2023a`| + +### idr + + +|`idr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ids + + +|`ids` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ie2misc + + +|`ie2misc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### igraph + + +|`igraph` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.0.3|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.5.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### image.binarization + + +|`image.binarization` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### imager + + +|`imager` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.45.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### imagerExtra + + +|`imagerExtra` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ineq + + +|`ineq` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2-13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### influenceR + + +|`influenceR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### infotheo + + +|`infotheo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### inline + + +|`inline` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.20|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3.19|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### insight + + +|`insight` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.20.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.20.3|`R-bundle-CRAN/2024.06-foss-2023b`| + +### intergraph + + +|`intergraph` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### interp + + +|`interp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1-5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### interpretR + + +|`interpretR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### intrinsicDimension + + +|`intrinsicDimension` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### inum + + +|`inum` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ipred + + +|`ipred` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-15|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.9-14|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### irace + + +|`irace` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### irlba + + +|`irlba` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3.5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ismev + + +|`ismev` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.42|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Iso + + +|`Iso` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-21|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### isoband + + +|`isoband` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ISOcodes + + +|`ISOcodes` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2024.02.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2023.12.07|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ISOweek + + +|`ISOweek` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### iterators + + +|`iterators` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.14|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### itertools + + +|`itertools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### JADE + + +|`JADE` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### janeaustenr + + +|`janeaustenr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### JBTools + + +|`JBTools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.2.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### jiebaR + + +|`jiebaR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### jiebaRD + + +|`jiebaRD` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### jomo + + +|`jomo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.7-6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### jpeg + + +|`jpeg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### jsonify + + +|`jsonify` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### jstable + + +|`jstable` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.6|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2.6|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### juicyjuice + + +|`juicyjuice` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### kableExtra + + +|`kableExtra` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.0|`R-bundle-CRAN/2024.11-foss-2024a`| + +### kde1d + + +|`kde1d` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### kedd + + +|`kedd` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### kernlab + + +|`kernlab` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-33|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.9-32|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### KernSmooth + + +|`KernSmooth` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.23-24|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.23-22|`R-bundle-CRAN/2023.12-foss-2023a`| + +### kinship2 + + +|`kinship2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9.6.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.9.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### klaR + + +|`klaR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.7-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### KODAMA + + +|`KODAMA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### kohonen + + +|`kohonen` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ks + + +|`ks` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.14.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.14.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.14.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### labdsv + + +|`labdsv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### labeling + + +|`labeling` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### labelled + + +|`labelled` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.13.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.12.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### laeken + + +|`laeken` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.5.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### lambda.r + + +|`lambda.r` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### LaplacesDemon + + +|`LaplacesDemon` version|R-bundle-CRAN modules that include it| +| --- | --- | +|16.1.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lars + + +|`lars` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lassosum + + +|`lassosum` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lattice + + +|`lattice` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.22-6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.22-5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### latticeExtra + + +|`latticeExtra` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-30|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lava + + +|`lava` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.7.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### lavaan + + +|`lavaan` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-19|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.6-18|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.6-16|`R-bundle-CRAN/2023.12-foss-2023a`| + +### lazy + + +|`lazy` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-18|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lazyeval + + +|`lazyeval` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### LCFdata + + +|`LCFdata` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lda + + +|`lda` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ldbounds + + +|`ldbounds` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### leafem + + +|`leafem` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### leaflet + + +|`leaflet` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.2.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### leaflet.providers + + +|`leaflet.providers` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### leafsync + + +|`leafsync` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### leaps + + +|`leaps` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|3.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### LearnBayes + + +|`LearnBayes` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.15.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### leiden + + +|`leiden` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lhs + + +|`lhs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1.6|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### libcoin + + +|`libcoin` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### limSolve + + +|`limSolve` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.7.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.5.7|`R-bundle-CRAN/2023.12-foss-2023a`| + +### linkcomm + + +|`linkcomm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-14|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### linprog + + +|`linprog` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### liquidSVM + + +|`liquidSVM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### listenv + + +|`listenv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.9.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### lme4 + + +|`lme4` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-35.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-35.4|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1-35.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### LMERConvenienceFunctions + + +|`LMERConvenienceFunctions` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lmerTest + + +|`lmerTest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lmom + + +|`lmom` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Lmoments + + +|`Lmoments` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lmtest + + +|`lmtest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-40|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lobstr + + +|`lobstr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### locfdr + + +|`locfdr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### locfit + + +|`locfit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5-9.10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.5-9.8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### logcondens + + +|`logcondens` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### logger + + +|`logger` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### logging + + +|`logging` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.10-108|`R-bundle-CRAN/2024.11-foss-2024a`| + +### logistf + + +|`logistf` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.26.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### logspline + + +|`logspline` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.22|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1.21|`R-bundle-CRAN/2023.12-foss-2023a`| + +### longitudinal + + +|`longitudinal` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### longmemo + + +|`longmemo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### loo + + +|`loo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.8.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.7.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.6.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### lpSolve + + +|`lpSolve` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.6.22|`R-bundle-CRAN/2024.11-foss-2024a`| +|5.6.20|`R-bundle-CRAN/2024.06-foss-2023b`| +|5.6.19|`R-bundle-CRAN/2023.12-foss-2023a`| + +### lpSolveAPI + + +|`lpSolveAPI` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.5.2.0-17.12|`R-bundle-CRAN/2024.11-foss-2024a`| +|5.5.2.0-17.11|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lqa + + +|`lqa` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lsei + + +|`lsei` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lslx + + +|`lslx` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lubridate + + +|`lubridate` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### lwgeom + + +|`lwgeom` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2-14|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2-13|`R-bundle-CRAN/2023.12-foss-2023a`| + +### magic + + +|`magic` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### magick + + +|`magick` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.8.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.8.3|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.8.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### MALDIquant + + +|`MALDIquant` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.22.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.22.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.22.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### manipulateWidget + + +|`manipulateWidget` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.11.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mapproj + + +|`mapproj` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### maps + + +|`maps` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.4.2.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.4.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.4.1.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### maptools + + +|`maptools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### markdown + + +|`markdown` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.12|`R-bundle-CRAN/2023.12-foss-2023a`| + +### MASS + + +|`MASS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|7.3-61|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|7.3-60|`R-bundle-CRAN/2023.12-foss-2023a`| + +### Matching + + +|`Matching` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.10-15|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.10-14|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### MatchIt + + +|`MatchIt` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.6.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.5.5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mathjaxr + + +|`mathjaxr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### matlab + + +|`matlab` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.4.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0.4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Matrix + + +|`Matrix` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7-0|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.6-4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### matrixcalc + + +|`matrixcalc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### MatrixModels + + +|`MatrixModels` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### matrixStats + + +|`matrixStats` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.3.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### maxLik + + +|`maxLik` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5-2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.5-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### maxlike + + +|`maxlike` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.1-10|`R-bundle-CRAN/2023.12-foss-2023a`| + +### maxnet + + +|`maxnet` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mboost + + +|`mboost` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.9-11|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.9-10|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.9-9|`R-bundle-CRAN/2023.12-foss-2023a`| + +### mclogit + + +|`mclogit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mclust + + +|`mclust` version|R-bundle-CRAN modules that include it| +| --- | --- | +|6.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|6.0.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### mcmc + + +|`mcmc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### MCMCpack + + +|`MCMCpack` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7-0|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.6-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### mcmcse + + +|`mcmcse` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mda + + +|`mda` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-5|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.5-4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### medflex + + +|`medflex` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mediation + + +|`mediation` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.5.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### memisc + + +|`memisc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.99.31.8.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.99.31.7|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.99.31.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### memuse + + +|`memuse` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.2-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### MESS + + +|`MESS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### metadat + + +|`metadat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### metafor + + +|`metafor` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.6-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|4.4-0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### MetaUtility + + +|`MetaUtility` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mets + + +|`mets` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### mgcv + + +|`mgcv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.9-0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### mgsub + + +|`mgsub` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mhsmm + + +|`mhsmm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.21|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mi + + +|`mi` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mice + + +|`mice` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.16.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### miceadds + + +|`miceadds` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.17-44|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|3.16-18|`R-bundle-CRAN/2023.12-foss-2023a`| + +### microbenchmark + + +|`microbenchmark` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.4.10|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### MicrobiomeStat + + +|`MicrobiomeStat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2|`R-bundle-CRAN/2024.11-foss-2024a`| + +### MIIVsem + + +|`MIIVsem` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### minerva + + +|`minerva` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### minpack.lm + + +|`minpack.lm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### minqa + + +|`minqa` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.8|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2.7|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### minty + + +|`minty` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0.4|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.0.1|`R-bundle-CRAN/2024.06-foss-2023b`| + +### mirt + + +|`mirt` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.43|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.41|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### misc3d + + +|`misc3d` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### miscTools + + +|`miscTools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-28|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### missForest + + +|`missForest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### missMDA + + +|`missMDA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.19|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mitml + + +|`mitml` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4-5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mitools + + +|`mitools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mixtools + + +|`mixtools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mlbench + + +|`mlbench` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1-5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1-3.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### mlegp + + +|`mlegp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### MLmetrics + + +|`MLmetrics` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### mlogit + + +|`mlogit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mlr + + +|`mlr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.19.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.19.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### mlrMBO + + +|`mlrMBO` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mltools + + +|`mltools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mnormt + + +|`mnormt` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### modeest + + +|`modeest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4.0|`R-bundle-CRAN/2024.11-foss-2024a`| + +### ModelMetrics + + +|`ModelMetrics` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### modelr + + +|`modelr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### modeltools + + +|`modeltools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2-23|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### modsem + + +|`modsem` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.6|`R-bundle-CRAN/2024.11-foss-2024a`| + +### momentfit + + +|`momentfit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### moments + + +|`moments` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.14.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### MonteCarlo + + +|`MonteCarlo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mosaicCore + + +|`mosaicCore` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mpath + + +|`mpath` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4-2.26|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.4-2.25|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4-2.23|`R-bundle-CRAN/2023.12-foss-2023a`| + +### MplusAutomation + + +|`MplusAutomation` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.1|`R-bundle-CRAN/2024.11-foss-2024a`| + +### mRMRe + + +|`mRMRe` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.2.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.1.2.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### msm + + +|`msm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mstate + + +|`mstate` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### multcomp + + +|`multcomp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4-26|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.4-25|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### multcompView + + +|`multcompView` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.1-9|`R-bundle-CRAN/2023.12-foss-2023a`| + +### multicool + + +|`multicool` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### multipol + + +|`multipol` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### multitaper + + +|`multitaper` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-17|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| + +### munsell + + +|`munsell` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.5.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### mvabund + + +|`mvabund` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mvnfast + + +|`mvnfast` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### mvtnorm + + +|`mvtnorm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-2|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2-5|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2-4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### nabor + + +|`nabor` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### naniar + + +|`naniar` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### natserv + + +|`natserv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### naturalsort + + +|`naturalsort` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ncbit + + +|`ncbit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2013.03.29.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ncdf4 + + +|`ncdf4` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.23|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.22|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### NCmisc + + +|`NCmisc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### network + + +|`network` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.18.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### networkDynamic + + +|`networkDynamic` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.11.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.11.4|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.11.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### networkLite + + +|`networkLite` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### neuralnet + + +|`neuralnet` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.44.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### neuRosim + + +|`neuRosim` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2-14|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ngspatial + + +|`ngspatial` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### NISTunits + + +|`NISTunits` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### nleqslv + + +|`nleqslv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### nlme + + +|`nlme` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-166|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.1-165|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.1-164|`R-bundle-CRAN/2023.12-foss-2023a`| + +### nloptr + + +|`nloptr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.1.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### NLP + + +|`NLP` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-2|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.2-1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### nlsem + + +|`nlsem` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### nnet + + +|`nnet` version|R-bundle-CRAN modules that include it| +| --- | --- | +|7.3-19|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### nnls + + +|`nnls` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### nonnest2 + + +|`nonnest2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-8|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.5-7|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.5-6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### nor1mix + + +|`nor1mix` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### norm + + +|`norm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-11.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### nortest + + +|`nortest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### np + + +|`np` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.60-17|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### npsurv + + +|`npsurv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### numDeriv + + +|`numDeriv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2016.8-1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### oai + + +|`oai` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### oce + + +|`oce` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8-3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.8-2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### OceanView + + +|`OceanView` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### oddsratio + + +|`oddsratio` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### officer + + +|`officer` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.6.6|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.6.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### openair + + +|`openair` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.18-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.18-0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### OpenMx + + +|`OpenMx` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.21.13|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.21.11|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### openxlsx + + +|`openxlsx` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.2.7.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.2.5.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### operator.tools + + +|`operator.tools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### optextras + + +|`optextras` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2019-12.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### optimParallel + + +|`optimParallel` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### optimr + + +|`optimr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2019-12.16|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### optimx + + +|`optimx` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2023-10.21|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### optmatch + + +|`optmatch` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.10.8|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.10.7|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### optparse + + +|`optparse` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.7.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ordinal + + +|`ordinal` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2023.12-4.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2023.12-4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### origami + + +|`origami` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### oro.nifti + + +|`oro.nifti` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.11.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### orthopolynom + + +|`orthopolynom` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-6.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### osqp + + +|`osqp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.3.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.6.3.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### outliers + + +|`outliers` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.15|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### packrat + + +|`packrat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pacman + + +|`pacman` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pammtools + + +|`pammtools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.93|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.5.92|`R-bundle-CRAN/2023.12-foss-2023a`| + +### pamr + + +|`pamr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.57|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.56.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.56.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### pan + + +|`pan` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pander + + +|`pander` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.6|`R-bundle-CRAN/2024.11-foss-2024a`| + +### parallelDist + + +|`parallelDist` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### parallelly + + +|`parallelly` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.39.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.37.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.36.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### parallelMap + + +|`parallelMap` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ParamHelpers + + +|`ParamHelpers` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.14.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### parsedate + + +|`parsedate` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### party + + +|`party` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-17|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.3-15|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3-14|`R-bundle-CRAN/2023.12-foss-2023a`| + +### partykit + + +|`partykit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-22|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2-20|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pastecs + + +|`pastecs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3.21|`R-bundle-CRAN/2023.12-foss-2023a`| + +### patchwork + + +|`patchwork` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### pbapply + + +|`pbapply` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pbivnorm + + +|`pbivnorm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pbkrtest + + +|`pbkrtest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.5.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pbmcapply + + +|`pbmcapply` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.1|`R-bundle-CRAN/2024.11-foss-2024a`| + +### PCAmatchR + + +|`PCAmatchR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pcaPP + + +|`pcaPP` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0-5|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.0-4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pdp + + +|`pdp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.8.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### PearsonDS + + +|`PearsonDS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### pec + + +|`pec` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2023.04.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### penalized + + +|`penalized` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-52|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### penfa + + +|`penfa` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### peperr + + +|`peperr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### performance + + +|`performance` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.12.4|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.12.2|`R-bundle-CRAN/2024.06-foss-2023b`| + +### PermAlgo + + +|`PermAlgo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### permute + + +|`permute` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9-7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### phangorn + + +|`phangorn` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.12.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.11.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pheatmap + + +|`pheatmap` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### phylobase + + +|`phylobase` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.8.10|`R-bundle-CRAN/2023.12-foss-2023a`| + +### phytools + + +|`phytools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### pim + + +|`pim` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pinfsc50 + + +|`pinfsc50` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pixmap + + +|`pixmap` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4-13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4-12|`R-bundle-CRAN/2023.12-foss-2023a`| + +### pkgmaker + + +|`pkgmaker` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.32.10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### PKI + + +|`PKI` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-14|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| + +### plogr + + +|`plogr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### plot3D + + +|`plot3D` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### plot3Drgl + + +|`plot3Drgl` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### plotly + + +|`plotly` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.10.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|4.10.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### plotmo + + +|`plotmo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.6.4|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.6.3|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.6.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### plotrix + + +|`plotrix` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.8-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pls + + +|`pls` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.8-5|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.8-3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### plyr + + +|`plyr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### PMA + + +|`PMA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-4|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2-3|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### png + + +|`png` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### PoissonSeq + + +|`PoissonSeq` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### poLCA + + +|`poLCA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6.0.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### polspline + + +|`polspline` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.25|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.24|`R-bundle-CRAN/2023.12-foss-2023a`| + +### Polychrome + + +|`Polychrome` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### polyclip + + +|`polyclip` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.10-7|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.10-6|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### polycor + + +|`polycor` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### polynom + + +|`polynom` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### posterior + + +|`posterior` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.5.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ppcor + + +|`ppcor` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### prabclus + + +|`prabclus` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3-4|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.3-3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pracma + + +|`pracma` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### PresenceAbsence + + +|`PresenceAbsence` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### preseqR + + +|`preseqR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### prettyGraphs + + +|`prettyGraphs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### princurve + + +|`princurve` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pROC + + +|`pROC` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.18.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### prodlim + + +|`prodlim` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2024.06.25|`R-bundle-CRAN/2024.11-foss-2024a`| +|2023.08.28|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### profileModel + + +|`profileModel` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### proftools + + +|`proftools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.99-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### progress + + +|`progress` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### progressr + + +|`progressr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.15.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.14.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### projpred + + +|`projpred` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.8.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.7.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### proto + + +|`proto` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### proxy + + +|`proxy` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4-27|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### proxyC + + +|`proxyC` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.3.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### pryr + + +|`pryr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pscl + + +|`pscl` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.5.5.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### pspline + + +|`pspline` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-20|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0-19|`R-bundle-CRAN/2023.12-foss-2023a`| + +### psych + + +|`psych` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4.6.26|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.4.3|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.3.9|`R-bundle-CRAN/2023.12-foss-2023a`| + +### Publish + + +|`Publish` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2023.01.17|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pulsar + + +|`pulsar` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### pvclust + + +|`pvclust` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### PWEALL + + +|`PWEALL` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.0.1|`R-bundle-CRAN/2024.11-foss-2024a`| + +### qgam + + +|`qgam` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### qgraph + + +|`qgraph` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### qqman + + +|`qqman` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### qrng + + +|`qrng` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-10|`R-bundle-CRAN/2024.11-foss-2024a`| + +### qrnn + + +|`qrnn` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### quadprog + + +|`quadprog` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### quanteda + + +|`quanteda` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.1.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.0.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.3.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### quantmod + + +|`quantmod` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.26|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4.25|`R-bundle-CRAN/2023.12-foss-2023a`| + +### quantreg + + +|`quantreg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.99.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|5.98|`R-bundle-CRAN/2024.06-foss-2023b`| +|5.97|`R-bundle-CRAN/2023.12-foss-2023a`| + +### questionr + + +|`questionr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### QuickJSR + + +|`QuickJSR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### R.cache + + +|`R.cache` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.16.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### R.matlab + + +|`R.matlab` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.7.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### R.methodsS3 + + +|`R.methodsS3` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### R.oo + + +|`R.oo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.27.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.26.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.25.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### R.rsp + + +|`R.rsp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.46.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.45.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### R.utils + + +|`R.utils` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.12.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### r2rtf + + +|`r2rtf` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.1|`R-bundle-CRAN/2024.11-foss-2024a`| + +### R2WinBUGS + + +|`R2WinBUGS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1-22.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1-21|`R-bundle-CRAN/2023.12-foss-2023a`| + +### random + + +|`random` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### randomForest + + +|`randomForest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.7-1.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.7-1.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### randomForestSRC + + +|`randomForestSRC` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.2.3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### randtoolbox + + +|`randtoolbox` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.5|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.0.4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rangeModelMetadata + + +|`rangeModelMetadata` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ranger + + +|`ranger` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.17.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.16.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RANN + + +|`RANN` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.6.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.6.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rapidjsonr + + +|`rapidjsonr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rARPACK + + +|`rARPACK` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.11-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### raster + + +|`raster` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.6-30|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.6-26|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rasterVis + + +|`rasterVis` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.51.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ratelimitr + + +|`ratelimitr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RBesT + + +|`RBesT` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-4|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7-3|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.7-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rbibutils + + +|`rbibutils` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.2.16|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rbison + + +|`rbison` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rborist + + +|`Rborist` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.3-5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### RCAL + + +|`RCAL` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rcgmin + + +|`Rcgmin` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2022-4.30|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RCircos + + +|`RCircos` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RColorBrewer + + +|`RColorBrewer` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RcppArmadillo + + +|`RcppArmadillo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|14.2.0-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.12.8.4.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.12.6.6.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### RcppEigen + + +|`RcppEigen` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.4.0.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3.4.0.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.3.3.9.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### RcppGSL + + +|`RcppGSL` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RcppParallel + + +|`RcppParallel` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.1.9|`R-bundle-CRAN/2024.11-foss-2024a`| +|5.1.7|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RcppProgress + + +|`RcppProgress` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RcppRoll + + +|`RcppRoll` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RcppThread + + +|`RcppThread` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### RcppTOML + + +|`RcppTOML` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RCurl + + +|`RCurl` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.98-1.16|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.98-1.14|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.98-1.13|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rda + + +|`rda` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rdpack + + +|`Rdpack` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.6.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.6|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rdrop2 + + +|`rdrop2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### reactable + + +|`reactable` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### reactR + + +|`reactR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.5.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### readbitmap + + +|`readbitmap` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### reader + + +|`reader` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### readODS + + +|`readODS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.3.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### readr + + +|`readr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### readxl + + +|`readxl` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rebird + + +|`rebird` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### recipes + + +|`recipes` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0.10|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### RefFreeEWAS + + +|`RefFreeEWAS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### reformulas + + +|`reformulas` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.0|`R-bundle-CRAN/2024.11-foss-2024a`| + +### registry + + +|`registry` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### regsem + + +|`regsem` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### relsurv + + +|`relsurv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2-9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rematch + + +|`rematch` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rentrez + + +|`rentrez` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### renv + + +|`renv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.11|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0.7|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### reprex + + +|`reprex` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.1.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### resample + + +|`resample` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### reshape + + +|`reshape` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### reshape2 + + +|`reshape2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### reticulate + + +|`reticulate` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.40.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.38.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.34.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rex + + +|`rex` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rgbif + + +|`rgbif` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.8.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.8.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.7.8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### RGCCA + + +|`RGCCA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|3.0.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rgdal + + +|`rgdal` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6-7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rgeos + + +|`rgeos` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rgexf + + +|`rgexf` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.16.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.16.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rgl + + +|`rgl` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.14|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.3.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2.8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rglpk + + +|`Rglpk` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-5.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.6-5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rhandsontable + + +|`rhandsontable` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RhpcBLASctl + + +|`RhpcBLASctl` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.23-42|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ridge + + +|`ridge` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ridigbio + + +|`ridigbio` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3.8|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.3.7|`R-bundle-CRAN/2023.12-foss-2023a`| + +### RInside + + +|`RInside` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.18|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rio + + +|`rio` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### riskRegression + + +|`riskRegression` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2023.12.21|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2023.09.08|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ritis + + +|`ritis` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RItools + + +|`RItools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.3-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rJava + + +|`rJava` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0-10|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rjson + + +|`rjson` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.23|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.2.21|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RJSONIO + + +|`RJSONIO` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-1.9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rle + + +|`rle` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rlecuyer + + +|`rlecuyer` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rlemon + + +|`rlemon` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rlist + + +|`rlist` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.6.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rmeta + + +|`rmeta` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rmpfr + + +|`Rmpfr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.9-5|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.9-4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rms + + +|`rms` version|R-bundle-CRAN modules that include it| +| --- | --- | +|6.8-2|`R-bundle-CRAN/2024.11-foss-2024a`| +|6.8-1|`R-bundle-CRAN/2024.06-foss-2023b`| +|6.7-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### RMTstat + + +|`RMTstat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rmutil + + +|`rmutil` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.10|`R-bundle-CRAN/2024.11-foss-2024a`| + +### rncl + + +|`rncl` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rnetcarto + + +|`rnetcarto` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RNeXML + + +|`RNeXML` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rngtools + + +|`rngtools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rngWELL + + +|`rngWELL` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.10-10|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.10-9|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RNifti + + +|`RNifti` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.5.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### robustbase + + +|`robustbase` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.99-4-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.99-2|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.99-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ROCR + + +|`ROCR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ROI + + +|`ROI` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ROI.plugin.glpk + + +|`ROI.plugin.glpk` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rook + + +|`Rook` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rootSolve + + +|`rootSolve` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8.2.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### roptim + + +|`roptim` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rotl + + +|`rotl` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rpact + + +|`rpact` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.1.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.0.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.4.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rpart + + +|`rpart` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.1.23|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rpf + + +|`rpf` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.14|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RPMM + + +|`RPMM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.25|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RPostgreSQL + + +|`RPostgreSQL` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7-7|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.7-6|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.7-5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### RPushbullet + + +|`RPushbullet` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.4|`R-bundle-CRAN/2024.11-foss-2024a`| + +### rrcov + + +|`rrcov` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-6|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7-5|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.7-4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rredlist + + +|`rredlist` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rsample + + +|`rsample` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rsconnect + + +|`rsconnect` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.3.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rserve + + +|`Rserve` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8-13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RSNNS + + +|`RSNNS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4-17|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rsolnp + + +|`Rsolnp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.16|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RSpectra + + +|`RSpectra` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.16-2|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.16-1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RSQLite + + +|`RSQLite` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3.8|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.3.7|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.3.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rssa + + +|`Rssa` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0.5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rstan + + +|`rstan` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.32.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.32.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rstantools + + +|`rstantools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.3.1.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rstatix + + +|`rstatix` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rtdists + + +|`rtdists` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.11-5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rtsne + + +|`Rtsne` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.17|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rttf2pt1 + + +|`Rttf2pt1` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RUnit + + +|`RUnit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.33|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4.32|`R-bundle-CRAN/2023.12-foss-2023a`| + +### ruv + + +|`ruv` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.7.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### rvertnet + + +|`rvertnet` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.8.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rvest + + +|`rvest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### rvinecopulib + + +|`rvinecopulib` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.3.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### Rvmmin + + +|`Rvmmin` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2018-4.17.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RWeka + + +|`RWeka` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4-46|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### RWekajars + + +|`RWekajars` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.9.3-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### s2 + + +|`s2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1.6|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### sampling + + +|`sampling` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### sandwich + + +|`sandwich` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.1-0|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.0-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### SBdecomp + + +|`SBdecomp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### scales + + +|`scales` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### scam + + +|`scam` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-17|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2-14|`R-bundle-CRAN/2023.12-foss-2023a`| + +### scatterpie + + +|`scatterpie` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.4|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.2.3|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### scatterplot3d + + +|`scatterplot3d` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-44|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### scs + + +|`scs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.2.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### sctransform + + +|`sctransform` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### SDMTools + + +|`SDMTools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-221.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### seewave + + +|`seewave` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### segmented + + +|`segmented` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1-3|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.1-0|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0-0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### selectr + + +|`selectr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### sem + + +|`sem` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-16|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.1-15|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### semPLS + + +|`semPLS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### semTools + + +|`semTools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5-6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### sendmailR + + +|`sendmailR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### sensemakr + + +|`sensemakr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.6|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.1.4|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### sentometrics + + +|`sentometrics` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### seqinr + + +|`seqinr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.2-36|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### servr + + +|`servr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.32|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.30|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.27|`R-bundle-CRAN/2023.12-foss-2023a`| + +### setRNG + + +|`setRNG` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2024.2-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2022.4-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### sf + + +|`sf` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-19|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0-16|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0-14|`R-bundle-CRAN/2023.12-foss-2023a`| + +### sfheaders + + +|`sfheaders` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### sfsmisc + + +|`sfsmisc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-20|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-18|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1-16|`R-bundle-CRAN/2023.12-foss-2023a`| + +### sgdGMF + + +|`sgdGMF` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0|`R-bundle-CRAN/2024.11-foss-2024a`| + +### shadowtext + + +|`shadowtext` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.4|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.1.3|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.1.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### shape + + +|`shape` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.6.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### shapefiles + + +|`shapefiles` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### shinycssloaders + + +|`shinycssloaders` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### shinydashboard + + +|`shinydashboard` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### shinyjs + + +|`shinyjs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### shinystan + + +|`shinystan` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.6.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### shinythemes + + +|`shinythemes` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### signal + + +|`signal` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.8-0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### SignifReg + + +|`SignifReg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### SimDesign + + +|`SimDesign` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.17.1|`R-bundle-CRAN/2024.11-foss-2024a`| + +### simex + + +|`simex` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### SimSeq + + +|`SimSeq` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### SKAT + + +|`SKAT` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### slam + + +|`slam` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-55|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.1-50|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### slider + + +|`slider` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### sm + + +|`sm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2-6.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.2-5.7.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### smoof + + +|`smoof` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6.0.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### smoother + + +|`smoother` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### sn + + +|`sn` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### sna + + +|`sna` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.8|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.7-2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### SNFtool + + +|`SNFtool` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### snow + + +|`snow` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### SnowballC + + +|`SnowballC` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### snowfall + + +|`snowfall` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.84-6.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### SOAR + + +|`SOAR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.99-11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### solrium + + +|`solrium` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### som + + +|`som` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3-5.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.3-5.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### soundecology + + +|`soundecology` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### sp + + +|`sp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spaa + + +|`spaa` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### spacefillr + + +|`spacefillr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.3|`R-bundle-CRAN/2024.11-foss-2024a`| + +### spam + + +|`spam` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.11-0|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.10-0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### spaMM + + +|`spaMM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.5.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|4.4.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### SparseM + + +|`SparseM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.84-2|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.83|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.81|`R-bundle-CRAN/2023.12-foss-2023a`| + +### SPAtest + + +|`SPAtest` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatial + + +|`spatial` version|R-bundle-CRAN modules that include it| +| --- | --- | +|7.3-17|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatstat + + +|`spatstat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3-0|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.0-8|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.0-7|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatstat.core + + +|`spatstat.core` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.4-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatstat.data + + +|`spatstat.data` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-4|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.1-2|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.0-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatstat.explore + + +|`spatstat.explore` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3-3|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.2-7|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.2-5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatstat.geom + + +|`spatstat.geom` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3-4|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.2-9|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.2-7|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatstat.linnet + + +|`spatstat.linnet` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.2-3|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.1-5|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.1-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatstat.model + + +|`spatstat.model` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3-3|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.2-11|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.2-8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatstat.random + + +|`spatstat.random` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3-2|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.2-3|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.2-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatstat.sparse + + +|`spatstat.sparse` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|3.0-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spatstat.univar + + +|`spatstat.univar` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-1|`R-bundle-CRAN/2024.11-foss-2024a`| + +### spatstat.utils + + +|`spatstat.utils` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.0-5|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.0-4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spData + + +|`spData` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.3.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.3.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spdep + + +|`spdep` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-6|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.3-5|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### splitstackshape + + +|`splitstackshape` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### spls + + +|`spls` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### spocc + + +|`spocc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### spThin + + +|`spThin` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### SQUAREM + + +|`SQUAREM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2021.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### stable + + +|`stable` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.6|`R-bundle-CRAN/2024.11-foss-2024a`| + +### stabledist + + +|`stabledist` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7-2|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.7-1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### stabs + + +|`stabs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### StanHeaders + + +|`StanHeaders` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.32.10|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.32.9|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.26.28|`R-bundle-CRAN/2023.12-foss-2023a`| + +### stargazer + + +|`stargazer` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### stars + + +|`stars` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6-7|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.6-5|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.6-4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### startupmsg + + +|`startupmsg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.9.6.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.9.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### statip + + +|`statip` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.3|`R-bundle-CRAN/2024.11-foss-2024a`| + +### StatMatch + + +|`StatMatch` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### statmod + + +|`statmod` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### statnet + + +|`statnet` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2019.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### statnet.common + + +|`statnet.common` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.10.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.9.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### stdReg + + +|`stdReg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.4.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### stopwords + + +|`stopwords` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### stringdist + + +|`stringdist` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### stringmagic + + +|`stringmagic` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### strucchange + + +|`strucchange` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5-4|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.5-3|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### styler + + +|`styler` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.10.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.10.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### subplex + + +|`subplex` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.8|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### SuperLearner + + +|`SuperLearner` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0-29|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0-28.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### SuppDists + + +|`SuppDists` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-9.8|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-9.7|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### survey + + +|`survey` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.4-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|4.2-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### survival + + +|`survival` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.7-0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|3.5-7|`R-bundle-CRAN/2023.12-foss-2023a`| + +### survivalROC + + +|`survivalROC` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### svd + + +|`svd` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.5.5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### svglite + + +|`svglite` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### svUnit + + +|`svUnit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### swagger + + +|`swagger` version|R-bundle-CRAN modules that include it| +| --- | --- | +|5.17.14.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|5.17.14|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.33.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### symmoments + + +|`symmoments` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tableone + + +|`tableone` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.13.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tabletools + + +|`tabletools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tau + + +|`tau` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-26|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.0-25|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### taxize + + +|`taxize` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.100.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.9.100|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tcltk2 + + +|`tcltk2` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tclust + + +|`tclust` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0-5|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.0-4|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.5-5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### TeachingDemos + + +|`TeachingDemos` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.12|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tensor + + +|`tensor` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tensorA + + +|`tensorA` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.36.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.36.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tergm + + +|`tergm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4.2.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.2.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### terra + + +|`terra` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-83|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7-78|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.7-55|`R-bundle-CRAN/2023.12-foss-2023a`| + +### testit + + +|`testit` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.13|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### texreg + + +|`texreg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.39.4|`R-bundle-CRAN/2024.11-foss-2024a`| + +### textcat + + +|`textcat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-9|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0-8|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### textplot + + +|`textplot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### TFisher + + +|`TFisher` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### TH.data + + +|`TH.data` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### threejs + + +|`threejs` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tictoc + + +|`tictoc` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tidybayes + + +|`tidybayes` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.0.7|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.0.6|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tidygraph + + +|`tidygraph` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2.3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tidyr + + +|`tidyr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tidyselect + + +|`tidyselect` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tidytext + + +|`tidytext` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tidytree + + +|`tidytree` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4.5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tidyverse + + +|`tidyverse` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tiff + + +|`tiff` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### timechange + + +|`timechange` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2.0|`R-bundle-CRAN/2023.12-foss-2023a`| -Bundle of R packages from CRAN +### timeDate + + +|`timeDate` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4041.110|`R-bundle-CRAN/2024.11-foss-2024a`| +|4032.109|`R-bundle-CRAN/2024.06-foss-2023b`| +|4022.108|`R-bundle-CRAN/2023.12-foss-2023a`| + +### timereg + + +|`timereg` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.6|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.0.5|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### timeSeries + + +|`timeSeries` version|R-bundle-CRAN modules that include it| +| --- | --- | +|4041.111|`R-bundle-CRAN/2024.11-foss-2024a`| + +### tkrplot + + +|`tkrplot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.0-27|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tm + + +|`tm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7-15|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.7-13|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.7-11|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tmap + + +|`tmap` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.3-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tmaptools + + +|`tmaptools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.1-1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### TMB + + +|`TMB` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.9.15|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.9.12|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.9.9|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tmle + + +|`tmle` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.1.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tmvnsim + + +|`tmvnsim` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tmvtnorm + + +|`tmvtnorm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tokenizers + + +|`tokenizers` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### topicmodels + + +|`topicmodels` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2-17|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.2-16|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.2-15|`R-bundle-CRAN/2023.12-foss-2023a`| + +### TraMineR + + +|`TraMineR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.2-10|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.2-8|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tree + + +|`tree` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-43|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### triebeard + + +|`triebeard` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### trimcluster + + +|`trimcluster` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tripack + + +|`tripack` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-9.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.3-9.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### TruncatedNormal + + +|`TruncatedNormal` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.2.2|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### truncnorm + + +|`truncnorm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-9|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### trust + + +|`trust` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-8|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tseries + + +|`tseries` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.10-58|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.10-56|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.10-55|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tseriesChaos + + +|`tseriesChaos` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-13.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tsna + + +|`tsna` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tsne + + +|`tsne` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### TTR + + +|`TTR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.24.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tuneR + + +|`tuneR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4.6|`R-bundle-CRAN/2023.12-foss-2023a`| + +### twang + + +|`twang` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.6.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.6|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tweedie + + +|`tweedie` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### tweenr + + +|`tweenr` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.0.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### tzdb + + +|`tzdb` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### ucminf + + +|`ucminf` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.2.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### udpipe + + +|`udpipe` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8.11|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### umap + + +|`umap` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.10.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### unbalanced + + +|`unbalanced` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### unikn + + +|`unikn` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.9.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### uniqueAtomMat + + +|`uniqueAtomMat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1-3-2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### units + + +|`units` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.8-5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### unmarked + + +|`unmarked` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.3|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.4.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### UpSetR + + +|`UpSetR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### urca + + +|`urca` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.3-4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.3-3|`R-bundle-CRAN/2023.12-foss-2023a`| + +### urltools + + +|`urltools` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### uroot + + +|`uroot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1-3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|2.1-2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### uuid + + +|`uuid` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2-1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2-0|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1-1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### V8 + + +|`V8` version|R-bundle-CRAN modules that include it| +| --- | --- | +|6.0.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|4.4.2|`R-bundle-CRAN/2024.06-foss-2023b`| +|4.4.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### varhandle + + +|`varhandle` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.0.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### vcd + + +|`vcd` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.4-13|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.4-12|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4-11|`R-bundle-CRAN/2023.12-foss-2023a`| + +### vcfR + + +|`vcfR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.15.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### vegan + + +|`vegan` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.6-8|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.6-6.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|2.6-4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### VennDiagram + + +|`VennDiagram` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### VGAM + + +|`VGAM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.1-12|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.1-11|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.1-9|`R-bundle-CRAN/2023.12-foss-2023a`| + +### VIM + + +|`VIM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|6.2.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### VineCopula + + +|`VineCopula` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.5.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|2.5.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### vioplot + + +|`vioplot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.4.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### vipor + + +|`vipor` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.7|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.4.5|`R-bundle-CRAN/2023.12-foss-2023a`| + +### viridis + + +|`viridis` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|0.6.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### viridisLite + + +|`viridisLite` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### visdat + + +|`visdat` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### visNetwork + + +|`visNetwork` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.1.2|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### vroom + + +|`vroom` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.6.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### VSURF + + +|`VSURF` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### warp + + +|`warp` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### waveslim + + +|`waveslim` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.8.4|`R-bundle-CRAN/2023.12-foss-2023a`| + +### wdm + + +|`wdm` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.2.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### webshot + + +|`webshot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.5.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### webutils + + +|`webutils` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.2.2|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.2.0|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### weights + + +|`weights` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### WeightSVM + + +|`WeightSVM` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7-16|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7-13|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### wellknown + + +|`wellknown` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.7.4|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### widgetframe + + +|`widgetframe` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.3.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### WikidataQueryServiceR + + +|`WikidataQueryServiceR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### WikidataR + + +|`WikidataR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.3.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### WikipediR + + +|`WikipediR` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`| +|1.5.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### wikitaxa + + +|`wikitaxa` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### wk + + +|`wk` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.9.4|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.9.1|`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### word2vec + + +|`word2vec` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### wordcloud + + +|`wordcloud` version|R-bundle-CRAN modules that include it| +| --- | --- | +|2.6|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### worrms + + +|`worrms` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.4.3|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### writexl + + +|`writexl` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.5.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.5.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.4.2|`R-bundle-CRAN/2023.12-foss-2023a`| + +### WriteXLS + + +|`WriteXLS` version|R-bundle-CRAN modules that include it| +| --- | --- | +|6.7.0|`R-bundle-CRAN/2024.11-foss-2024a`| +|6.6.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|6.4.0|`R-bundle-CRAN/2023.12-foss-2023a`| + +### XBRL + + +|`XBRL` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.99.19.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### xgboost + + +|`xgboost` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.7.8.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.7.7.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.7.6.1|`R-bundle-CRAN/2023.12-foss-2023a`| + +### xlsx + + +|`xlsx` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.5|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### xlsxjars + + +|`xlsxjars` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.6.1|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| + +### XML + + +|`XML` version|R-bundle-CRAN modules that include it| +| --- | --- | +|3.99-0.17|`R-bundle-CRAN/2024.11-foss-2024a`| +|3.99-0.16.1|`R-bundle-CRAN/2024.06-foss-2023b`| +|3.99-0.16|`R-bundle-CRAN/2023.12-foss-2023a`| + +### xts -https://www.r-project.org/ -# Available modules +|`xts` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.14.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.14.0|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.13.1|`R-bundle-CRAN/2023.12-foss-2023a`| -The overview below shows which R-bundle-CRAN installations are available per target architecture in EESSI, ordered based on software version (new to old). +### yaImpute -To start using R-bundle-CRAN, load one of these modules using a `module load` command like: -```shell -module load R-bundle-CRAN/2024.06-foss-2023b -``` +|`yaImpute` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.0-34.1|`R-bundle-CRAN/2024.11-foss-2024a`| +|1.0-34|`R-bundle-CRAN/2024.06-foss-2023b`| +|1.0-33|`R-bundle-CRAN/2023.12-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### yulab.utils -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|R-bundle-CRAN/2024.06-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|R-bundle-CRAN/2023.12-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`yulab.utils` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.8|`R-bundle-CRAN/2024.11-foss-2024a`| +|0.1.4|`R-bundle-CRAN/2024.06-foss-2023b`| +|0.1.0|`R-bundle-CRAN/2023.12-foss-2023a`| -### R-bundle-CRAN/2024.06-foss-2023b +### zeallot -This is a list of extensions included in the module: -abc-2.2.1, abc.data-1.1, abe-3.0.1, abind-1.4-5, acepack-1.4.2, adabag-5.0, ade4-1.7-22, ADGofTest-0.3, admisc-0.35, aggregation-1.0.1, AICcmodavg-2.3-3, akima-0.6-3.4, alabama-2023.1.0, AlgDesign-1.2.1, alluvial-0.1-2, AMAPVox-2.2.1, animation-2.7, aod-1.3.3, apcluster-1.4.13, ape-5.8, aplot-0.2.3, argparse-2.2.3, aricode-1.0.3, arm-1.14-4, arrayhelpers-1.1-0, asnipe-1.1.17, assertive-0.3-6, assertive.base-0.0-9, assertive.code-0.0-4, assertive.data-0.0-3, assertive.data.uk-0.0-2, assertive.data.us-0.0-2, assertive.datetimes-0.0-3, assertive.files-0.0-2, assertive.matrices-0.0-2, assertive.models-0.0-2, assertive.numbers-0.0-2, assertive.properties-0.0-5, assertive.reflection-0.0-5, assertive.sets-0.0-3, assertive.strings-0.0-3, assertive.types-0.0-3, assertthat-0.2.1, AUC-0.3.2, audio-0.1-11, aws-2.5-5, awsMethods-1.1-1, backports-1.5.0, bacr-1.0.1, bartMachine-1.3.4.1, bartMachineJARs-1.2.1, base64-2.0.1, BatchJobs-1.9, batchmeans-1.0-4, BayesianTools-0.1.8, BayesLogit-2.1, bayesm-3.1-6, BayesPen-1.0, bayesplot-1.11.1, bayestestR-0.14.0, BB-2019.10-1, BBmisc-1.13, bbmle-1.0.25.1, BCEE-1.3.2, BDgraph-2.72, bdsmatrix-1.3-7, beanplot-1.3.1, beeswarm-0.4.0, berryFunctions-1.22.5, betareg-3.1-4, BH-1.84.0-0, BiasedUrn-2.0.12, bibtex-0.5.1, BIEN-1.2.6, bigD-0.2.0, BIGL-1.9.1, bigmemory-4.6.4, bigmemory.sri-0.1.8, bindr-0.1.1, bindrcpp-0.2.3, bio3d-2.4-4, biom-0.3.12, biomod2-4.2-5-2, bit-4.0.5, bit64-4.0.5, bitops-1.0-7, blavaan-0.5-5, blob-1.2.4, BMA-3.18.17, bmp-0.3, bnlearn-4.9.4, bold-1.3.0, boot-1.3-30, bootstrap-2019.6, Boruta-8.0.0, brglm-0.7.2, bridgedist-0.1.2, bridgesampling-1.1-2, brms-2.21.0, Brobdingnag-1.2-9, broom-1.0.6, broom.helpers-1.15.0, broom.mixed-0.2.9.5, bst-0.3-24, Cairo-1.6-2, calibrate-1.7.7, car-3.1-2, carData-3.0-5, caret-6.0-94, catlearn-1.0, caTools-1.18.2, CBPS-0.23, celestial-1.4.6, cellranger-1.1.0, cgdsr-1.3.0, cghFLasso-0.2-1, changepoint-2.2.4, checkmate-2.3.1, chemometrics-1.4.4, chk-0.9.1, chkptstanr-0.1.1, chron-2.3-61, circlize-0.4.16, circular-0.5-0, class-7.3-22, classInt-0.4-10, cld2-1.2.4, clisymbols-1.2.0, clock-0.7.0, clue-0.3-65, cluster-2.1.6, clusterGeneration-1.3.8, clusterRepro-0.9, clustree-0.5.1, clValid-0.7, cmna-1.0.5, cmprsk-2.2-12, cNORM-3.0.4, cobalt-4.5.5, cobs-1.3-8, coda-0.19-4.1, codetools-0.2-20, coin-1.4-3, collapse-2.0.14, colorspace-2.1-0, colourpicker-1.3.0, combinat-0.0-8, ComICS-1.0.4, ComplexUpset-1.3.3, compositions-2.0-8, CompQuadForm-1.4.3, conditionz-0.1.0, conflicted-1.2.0, conquer-1.3.3, ConsRank-2.1.4, contfrac-1.1-12, copCAR-2.0-4, copula-1.1-3, corpcor-1.6.10, corrplot-0.92, covr-3.6.4, CovSel-1.2.1, covsim-1.1.0, cowplot-1.1.3, coxed-0.3.3, coxme-2.2-20, crfsuite-0.4.2, crosstalk-1.2.1, crul-1.4.2, cSEM-0.5.0, csSAM-1.2.4, ctmle-0.1.2, cubature-2.1.0, cubelyr-1.0.2, cvAUC-1.1.4, CVST-0.2-3, CVXR-1.0-13, d3Network-0.5.2.1, dagitty-0.3-4, data.table-1.15.4, data.tree-1.1.0, DataCombine-0.2.21, datawizard-0.12.2, date-1.2-42, dbarts-0.9-28, DBI-1.2.3, dbplyr-2.5.0, dbscan-1.1-12, dcurver-0.9.2, ddalpha-1.3.15, deal-1.2-42, debugme-1.2.0, deldir-2.0-4, dendextend-1.17.1, DEoptim-2.2-8, DEoptimR-1.1-3, DepthProc-2.1.5, Deriv-4.1.3, DescTools-0.99.54, deSolve-1.40, dfidx-0.0-5, DHARMa-0.4.6, dHSIC-2.1, diagram-1.6.5, DiagrammeR-1.0.11, DiceKriging-1.6.0, dichromat-2.0-0.1, dimRed-0.2.6, diptest-0.77-1, DiscriMiner-0.1-29, dismo-1.3-14, distillery-1.2-1, distr-2.9.3, distrEx-2.9.2, distributional-0.4.0, DistributionUtils-0.6-1, diveRsity-1.9.90, dlm-1.1-6, DMCfun-3.5.4, doc2vec-0.2.0, docstring-1.0.0, doMC-1.3.8, doParallel-1.0.17, doRNG-1.8.6, doSNOW-1.0.20, dotCall64-1.1-1, downloader-0.4, dplyr-1.1.4, dr-3.0.10, dreamerr-1.4.0, drgee-1.1.10, DRR-0.0.4, drugCombo-1.2.1, DT-0.33, dtangle-2.0.9, dtplyr-1.3.1, DTRreg-2.2, dtw-1.23-1, dummies-1.5.6, dygraphs-1.1.1.6, dynamicTreeCut-1.63-1, e1071-1.7-14, earth-5.3.3, EasyABC-1.5.2, ECOSolveR-0.5.5, ellipse-0.5.0, elliptic-1.4-0, emdbook-1.3.13, emmeans-1.10.2, emoa-0.5-2, emulator-1.2-24, energy-1.7-11, ENMeval-2.0.4, entropy-1.3.1, EnvStats-2.8.1, epitools-0.5-10.1, ergm-4.6.0, ergm.count-4.1.2, ergm.multi-0.2.1, estimability-1.5.1, EValue-4.1.3, evd-2.3-7, Exact-3.2, expm-0.999-9, ExPosition-2.8.23, expsmooth-2.3, extrafont-0.19, extrafontdb-1.0, extRemes-2.1-4, FactoMineR-2.11, FactorCopula-0.9.3, fail-1.3, farver-2.1.2, fastcluster-1.2.6, fastDummies-1.7.3, fasterize-1.0.5, fastICA-1.2-4, fastmatch-1.1-4, fdrtool-1.2.17, feather-0.3.5, ff-4.0.12, fftw-1.0-8, fftwtools-0.9-11, fields-15.2, filehash-2.4-5, finalfit-1.0.7, findpython-1.0.8, fishMod-0.29, fitdistrplus-1.1-11, fixest-0.12.1, FKSUM-1.0.1, flashClust-1.01-2, flexclust-1.4-2, flexmix-2.3-19, flextable-0.9.6, fma-2.5, FME-1.3.6.3, fmri-1.9.12, FNN-1.1.4, fontBitstreamVera-0.1.1, fontLiberation-0.1.0, fontquiver-0.2.1, forcats-1.0.0, foreach-1.5.2, forecast-8.23.0, foreign-0.8-86, formatR-1.14, Formula-1.2-5, formula.tools-1.7.1, fossil-0.4.0, fpc-2.2-12, fpp-0.5, fracdiff-1.5-3, furrr-0.3.1, futile.logger-1.4.3, futile.options-1.0.1, future-1.33.2, future.apply-1.11.2, gam-1.22-3, gamlss-5.4-22, gamlss.data-6.0-6, gamlss.dist-6.1-1, gamlss.tr-5.1-9, gamm4-0.2-6, gap-1.5-3, gap.datasets-0.0.6, gapfill-0.9.6-1, gargle-1.5.2, gaussquad-1.0-3, gbm-2.1.9, gbRd-0.4.12, gclus-1.3.2, gdalUtils-2.0.3.2, gdata-3.0.0, gdistance-1.6.4, gdtools-0.3.7, gee-4.13-27, geeM-0.10.1, geepack-1.3.11, geex-1.1.1, geiger-2.0.11, GeneNet-1.2.16, generics-0.1.3, genoPlotR-0.8.11, GenSA-1.1.14, geojsonsf-2.0.3, geometries-0.2.4, geometry-0.4.7, getopt-1.20.4, GetoptLong-1.0.5, gfonts-0.2.0, GGally-2.2.1, ggbeeswarm-0.7.2, ggdag-0.2.12, ggdist-3.3.2, ggExtra-0.10.1, ggfan-0.1.3, ggforce-0.4.2, ggformula-0.12.0, ggfun-0.1.5, ggh4x-0.2.8, ggnetwork-0.5.13, ggplot2-3.5.1, ggplotify-0.1.2, ggpubr-0.6.0, ggraph-2.2.1, ggrepel-0.9.5, ggridges-0.5.6, ggsci-3.2.0, ggsignif-0.6.4, ggstance-0.3.7, ggstats-0.6.0, ggvenn-0.1.10, ggvis-0.4.9, GillespieSSA-0.6.2, git2r-0.33.0, GJRM-0.2-6.5, glasso-1.11, gld-2.6.6, gllvm-1.4.3, glmmML-1.1.6, glmmTMB-1.1.9, glmnet-4.1-8, GlobalOptions-0.1.2, globals-0.16.3, gmm-1.8, gmodels-2.19.1, gmp-0.7-4, gnumeric-0.7-10, goftest-1.2-3, gomms-1.0, googledrive-2.1.1, googlesheets4-1.1.1, gower-1.0.1, GPArotation-2024.3-1, gplots-3.1.3.1, graphlayouts-1.1.1, grf-2.3.2, gridBase-0.4-7, gridExtra-2.3, gridGraphics-0.5-1, grImport2-0.3-1, grpreg-3.4.0, GSA-1.03.3, gsalib-2.2.1, gsl-2.1-8, gsw-1.1-1, gt-0.10.1, gtable-0.3.5, gtools-3.9.5, gtsummary-1.7.2, GUTS-1.2.5, gWidgets2-1.0-9, gWidgets2tcltk-1.0-8, GxEScanR-2.0.2, h2o-3.44.0.3, hal9001-0.4.6, haldensify-0.2.3, hardhat-1.4.0, harmony-1.2.0, hash-2.2.6.3, haven-2.5.4, hdf5r-1.3.10, hdm-0.3.2, heatmap3-1.1.9, here-1.0.1, hexbin-1.28.3, HGNChelper-0.8.14, HiddenMarkov-1.8-13, Hmisc-5.1-3, hms-1.1.3, Hmsc-3.0-13, htmlTable-2.4.2, httpcode-0.3.0, huge-1.3.5, hunspell-3.0.3, hwriter-1.3.2.1, HWxtest-1.1.9, hypergeo-1.2-13, ica-1.0-3, IDPmisc-1.1.21, idr-1.3, ids-1.0.1, ie2misc-0.9.1, igraph-2.0.3, image.binarization-0.1.3, imager-1.0.2, imagerExtra-1.3.2, ineq-0.2-13, influenceR-0.1.5, infotheo-1.2.0.1, inline-0.3.19, insight-0.20.3, intergraph-2.0-4, interp-1.1-6, interpretR-0.2.5, intrinsicDimension-1.2.0, inum-1.0-5, ipred-0.9-14, irace-3.5, irlba-2.3.5.1, ismev-1.42, Iso-0.0-21, isoband-0.2.7, ISOcodes-2024.02.12, ISOweek-0.6-2, iterators-1.0.14, itertools-0.1-3, JADE-2.0-4, janeaustenr-1.0.0, JBTools-0.7.2.9, jiebaR-0.11, jiebaRD-0.1, jomo-2.7-6, jpeg-0.1-10, jsonify-1.2.2, jstable-1.2.6, juicyjuice-0.1.0, kde1d-1.0.7, kedd-1.0.4, kernlab-0.9-32, KernSmooth-2.23-24, kinship2-1.9.6.1, klaR-1.7-3, KODAMA-2.4, kohonen-3.0.12, ks-1.14.2, labdsv-2.1-0, labeling-0.4.3, labelled-2.13.0, laeken-0.5.3, lambda.r-1.2.4, LaplacesDemon-16.1.6, lars-1.3, lassosum-0.4.5, lattice-0.22-6, latticeExtra-0.6-30, lava-1.8.0, lavaan-0.6-18, lazy-1.2-18, lazyeval-0.2.2, LCFdata-2.0, lda-1.5.2, ldbounds-2.0.2, leafem-0.2.3, leaflet-2.2.2, leaflet.providers-2.0.0, leafsync-0.1.0, leaps-3.2, LearnBayes-2.15.1, leiden-0.4.3.1, lhs-1.1.6, libcoin-1.0-10, limSolve-1.5.7.1, linkcomm-1.0-14, linprog-0.9-4, liquidSVM-1.2.4, listenv-0.9.1, lme4-1.1-35.4, LMERConvenienceFunctions-3.0, lmerTest-3.1-3, lmom-3.0, Lmoments-1.3-1, lmtest-0.9-40, lobstr-1.1.2, locfdr-1.1-8, locfit-1.5-9.10, logcondens-2.1.8, logger-0.3.0, logistf-1.26.0, logspline-2.1.22, longitudinal-1.1.13, longmemo-1.1-2, loo-2.7.0, lpSolve-5.6.20, lpSolveAPI-5.5.2.0-17.11, lqa-1.0-3, lsei-1.3-0, lslx-0.6.11, lubridate-1.9.3, lwgeom-0.2-14, magic-1.6-1, magick-2.8.3, MALDIquant-1.22.2, manipulateWidget-0.11.1, mapproj-1.2.11, maps-3.4.2, maptools-1.1-8, markdown-1.13, MASS-7.3-61, Matching-4.10-14, MatchIt-4.5.5, mathjaxr-1.6-0, matlab-1.0.4, Matrix-1.7-0, matrixcalc-1.0-6, MatrixModels-0.5-3, matrixStats-1.3.0, maxLik-1.5-2.1, maxlike-0.1-11, maxnet-0.1.4, mboost-2.9-10, mclogit-0.9.6, mclust-6.1.1, mcmc-0.9-8, MCMCpack-1.7-0, mcmcse-1.5-0, mda-0.5-4, medflex-0.6-10, mediation-4.5.0, memisc-0.99.31.7, memuse-4.2-3, MESS-0.5.12, metadat-1.2-0, metafor-4.6-0, MetaUtility-2.1.2, mets-1.3.4, mgcv-1.9-1, mgsub-1.7.3, mhsmm-0.4.21, mi-1.1, mice-3.16.0, miceadds-3.17-44, microbenchmark-1.4.10, MIIVsem-0.5.8, minerva-1.5.10, minpack.lm-1.2-4, minqa-1.2.7, minty-0.0.1, mirt-1.41, misc3d-0.9-1, miscTools-0.6-28, missForest-1.5, missMDA-1.19, mitml-0.4-5, mitools-2.4, mixtools-2.0.0, mlbench-2.1-5, mlegp-3.1.9, MLmetrics-1.1.3, mlogit-1.1-1, mlr-2.19.2, mlrMBO-1.1.5.1, mltools-0.3.5, mnormt-2.1.1, ModelMetrics-1.2.2.2, modelr-0.1.11, modeltools-0.2-23, momentfit-0.5, moments-0.14.1, MonteCarlo-1.0.6, mosaicCore-0.9.4.0, mpath-0.4-2.25, mRMRe-2.1.2.1, msm-1.7.1, mstate-0.3.2, multcomp-1.4-25, multcompView-0.1-10, multicool-1.0.1, multipol-1.0-9, multitaper-1.0-17, munsell-0.5.1, mvabund-4.2.1, mvnfast-0.2.8, mvtnorm-1.2-5, nabor-0.5.0, naniar-1.1.0, natserv-1.0.0, naturalsort-0.1.3, ncbit-2013.03.29.1, ncdf4-1.22, NCmisc-1.2.0, network-1.18.2, networkDynamic-0.11.4, networkLite-1.0.5, neuralnet-1.44.2, neuRosim-0.2-14, ngspatial-1.2-2, NISTunits-1.0.1, nleqslv-3.3.5, nlme-3.1-165, nloptr-2.1.0, NLP-0.2-1, nlsem-0.8-1, nnet-7.3-19, nnls-1.5, nonnest2-0.5-7, nor1mix-1.3-3, norm-1.0-11.1, nortest-1.0-4, np-0.60-17, npsurv-0.5-0, numDeriv-2016.8-1.1, oai-0.4.0, oce-1.8-2, OceanView-1.0.7, oddsratio-2.0.1, officer-0.6.6, openair-2.18-2, OpenMx-2.21.11, openxlsx-4.2.5.2, operator.tools-1.6.3, optextras-2019-12.4, optimParallel-1.0-2, optimr-2019-12.16, optimx-2023-10.21, optmatch-0.10.7, optparse-1.7.5, ordinal-2023.12-4, origami-1.0.7, oro.nifti-0.11.4, orthopolynom-1.0-6.1, osqp-0.6.3.3, outliers-0.15, packrat-0.9.2, pacman-0.5.1, pammtools-0.5.93, pamr-1.56.2, pan-1.9, parallelDist-0.2.6, parallelly-1.37.1, parallelMap-1.5.1, ParamHelpers-1.14.1, parsedate-1.3.1, party-1.3-15, partykit-1.2-20, pastecs-1.4.2, patchwork-1.2.0, pbapply-1.7-2, pbivnorm-0.6.0, pbkrtest-0.5.2, PCAmatchR-0.3.3, pcaPP-2.0-4, pdp-0.8.1, PearsonDS-1.3.1, pec-2023.04.12, penalized-0.9-52, penfa-0.1.1, peperr-1.5, performance-0.12.2, PermAlgo-1.2, permute-0.9-7, phangorn-2.11.1, pheatmap-1.0.12, phylobase-0.8.12, phytools-2.3-0, pim-2.0.2, pinfsc50-1.3.0, pixmap-0.4-13, pkgmaker-0.32.10, PKI-0.1-14, plogr-0.2.0, plot3D-1.4.1, plot3Drgl-1.0.4, plotly-4.10.4, plotmo-3.6.3, plotrix-3.8-4, pls-2.8-3, plyr-1.8.9, PMA-1.2-3, png-0.1-8, PoissonSeq-1.1.2, poLCA-1.6.0.1, polspline-1.1.25, Polychrome-1.5.1, polyclip-1.10-6, polycor-0.8-1, polynom-1.4-1, posterior-1.5.0, ppcor-1.1, prabclus-2.3-3, pracma-2.4.4, PresenceAbsence-1.1.11, preseqR-4.0.0, prettyGraphs-2.1.6, princurve-2.1.6, pROC-1.18.5, prodlim-2023.08.28, profileModel-0.6.1, proftools-0.99-3, progress-1.2.3, progressr-0.14.0, projpred-2.8.0, proto-1.0.0, proxy-0.4-27, proxyC-0.4.1, pryr-0.1.6, pscl-1.5.9, pspline-1.0-20, psych-2.4.3, Publish-2023.01.17, pulsar-0.3.11, pvclust-2.2-0, qgam-1.3.4, qgraph-1.9.8, qqman-0.1.9, qrnn-2.1.1, quadprog-1.5-8, quanteda-4.0.2, quantmod-0.4.26, quantreg-5.98, questionr-0.7.8, QuickJSR-1.2.2, R.cache-0.16.0, R.matlab-3.7.0, R.methodsS3-1.8.2, R.oo-1.26.0, R.rsp-0.46.0, R.utils-2.12.3, R2WinBUGS-2.1-22.1, random-0.2.6, randomForest-4.7-1.1, randomForestSRC-3.2.3, randtoolbox-2.0.4, rangeModelMetadata-0.1.5, ranger-0.16.0, RANN-2.6.1, rapidjsonr-1.2.0, rARPACK-0.11-0, raster-3.6-26, rasterVis-0.51.6, ratelimitr-0.4.1, RBesT-1.7-3, rbibutils-2.2.16, rbison-1.0.0, Rborist-0.3-7, RCAL-2.0, Rcgmin-2022-4.30, RCircos-1.2.2, RColorBrewer-1.1-3, RcppArmadillo-0.12.8.4.0, RcppEigen-0.3.4.0.0, RcppGSL-0.3.13, RcppParallel-5.1.7, RcppProgress-0.4.2, RcppRoll-0.3.0, RcppThread-2.1.7, RcppTOML-0.2.2, RCurl-1.98-1.14, rda-1.2-1, Rdpack-2.6, rdrop2-0.8.2.1, reactable-0.4.4, reactR-0.5.0, readbitmap-0.1.5, reader-1.0.6, readODS-2.3.0, readr-2.1.5, readxl-1.4.3, rebird-1.3.0, recipes-1.0.10, RefFreeEWAS-2.2, registry-0.5-1, regsem-1.9.5, relsurv-2.2-9, rematch-2.0.0, rentrez-1.2.3, renv-1.0.7, reprex-2.1.0, resample-0.6, reshape-0.8.9, reshape2-1.4.4, reticulate-1.38.0, rex-1.2.1, rgbif-3.8.0, RGCCA-3.0.3, rgdal-1.6-7, rgeos-0.6-4, rgexf-0.16.2, rgl-1.3.1, Rglpk-0.6-5.1, rhandsontable-0.3.8, RhpcBLASctl-0.23-42, ridge-3.3, ridigbio-0.3.8, RInside-0.2.18, rio-1.1.1, riskRegression-2023.12.21, ritis-1.0.0, RItools-0.3-4, rJava-1.0-11, rjson-0.2.21, RJSONIO-1.3-1.9, rle-0.9.2, rlecuyer-0.3-8, rlemon-0.2.1, rlist-0.4.6.2, rmeta-3.0, Rmpfr-0.9-5, rms-6.8-1, RMTstat-0.3.1, rncl-0.8.7, rnetcarto-0.2.6, RNeXML-2.4.11, rngtools-1.5.2, rngWELL-0.10-9, RNifti-1.7.0, robustbase-0.99-2, ROCR-1.0-11, ROI-1.0-1, ROI.plugin.glpk-1.0-0, Rook-1.2, rootSolve-1.8.2.4, roptim-0.1.6, rotl-3.1.0, rpact-4.0.0, rpart-4.1.23, rpf-1.0.14, RPMM-1.25, RPostgreSQL-0.7-6, rrcov-1.7-5, rredlist-0.7.1, rsample-1.2.1, rsconnect-1.3.1, Rserve-1.8-13, RSNNS-0.4-17, Rsolnp-1.16, RSpectra-0.16-1, RSQLite-2.3.7, Rssa-1.0.5, rstan-2.32.6, rstantools-2.4.0, rstatix-0.7.2, rtdists-0.11-5, Rtsne-0.17, Rttf2pt1-1.3.12, RUnit-0.4.33, ruv-0.9.7.1, rvertnet-0.8.4, rvest-1.0.4, rvinecopulib-0.6.3.1.1, Rvmmin-2018-4.17.1, RWeka-0.4-46, RWekajars-3.9.3-2, s2-1.1.6, sampling-2.10, sandwich-3.1-0, SBdecomp-1.2, scales-1.3.0, scam-1.2-17, scatterpie-0.2.3, scatterplot3d-0.3-44, scs-3.2.4, sctransform-0.4.1, SDMTools-1.1-221.2, seewave-2.2.3, segmented-2.1-0, selectr-0.4-2, sem-3.1-15, semPLS-1.0-10, semTools-0.5-6, sendmailR-1.4-0, sensemakr-0.1.4, sentometrics-1.0.0, seqinr-4.2-36, servr-0.30, setRNG-2024.2-1, sf-1.0-16, sfheaders-0.4.4, sfsmisc-1.1-18, shadowtext-0.1.3, shape-1.4.6.1, shapefiles-0.7.2, shinycssloaders-1.0.0, shinydashboard-0.7.2, shinyjs-2.1.0, shinystan-2.6.0, shinythemes-1.2.0, signal-1.8-0, SignifReg-4.3, simex-1.8, SimSeq-1.4.0, SKAT-2.2.5, slam-0.1-50, slider-0.3.1, sm-2.2-6.0, smoof-1.6.0.3, smoother-1.3, sn-2.1.1, sna-2.7-2, SNFtool-2.3.1, snow-0.4-4, SnowballC-0.7.1, snowfall-1.84-6.3, SOAR-0.99-11, solrium-1.2.0, som-0.3-5.1, soundecology-1.3.3, sp-2.1-4, spaa-0.2.2, spam-2.10-0, spaMM-4.5.0, SparseM-1.83, SPAtest-3.1.2, spatial-7.3-17, spatstat-3.0-8, spatstat.core-2.4-4, spatstat.data-3.1-2, spatstat.explore-3.2-7, spatstat.geom-3.2-9, spatstat.linnet-3.1-5, spatstat.model-3.2-11, spatstat.random-3.2-3, spatstat.sparse-3.1-0, spatstat.utils-3.0-5, spData-2.3.1, spdep-1.3-5, splitstackshape-1.4.8, spls-2.2-3, spocc-1.2.3, spThin-0.2.0, SQUAREM-2021.1, stabledist-0.7-1, stabs-0.6-4, StanHeaders-2.32.9, stargazer-5.2.3, stars-0.6-5, startupmsg-0.9.6.1, StatMatch-1.4.2, statmod-1.5.0, statnet-2019.6, statnet.common-4.9.0, stdReg-3.4.1, stopwords-2.3, stringdist-0.9.12, stringmagic-1.1.2, strucchange-1.5-3, styler-1.10.3, subplex-1.8, SuperLearner-2.0-29, SuppDists-1.1-9.7, survey-4.4-2, survival-3.7-0, survivalROC-1.0.3.1, svd-0.5.5, svglite-2.1.3, svUnit-1.0.6, swagger-5.17.14, symmoments-1.2.1, tableone-0.13.2, tabletools-0.1.0, tau-0.0-25, taxize-0.9.100, tcltk2-1.2-11, tclust-2.0-4, TeachingDemos-2.13, tensor-1.5, tensorA-0.36.2.1, tergm-4.2.0, terra-1.7-78, testit-0.13, textcat-1.0-8, textplot-0.2.2, TFisher-0.2.0, TH.data-1.1-2, threejs-0.3.3, tictoc-1.2.1, tidybayes-3.0.6, tidygraph-1.3.1, tidyr-1.3.1, tidyselect-1.2.1, tidytext-0.4.2, tidytree-0.4.6, tidyverse-2.0.0, tiff-0.1-12, timechange-0.3.0, timeDate-4032.109, timereg-2.0.5, tkrplot-0.0-27, tm-0.7-13, tmap-3.3-4, tmaptools-3.1-1, TMB-1.9.12, tmle-2.0.1.1, tmvnsim-1.0-2, tmvtnorm-1.6, tokenizers-0.3.0, topicmodels-0.2-16, TraMineR-2.2-10, tree-1.0-43, triebeard-0.4.1, trimcluster-0.1-5, tripack-1.3-9.1, TruncatedNormal-2.2.2, truncnorm-1.0-9, trust-0.1-8, tseries-0.10-56, tseriesChaos-0.1-13.1, tsna-0.3.5, tsne-0.1-3.1, TTR-0.24.4, tuneR-1.4.7, twang-2.6, tweedie-2.3.5, tweenr-2.0.3, tzdb-0.4.0, ucminf-1.2.1, udpipe-0.8.11, umap-0.2.10.0, unbalanced-2.0, unikn-1.0.0, uniqueAtomMat-0.1-3-2, units-0.8-5, unmarked-1.4.1, UpSetR-1.4.0, urca-1.3-4, urltools-1.7.3, uroot-2.1-3, uuid-1.2-0, V8-4.4.2, varhandle-2.0.6, vcd-1.4-12, vcfR-1.15.0, vegan-2.6-6.1, VennDiagram-1.7.3, VGAM-1.1-11, VIM-6.2.2, VineCopula-2.5.0, vioplot-0.4.0, vipor-0.4.7, viridis-0.6.5, viridisLite-0.4.2, visdat-0.6.0, visNetwork-2.1.2, vroom-1.6.5, VSURF-1.2.0, warp-0.2.1, waveslim-1.8.5, wdm-0.2.4, webshot-0.5.5, webutils-1.2.0, weights-1.0.4, WeightSVM-1.7-13, wellknown-0.7.4, widgetframe-0.3.1, WikidataQueryServiceR-1.0.0, WikidataR-2.3.3, WikipediR-1.7.1, wikitaxa-0.4.0, wk-0.9.1, word2vec-0.4.0, wordcloud-2.6, worrms-0.4.3, writexl-1.5.0, WriteXLS-6.6.0, XBRL-0.99.19.1, xgboost-1.7.7.1, xlsx-0.6.5, xlsxjars-0.6.1, XML-3.99-0.16.1, xts-0.14.0, yaImpute-1.0-34, yulab.utils-0.1.4, zeallot-0.1.0, zoo-1.8-12 +|`zeallot` version|R-bundle-CRAN modules that include it| +| --- | --- | +|0.1.0|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| -### R-bundle-CRAN/2023.12-foss-2023a +### zoo -This is a list of extensions included in the module: -abc-2.2.1, abc.data-1.0, abe-3.0.1, abind-1.4-5, acepack-1.4.2, adabag-5.0, ade4-1.7-22, ADGofTest-0.3, admisc-0.34, aggregation-1.0.1, AICcmodavg-2.3-3, akima-0.6-3.4, alabama-2023.1.0, AlgDesign-1.2.1, alluvial-0.1-2, AMAPVox-1.0.1, animation-2.7, aod-1.3.2, apcluster-1.4.11, ape-5.7-1, aplot-0.2.2, argparse-2.2.2, aricode-1.0.3, arm-1.13-1, arrayhelpers-1.1-0, asnipe-1.1.17, assertive-0.3-6, assertive.base-0.0-9, assertive.code-0.0-4, assertive.data-0.0-3, assertive.data.uk-0.0-2, assertive.data.us-0.0-2, assertive.datetimes-0.0-3, assertive.files-0.0-2, assertive.matrices-0.0-2, assertive.models-0.0-2, assertive.numbers-0.0-2, assertive.properties-0.0-5, assertive.reflection-0.0-5, assertive.sets-0.0-3, assertive.strings-0.0-3, assertive.types-0.0-3, assertthat-0.2.1, AUC-0.3.2, audio-0.1-11, aws-2.5-3, awsMethods-1.1-1, backports-1.4.1, bacr-1.0.1, bartMachine-1.3.4.1, bartMachineJARs-1.2.1, base64-2.0.1, BatchJobs-1.9, batchmeans-1.0-4, BayesianTools-0.1.8, BayesLogit-2.1, bayesm-3.1-6, BayesPen-1.0, bayesplot-1.10.0, BB-2019.10-1, BBmisc-1.13, bbmle-1.0.25.1, BCEE-1.3.2, BDgraph-2.72, bdsmatrix-1.3-6, beanplot-1.3.1, beeswarm-0.4.0, berryFunctions-1.22.0, betareg-3.1-4, BH-1.81.0-1, BiasedUrn-2.0.11, bibtex-0.5.1, BIEN-1.2.6, bigD-0.2.0, BIGL-1.8.0, bigmemory-4.6.1, bigmemory.sri-0.1.6, bindr-0.1.1, bindrcpp-0.2.2, bio3d-2.4-4, biom-0.3.12, biomod2-4.2-4, bit-4.0.5, bit64-4.0.5, bitops-1.0-7, blavaan-0.5-2, blob-1.2.4, BMA-3.18.17, bmp-0.3, bnlearn-4.9.1, bold-1.3.0, boot-1.3-28.1, bootstrap-2019.6, Boruta-8.0.0, brglm-0.7.2, bridgedist-0.1.2, bridgesampling-1.1-2, brms-2.20.4, Brobdingnag-1.2-9, broom-1.0.5, broom.helpers-1.14.0, broom.mixed-0.2.9.4, bst-0.3-24, Cairo-1.6-2, calibrate-1.7.7, car-3.1-2, carData-3.0-5, caret-6.0-94, catlearn-1.0, caTools-1.18.2, CBPS-0.23, celestial-1.4.6, cellranger-1.1.0, cgdsr-1.3.0, cghFLasso-0.2-1, changepoint-2.2.4, checkmate-2.3.1, chemometrics-1.4.4, chk-0.9.1, chkptstanr-0.1.1, chron-2.3-61, circlize-0.4.15, circular-0.5-0, class-7.3-22, classInt-0.4-10, cld2-1.2.4, clisymbols-1.2.0, clock-0.7.0, clue-0.3-65, cluster-2.1.6, clusterGeneration-1.3.8, clusterRepro-0.9, clustree-0.5.1, clValid-0.7, cmna-1.0.5, cmprsk-2.2-11, cNORM-3.0.4, cobalt-4.5.2, cobs-1.3-5, coda-0.19-4, codetools-0.2-19, coin-1.4-3, collapse-2.0.7, colorspace-2.1-0, colourpicker-1.3.0, combinat-0.0-8, ComICS-1.0.4, ComplexUpset-1.3.3, compositions-2.0-6, CompQuadForm-1.4.3, conditionz-0.1.0, conflicted-1.2.0, conquer-1.3.3, ConsRank-2.1.3, contfrac-1.1-12, copCAR-2.0-4, copula-1.1-3, corpcor-1.6.10, corrplot-0.92, covr-3.6.4, CovSel-1.2.1, covsim-1.0.0, cowplot-1.1.1, coxed-0.3.3, coxme-2.2-18.1, crfsuite-0.4.2, crosstalk-1.2.1, crul-1.4.0, cSEM-0.5.0, csSAM-1.2.4, ctmle-0.1.2, cubature-2.1.0, cubelyr-1.0.2, cvAUC-1.1.4, CVST-0.2-3, CVXR-1.0-11, d3Network-0.5.2.1, dagitty-0.3-4, data.table-1.14.10, data.tree-1.1.0, DataCombine-0.2.21, date-1.2-42, dbarts-0.9-25, DBI-1.1.3, dbplyr-2.4.0, dbscan-1.1-12, dcurver-0.9.2, ddalpha-1.3.13, deal-1.2-42, debugme-1.1.0, deldir-2.0-2, dendextend-1.17.1, DEoptim-2.2-8, DEoptimR-1.1-3, DepthProc-2.1.5, Deriv-4.1.3, DescTools-0.99.52, deSolve-1.40, dfidx-0.0-5, DHARMa-0.4.6, dHSIC-2.1, diagram-1.6.5, DiagrammeR-1.0.10, DiceKriging-1.6.0, dichromat-2.0-0.1, dimRed-0.2.6, diptest-0.77-0, DiscriMiner-0.1-29, dismo-1.3-14, distillery-1.2-1, distr-2.9.2, distrEx-2.9.0, distributional-0.3.2, DistributionUtils-0.6-1, diveRsity-1.9.90, dlm-1.1-6, DMCfun-2.0.2, doc2vec-0.2.0, docstring-1.0.0, doMC-1.3.8, doParallel-1.0.17, doRNG-1.8.6, doSNOW-1.0.20, dotCall64-1.1-1, downloader-0.4, dplyr-1.1.4, dr-3.0.10, dreamerr-1.4.0, drgee-1.1.10, DRR-0.0.4, drugCombo-1.2.1, DT-0.31, dtangle-2.0.9, dtplyr-1.3.1, DTRreg-2.0, dtw-1.23-1, dummies-1.5.6, dygraphs-1.1.1.6, dynamicTreeCut-1.63-1, e1071-1.7-14, earth-5.3.2, EasyABC-1.5.2, ECOSolveR-0.5.5, ellipse-0.5.0, elliptic-1.4-0, emdbook-1.3.13, emmeans-1.8.9, emoa-0.5-0.2, emulator-1.2-21, energy-1.7-11, ENMeval-2.0.4, entropy-1.3.1, EnvStats-2.8.1, epitools-0.5-10.1, ergm-4.5.0, ergm.count-4.1.1, ergm.multi-0.2.0, estimability-1.4.1, EValue-4.1.3, evd-2.3-6.1, Exact-3.2, expm-0.999-8, ExPosition-2.8.23, expsmooth-2.3, extrafont-0.19, extrafontdb-1.0, extRemes-2.1-3, FactoMineR-2.9, FactorCopula-0.9.3, fail-1.3, farver-2.1.1, fastcluster-1.2.3, fastDummies-1.7.3, fasterize-1.0.5, fastICA-1.2-4, fastmatch-1.1-4, fdrtool-1.2.17, feather-0.3.5, ff-4.0.9, fftw-1.0-7, fftwtools-0.9-11, fields-15.2, filehash-2.4-5, finalfit-1.0.7, findpython-1.0.8, fishMod-0.29, fitdistrplus-1.1-11, fixest-0.11.2, FKSUM-1.0.1, flashClust-1.01-2, flexclust-1.4-1, flexmix-2.3-19, flextable-0.9.4, fma-2.5, FME-1.3.6.3, fmri-1.9.12, FNN-1.1.3.2, fontBitstreamVera-0.1.1, fontLiberation-0.1.0, fontquiver-0.2.1, forcats-1.0.0, foreach-1.5.2, forecast-8.21.1, foreign-0.8-86, formatR-1.14, Formula-1.2-5, formula.tools-1.7.1, fossil-0.4.0, fpc-2.2-10, fpp-0.5, fracdiff-1.5-2, furrr-0.3.1, futile.logger-1.4.3, futile.options-1.0.1, future-1.33.0, future.apply-1.11.0, gam-1.22-3, gamlss-5.4-20, gamlss.data-6.0-2, gamlss.dist-6.1-1, gamlss.tr-5.1-7, gamm4-0.2-6, gap-1.5-3, gap.datasets-0.0.6, gapfill-0.9.6-1, gargle-1.5.2, gaussquad-1.0-3, gbm-2.1.8.1, gbRd-0.4-11, gclus-1.3.2, gdalUtils-2.0.3.2, gdata-3.0.0, gdistance-1.6.4, gdtools-0.3.5, gee-4.13-26, geeM-0.10.1, geepack-1.3.9, geex-1.1.1, geiger-2.0.11, GeneNet-1.2.16, generics-0.1.3, genoPlotR-0.8.11, GenSA-1.1.10.1, geojsonsf-2.0.3, geometries-0.2.3, geometry-0.4.7, getopt-1.20.4, GetoptLong-1.0.5, gfonts-0.2.0, GGally-2.2.0, ggbeeswarm-0.7.2, ggdag-0.2.10, ggdist-3.3.1, ggExtra-0.10.1, ggfan-0.1.3, ggforce-0.4.1, ggformula-0.12.0, ggfun-0.1.3, ggh4x-0.2.6, ggnetwork-0.5.12, ggplot2-3.4.4, ggplotify-0.1.2, ggpubr-0.6.0, ggraph-2.1.0, ggrepel-0.9.4, ggridges-0.5.4, ggsci-3.0.0, ggsignif-0.6.4, ggstance-0.3.6, ggstats-0.5.1, ggvenn-0.1.10, ggvis-0.4.8, GillespieSSA-0.6.2, git2r-0.33.0, GJRM-0.2-6.4, glasso-1.11, gld-2.6.6, gllvm-1.4.3, glmmML-1.1.6, glmmTMB-1.1.8, glmnet-4.1-8, GlobalOptions-0.1.2, globals-0.16.2, gmm-1.8, gmodels-2.18.1.1, gmp-0.7-3, gnumeric-0.7-10, goftest-1.2-3, gomms-1.0, googledrive-2.1.1, googlesheets4-1.1.1, gower-1.0.1, GPArotation-2023.11-1, gplots-3.1.3, graphlayouts-1.0.2, grf-2.3.1, gridBase-0.4-7, gridExtra-2.3, gridGraphics-0.5-1, grImport2-0.3-1, grpreg-3.4.0, GSA-1.03.2, gsalib-2.2.1, gsl-2.1-8, gsw-1.1-1, gt-0.10.0, gtable-0.3.4, gtools-3.9.5, gtsummary-1.7.2, GUTS-1.2.5, gWidgets2-1.0-9, gWidgets2tcltk-1.0-8, GxEScanR-2.0.2, h2o-3.42.0.2, hal9001-0.4.6, haldensify-0.2.3, hardhat-1.3.0, harmony-1.2.0, hash-2.2.6.3, haven-2.5.4, hdf5r-1.3.8, hdm-0.3.1, heatmap3-1.1.9, here-1.0.1, hexbin-1.28.3, HGNChelper-0.8.1, HiddenMarkov-1.8-13, Hmisc-5.1-1, hms-1.1.3, Hmsc-3.0-13, htmlTable-2.4.2, httpcode-0.3.0, huge-1.3.5, hunspell-3.0.3, hwriter-1.3.2.1, HWxtest-1.1.9, hypergeo-1.2-13, ica-1.0-3, IDPmisc-1.1.20, idr-1.3, ids-1.0.1, ie2misc-0.9.1, igraph-1.5.1, image.binarization-0.1.3, imager-0.45.2, imagerExtra-1.3.2, ineq-0.2-13, influenceR-0.1.5, infotheo-1.2.0.1, inline-0.3.19, intergraph-2.0-3, interp-1.1-5, interpretR-0.2.5, intrinsicDimension-1.2.0, inum-1.0-5, ipred-0.9-14, irace-3.5, irlba-2.3.5.1, ismev-1.42, Iso-0.0-21, isoband-0.2.7, ISOcodes-2023.12.07, ISOweek-0.6-2, iterators-1.0.14, itertools-0.1-3, JADE-2.0-4, janeaustenr-1.0.0, JBTools-0.7.2.9, jiebaR-0.11, jiebaRD-0.1, jomo-2.7-6, jpeg-0.1-10, jsonify-1.2.2, jstable-1.1.3, juicyjuice-0.1.0, kde1d-1.0.5, kedd-1.0.3, kernlab-0.9-32, KernSmooth-2.23-22, kinship2-1.9.6, klaR-1.7-2, KODAMA-2.4, kohonen-3.0.12, ks-1.14.1, labdsv-2.1-0, labeling-0.4.3, labelled-2.12.0, laeken-0.5.2, lambda.r-1.2.4, LaplacesDemon-16.1.6, lars-1.3, lassosum-0.4.5, lattice-0.22-5, latticeExtra-0.6-30, lava-1.7.3, lavaan-0.6-16, lazy-1.2-18, lazyeval-0.2.2, LCFdata-2.0, lda-1.4.2, ldbounds-2.0.2, leafem-0.2.3, leaflet-2.2.1, leaflet.providers-2.0.0, leafsync-0.1.0, leaps-3.1, LearnBayes-2.15.1, leiden-0.4.3.1, lhs-1.1.6, libcoin-1.0-10, limSolve-1.5.7, linkcomm-1.0-14, linprog-0.9-4, liquidSVM-1.2.4, listenv-0.9.0, lme4-1.1-35.1, LMERConvenienceFunctions-3.0, lmerTest-3.1-3, lmom-3.0, Lmoments-1.3-1, lmtest-0.9-40, lobstr-1.1.2, locfdr-1.1-8, locfit-1.5-9.8, logcondens-2.1.8, logger-0.2.2, logistf-1.26.0, logspline-2.1.21, longitudinal-1.1.13, longmemo-1.1-2, loo-2.6.0, lpSolve-5.6.19, lpSolveAPI-5.5.2.0-17.11, lqa-1.0-3, lsei-1.3-0, lslx-0.6.11, lubridate-1.9.3, lwgeom-0.2-13, magic-1.6-1, magick-2.8.1, MALDIquant-1.22.1, manipulateWidget-0.11.1, mapproj-1.2.11, maps-3.4.1.1, maptools-1.1-8, markdown-1.12, MASS-7.3-60, Matching-4.10-14, MatchIt-4.5.5, mathjaxr-1.6-0, matlab-1.0.4, Matrix-1.6-4, matrixcalc-1.0-6, MatrixModels-0.5-3, matrixStats-1.1.0, maxLik-1.5-2, maxlike-0.1-10, maxnet-0.1.4, mboost-2.9-9, mclogit-0.9.6, mclust-6.0.1, mcmc-0.9-8, MCMCpack-1.6-3, mcmcse-1.5-0, mda-0.5-4, medflex-0.6-10, mediation-4.5.0, memisc-0.99.31.6, memuse-4.2-3, MESS-0.5.12, metadat-1.2-0, metafor-4.4-0, MetaUtility-2.1.2, mets-1.3.3, mgcv-1.9-0, mgsub-1.7.3, mhsmm-0.4.21, mi-1.1, mice-3.16.0, miceadds-3.16-18, microbenchmark-1.4.10, MIIVsem-0.5.8, minerva-1.5.10, minpack.lm-1.2-4, minqa-1.2.6, mirt-1.41, misc3d-0.9-1, miscTools-0.6-28, missForest-1.5, missMDA-1.19, mitml-0.4-5, mitools-2.4, mixtools-2.0.0, mlbench-2.1-3.1, mlegp-3.1.9, MLmetrics-1.1.1, mlogit-1.1-1, mlr-2.19.1, mlrMBO-1.1.5.1, mltools-0.3.5, mnormt-2.1.1, ModelMetrics-1.2.2.2, modelr-0.1.11, modeltools-0.2-23, momentfit-0.5, moments-0.14.1, MonteCarlo-1.0.6, mosaicCore-0.9.4.0, mpath-0.4-2.23, mRMRe-2.1.2.1, msm-1.7.1, mstate-0.3.2, multcomp-1.4-25, multcompView-0.1-9, multicool-1.0.0, multipol-1.0-9, munsell-0.5.0, mvabund-4.2.1, mvnfast-0.2.8, mvtnorm-1.2-4, nabor-0.5.0, naniar-1.0.0, natserv-1.0.0, naturalsort-0.1.3, ncbit-2013.03.29.1, ncdf4-1.22, NCmisc-1.2.0, network-1.18.2, networkDynamic-0.11.3, networkLite-1.0.5, neuralnet-1.44.2, neuRosim-0.2-14, ngspatial-1.2-2, NISTunits-1.0.1, nleqslv-3.3.5, nlme-3.1-164, nloptr-2.0.3, NLP-0.2-1, nlsem-0.8-1, nnet-7.3-19, nnls-1.5, nonnest2-0.5-6, nor1mix-1.3-2, norm-1.0-11.1, nortest-1.0-4, np-0.60-17, npsurv-0.5-0, numDeriv-2016.8-1.1, oai-0.4.0, oce-1.8-2, OceanView-1.0.6, oddsratio-2.0.1, officer-0.6.3, openair-2.18-0, OpenMx-2.21.11, openxlsx-4.2.5.2, operator.tools-1.6.3, optextras-2019-12.4, optimParallel-1.0-2, optimr-2019-12.16, optimx-2023-10.21, optmatch-0.10.7, optparse-1.7.3, ordinal-2023.12-4, origami-1.0.7, oro.nifti-0.11.4, orthopolynom-1.0-6.1, osqp-0.6.3.2, outliers-0.15, packrat-0.9.2, pacman-0.5.1, pammtools-0.5.92, pamr-1.56.1, pan-1.9, parallelDist-0.2.6, parallelly-1.36.0, parallelMap-1.5.1, ParamHelpers-1.14.1, parsedate-1.3.1, party-1.3-14, partykit-1.2-20, pastecs-1.3.21, patchwork-1.1.3, pbapply-1.7-2, pbivnorm-0.6.0, pbkrtest-0.5.2, PCAmatchR-0.3.3, pcaPP-2.0-4, pdp-0.8.1, PearsonDS-1.3.0, pec-2023.04.12, penalized-0.9-52, penfa-0.1.1, peperr-1.5, PermAlgo-1.2, permute-0.9-7, phangorn-2.11.1, pheatmap-1.0.12, phylobase-0.8.10, phytools-2.0-3, pim-2.0.2, pinfsc50-1.3.0, pixmap-0.4-12, pkgmaker-0.32.10, plogr-0.2.0, plot3D-1.4, plot3Drgl-1.0.4, plotly-4.10.3, plotmo-3.6.2, plotrix-3.8-4, pls-2.8-3, plyr-1.8.9, PMA-1.2-2, png-0.1-8, PoissonSeq-1.1.2, poLCA-1.6.0.1, polspline-1.1.24, Polychrome-1.5.1, polyclip-1.10-6, polycor-0.8-1, polynom-1.4-1, posterior-1.5.0, ppcor-1.1, prabclus-2.3-3, pracma-2.4.4, PresenceAbsence-1.1.11, preseqR-4.0.0, prettyGraphs-2.1.6, princurve-2.1.6, pROC-1.18.5, prodlim-2023.08.28, profileModel-0.6.1, proftools-0.99-3, progress-1.2.3, progressr-0.14.0, projpred-2.7.0, proto-1.0.0, proxy-0.4-27, proxyC-0.3.4, pryr-0.1.6, pscl-1.5.5.1, pspline-1.0-19, psych-2.3.9, Publish-2023.01.17, pulsar-0.3.11, pvclust-2.2-0, qgam-1.3.4, qgraph-1.9.8, qqman-0.1.9, qrnn-2.1, quadprog-1.5-8, quanteda-3.3.1, quantmod-0.4.25, quantreg-5.97, questionr-0.7.8, QuickJSR-1.0.8, R.cache-0.16.0, R.matlab-3.7.0, R.methodsS3-1.8.2, R.oo-1.25.0, R.rsp-0.45.0, R.utils-2.12.3, R2WinBUGS-2.1-21, random-0.2.6, randomForest-4.7-1.1, randomForestSRC-3.2.3, randtoolbox-2.0.4, rangeModelMetadata-0.1.5, ranger-0.16.0, RANN-2.6.1, rapidjsonr-1.2.0, rARPACK-0.11-0, raster-3.6-26, rasterVis-0.51.6, ratelimitr-0.4.1, RBesT-1.7-2, rbibutils-2.2.16, rbison-1.0.0, Rborist-0.3-5, RCAL-2.0, Rcgmin-2022-4.30, RCircos-1.2.2, RColorBrewer-1.1-3, RcppArmadillo-0.12.6.6.1, RcppEigen-0.3.3.9.4, RcppGSL-0.3.13, RcppParallel-5.1.7, RcppProgress-0.4.2, RcppRoll-0.3.0, RcppThread-2.1.6, RcppTOML-0.2.2, RCurl-1.98-1.13, rda-1.2-1, Rdpack-2.6, rdrop2-0.8.2.1, reactable-0.4.4, reactR-0.5.0, readbitmap-0.1.5, reader-1.0.6, readODS-2.1.0, readr-2.1.4, readxl-1.4.3, rebird-1.3.0, recipes-1.0.8, RefFreeEWAS-2.2, registry-0.5-1, regsem-1.9.5, relsurv-2.2-9, rematch-2.0.0, rentrez-1.2.3, renv-1.0.3, reprex-2.0.2, resample-0.6, reshape-0.8.9, reshape2-1.4.4, reticulate-1.34.0, rex-1.2.1, rgbif-3.7.8, RGCCA-3.0.2, rgdal-1.6-7, rgeos-0.6-4, rgexf-0.16.2, rgl-1.2.8, Rglpk-0.6-5, rhandsontable-0.3.8, RhpcBLASctl-0.23-42, ridge-3.3, ridigbio-0.3.7, RInside-0.2.18, rio-1.0.1, riskRegression-2023.09.08, ritis-1.0.0, RItools-0.3-3, rJava-1.0-10, rjson-0.2.21, RJSONIO-1.3-1.9, rle-0.9.2, rlecuyer-0.3-8, rlemon-0.2.1, rlist-0.4.6.2, rmeta-3.0, Rmpfr-0.9-4, rms-6.7-1, RMTstat-0.3.1, rncl-0.8.7, rnetcarto-0.2.6, RNeXML-2.4.11, rngtools-1.5.2, rngWELL-0.10-9, RNifti-1.5.1, robustbase-0.99-1, ROCR-1.0-11, ROI-1.0-1, ROI.plugin.glpk-1.0-0, Rook-1.2, rootSolve-1.8.2.4, roptim-0.1.6, rotl-3.1.0, rpact-3.4.0, rpart-4.1.23, rpf-1.0.14, RPMM-1.25, RPostgreSQL-0.7-5, rrcov-1.7-4, rredlist-0.7.1, rsample-1.2.0, rsconnect-1.1.1, Rserve-1.8-13, RSNNS-0.4-17, Rsolnp-1.16, RSpectra-0.16-1, RSQLite-2.3.4, Rssa-1.0.5, rstan-2.32.3, rstantools-2.3.1.1, rstatix-0.7.2, rtdists-0.11-5, Rtsne-0.17, Rttf2pt1-1.3.12, RUnit-0.4.32, ruv-0.9.7.1, rvertnet-0.8.2, rvest-1.0.3, rvinecopulib-0.6.3.1.1, Rvmmin-2018-4.17.1, RWeka-0.4-46, RWekajars-3.9.3-2, s2-1.1.4, sampling-2.10, sandwich-3.0-2, SBdecomp-1.2, scales-1.3.0, scam-1.2-14, scatterpie-0.2.1, scatterplot3d-0.3-44, scs-3.2.4, sctransform-0.4.1, SDMTools-1.1-221.2, seewave-2.2.3, segmented-2.0-0, selectr-0.4-2, sem-3.1-15, semPLS-1.0-10, semTools-0.5-6, sendmailR-1.4-0, sensemakr-0.1.4, sentometrics-1.0.0, seqinr-4.2-36, servr-0.27, setRNG-2022.4-1, sf-1.0-14, sfheaders-0.4.3, sfsmisc-1.1-16, shadowtext-0.1.2, shape-1.4.6, shapefiles-0.7.2, shinycssloaders-1.0.0, shinydashboard-0.7.2, shinyjs-2.1.0, shinystan-2.6.0, shinythemes-1.2.0, signal-1.8-0, SignifReg-4.3, simex-1.8, SimSeq-1.4.0, SKAT-2.2.5, slam-0.1-50, slider-0.3.1, sm-2.2-5.7.1, smoof-1.6.0.3, smoother-1.1, sn-2.1.1, sna-2.7-2, SNFtool-2.3.1, snow-0.4-4, SnowballC-0.7.1, snowfall-1.84-6.3, SOAR-0.99-11, solrium-1.2.0, som-0.3-5.1, soundecology-1.3.3, sp-2.1-2, spaa-0.2.2, spam-2.10-0, spaMM-4.4.0, SparseM-1.81, SPAtest-3.1.2, spatial-7.3-17, spatstat-3.0-7, spatstat.core-2.4-4, spatstat.data-3.0-3, spatstat.explore-3.2-5, spatstat.geom-3.2-7, spatstat.linnet-3.1-3, spatstat.model-3.2-8, spatstat.random-3.2-2, spatstat.sparse-3.0-3, spatstat.utils-3.0-4, spData-2.3.0, spdep-1.3-1, splitstackshape-1.4.8, spls-2.2-3, spocc-1.2.2, spThin-0.2.0, SQUAREM-2021.1, stabledist-0.7-1, stabs-0.6-4, StanHeaders-2.26.28, stargazer-5.2.3, stars-0.6-4, startupmsg-0.9.6, StatMatch-1.4.1, statmod-1.5.0, statnet-2019.6, statnet.common-4.9.0, stdReg-3.4.1, stopwords-2.3, stringdist-0.9.12, stringmagic-1.0.0, strucchange-1.5-3, styler-1.10.2, subplex-1.8, SuperLearner-2.0-28.1, SuppDists-1.1-9.7, survey-4.2-1, survival-3.5-7, survivalROC-1.0.3.1, svd-0.5.5, svglite-2.1.3, svUnit-1.0.6, swagger-3.33.1, symmoments-1.2.1, tableone-0.13.2, tabletools-0.1.0, tau-0.0-25, taxize-0.9.100, tcltk2-1.2-11, tclust-1.5-5, TeachingDemos-2.12, tensor-1.5, tensorA-0.36.2, tergm-4.2.0, terra-1.7-55, testit-0.13, textcat-1.0-8, textplot-0.2.2, TFisher-0.2.0, TH.data-1.1-2, threejs-0.3.3, tictoc-1.2, tidybayes-3.0.6, tidygraph-1.2.3, tidyr-1.3.0, tidyselect-1.2.0, tidytext-0.4.1, tidytree-0.4.5, tidyverse-2.0.0, tiff-0.1-12, timechange-0.2.0, timeDate-4022.108, timereg-2.0.5, tkrplot-0.0-27, tm-0.7-11, tmap-3.3-4, tmaptools-3.1-1, TMB-1.9.9, tmle-2.0.0, tmvnsim-1.0-2, tmvtnorm-1.6, tokenizers-0.3.0, topicmodels-0.2-15, TraMineR-2.2-8, tree-1.0-43, triebeard-0.4.1, trimcluster-0.1-5, tripack-1.3-9.1, TruncatedNormal-2.2.2, truncnorm-1.0-9, trust-0.1-8, tseries-0.10-55, tseriesChaos-0.1-13.1, tsna-0.3.5, tsne-0.1-3.1, TTR-0.24.4, tuneR-1.4.6, twang-2.6, tweedie-2.3.5, tweenr-2.0.2, tzdb-0.4.0, ucminf-1.2.0, udpipe-0.8.11, umap-0.2.10.0, unbalanced-2.0, unikn-0.9.0, uniqueAtomMat-0.1-3-2, units-0.8-5, unmarked-1.3.2, UpSetR-1.4.0, urca-1.3-3, urltools-1.7.3, uroot-2.1-2, uuid-1.1-1, V8-4.4.1, varhandle-2.0.6, vcd-1.4-11, vcfR-1.15.0, vegan-2.6-4, VennDiagram-1.7.3, VGAM-1.1-9, VIM-6.2.2, VineCopula-2.5.0, vioplot-0.4.0, vipor-0.4.5, viridis-0.6.4, viridisLite-0.4.2, visdat-0.6.0, visNetwork-2.1.2, vroom-1.6.5, VSURF-1.2.0, warp-0.2.1, waveslim-1.8.4, wdm-0.2.4, webshot-0.5.5, webutils-1.2.0, weights-1.0.4, WeightSVM-1.7-13, wellknown-0.7.4, widgetframe-0.3.1, WikidataQueryServiceR-1.0.0, WikidataR-2.3.3, WikipediR-1.5.0, wikitaxa-0.4.0, wk-0.9.1, word2vec-0.4.0, wordcloud-2.6, worrms-0.4.3, writexl-1.4.2, WriteXLS-6.4.0, XBRL-0.99.19.1, xgboost-1.7.6.1, xlsx-0.6.5, xlsxjars-0.6.1, XML-3.99-0.16, xts-0.13.1, yaImpute-1.0-33, yulab.utils-0.1.0, zeallot-0.1.0, zoo-1.8-12 \ No newline at end of file +|`zoo` version|R-bundle-CRAN modules that include it| +| --- | --- | +|1.8-12|`R-bundle-CRAN/2024.11-foss-2024a`
`R-bundle-CRAN/2024.06-foss-2023b`
`R-bundle-CRAN/2023.12-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/R.md b/docs/available_software/detail/R.md index a24cd9fb3c..13d8b3b73e 100644 --- a/docs/available_software/detail/R.md +++ b/docs/available_software/detail/R.md @@ -1,11 +1,9 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: R is a free software environment for statistical computing and graphics. + description: "R is a free software environment for statistical computing\n and graphics." license: Not confirmed name: R offers: @@ -24,51 +22,8618 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''R/4.2.2-foss-2022b'', ''R/4.3.2-gfbf-2023a'', ''R/4.4.1-gfbf-2023b'']' + softwareVersion: '[''4.5.1'', ''4.4.2'', ''4.4.1'', ''4.3.2'', ''4.2.2'']' url: https://www.r-project.org/ --- +# R -R -= +R is a free software environment for statistical computing + and graphics. -R is a free software environment for statistical computing and graphics. +homepage: [https://www.r-project.org/](https://www.r-project.org/) -https://www.r-project.org/ -# Available modules +## Available installations -The overview below shows which R installations are available per target architecture in EESSI, ordered based on software version (new to old). +|R version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`R/4.5.1-gfbf-2025a`| +|4.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`R/4.4.2-gfbf-2024a`| +|4.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`R/4.4.1-gfbf-2023b`| +|4.3.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`R/4.3.2-gfbf-2023a`| +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`R/4.2.2-foss-2022b`| -To start using R, load one of these modules using a `module load` command like: +## Extensions -```shell -module load R/4.4.1-gfbf-2023b -``` +Overview of extensions included in R installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|R/4.4.1-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|R/4.3.2-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|R/4.2.2-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### abc -### R/4.4.1-gfbf-2023b +|`abc` version|R modules that include it| +| --- | --- | +|2.2.1|`R/4.2.2-foss-2022b`| -This is a list of extensions included in the module: +### abc.data -askpass-1.2.0, base, base64enc-0.1-3, brew-1.0-10, brio-1.1.5, bslib-0.7.0, cachem-1.1.0, callr-3.7.6, cli-3.6.3, clipr-0.8.0, commonmark-1.9.1, compiler, cpp11-0.4.7, crayon-1.5.3, credentials-2.0.1, curl-5.2.1, datasets, desc-1.4.3, devtools-2.4.5, diffobj-0.3.5, digest-0.6.36, downlit-0.4.4, ellipsis-0.3.2, evaluate-0.24.0, fansi-1.0.6, fastmap-1.2.0, fontawesome-0.5.2, fs-1.6.4, gert-2.0.1, gh-1.4.1, gitcreds-0.1.2, glue-1.7.0, graphics, grDevices, grid, highr-0.11, htmltools-0.5.8.1, htmlwidgets-1.6.4, httpuv-1.6.15, httr-1.4.7, httr2-1.0.1, ini-0.3.1, jquerylib-0.1.4, jsonlite-1.8.8, knitr-1.47, later-1.3.2, lifecycle-1.0.4, magrittr-2.0.3, memoise-2.0.1, methods, mime-0.12, miniUI-0.1.1.1, openssl-2.2.0, parallel, pillar-1.9.0, pkgbuild-1.4.4, pkgconfig-2.0.3, pkgdown-2.0.9, pkgload-1.3.4, praise-1.0.0, prettyunits-1.2.0, processx-3.8.4, profvis-0.3.8, promises-1.3.0, ps-1.7.6, purrr-1.0.2, R6-2.5.1, ragg-1.3.2, rappdirs-0.3.3, rcmdcheck-1.4.0, Rcpp-1.0.12, rematch2-2.1.2, remotes-2.5.0, rlang-1.1.4, rmarkdown-2.27, roxygen2-7.3.1, rprojroot-2.0.4, rstudioapi-0.16.0, rversions-2.1.2, sass-0.4.9, sessioninfo-1.2.2, shiny-1.8.1.1, sourcetools-0.1.7-1, splines, stats, stats4, stringi-1.8.4, stringr-1.5.1, sys-3.4.2, systemfonts-1.1.0, tcltk, testthat-3.2.1.1, textshaping-0.4.0, tibble-3.2.1, tinytex-0.51, tools, urlchecker-1.0.1, usethis-2.2.3, utf8-1.2.4, utils, vctrs-0.6.5, waldo-0.5.2, whisker-0.4.1, withr-3.0.0, xfun-0.45, xml2-1.3.6, xopen-1.0.1, xtable-1.8-4, yaml-2.3.8, zip-2.3.1 -### R/4.3.2-gfbf-2023a +|`abc.data` version|R modules that include it| +| --- | --- | +|1.0|`R/4.2.2-foss-2022b`| -This is a list of extensions included in the module: +### abe -askpass-1.2.0, base, base64enc-0.1-3, brew-1.0-8, brio-1.1.3, bslib-0.5.1, cachem-1.0.8, callr-3.7.3, cli-3.6.1, clipr-0.8.0, commonmark-1.9.0, compiler, cpp11-0.4.6, crayon-1.5.2, credentials-2.0.1, curl-5.1.0, datasets, desc-1.4.2, devtools-2.4.5, diffobj-0.3.5, digest-0.6.33, downlit-0.4.3, ellipsis-0.3.2, evaluate-0.23, fansi-1.0.5, fastmap-1.1.1, fontawesome-0.5.2, fs-1.6.3, gert-2.0.0, gh-1.4.0, gitcreds-0.1.2, glue-1.6.2, graphics, grDevices, grid, highr-0.10, htmltools-0.5.7, htmlwidgets-1.6.2, httpuv-1.6.12, httr-1.4.7, httr2-0.2.3, ini-0.3.1, jquerylib-0.1.4, jsonlite-1.8.7, knitr-1.45, later-1.3.1, lifecycle-1.0.3, magrittr-2.0.3, memoise-2.0.1, methods, mime-0.12, miniUI-0.1.1.1, openssl-2.1.1, parallel, pillar-1.9.0, pkgbuild-1.4.2, pkgconfig-2.0.3, pkgdown-2.0.7, pkgload-1.3.3, praise-1.0.0, prettyunits-1.2.0, processx-3.8.2, profvis-0.3.8, promises-1.2.1, ps-1.7.5, purrr-1.0.2, R6-2.5.1, ragg-1.2.6, rappdirs-0.3.3, rcmdcheck-1.4.0, Rcpp-1.0.11, rematch2-2.1.2, remotes-2.4.2.1, rlang-1.1.2, rmarkdown-2.25, roxygen2-7.2.3, rprojroot-2.0.4, rstudioapi-0.15.0, rversions-2.1.2, sass-0.4.7, sessioninfo-1.2.2, shiny-1.7.5.1, sourcetools-0.1.7-1, splines, stats, stats4, stringi-1.7.12, stringr-1.5.0, sys-3.4.2, systemfonts-1.0.5, tcltk, testthat-3.2.0, textshaping-0.3.7, tibble-3.2.1, tinytex-0.48, tools, urlchecker-1.0.1, usethis-2.2.2, utf8-1.2.4, utils, vctrs-0.6.4, waldo-0.5.2, whisker-0.4.1, withr-2.5.2, xfun-0.41, xml2-1.3.5, xopen-1.0.0, xtable-1.8-4, yaml-2.3.7, zip-2.3.0 -### R/4.2.2-foss-2022b +|`abe` version|R modules that include it| +| --- | --- | +|3.0.1|`R/4.2.2-foss-2022b`| -This is a list of extensions included in the module: +### abind -abc-2.2.1, abc.data-1.0, abe-3.0.1, abind-1.4-5, acepack-1.4.1, adabag-4.2, ade4-1.7-22, ADGofTest-0.3, admisc-0.31, aggregation-1.0.1, AICcmodavg-2.3-1, akima-0.6-3.4, alabama-2022.4-1, AlgDesign-1.2.1, alluvial-0.1-2, AMAPVox-1.0.0, animation-2.7, aod-1.3.2, apcluster-1.4.10, ape-5.7-1, aplot-0.1.10, argparse-2.2.2, aricode-1.0.2, arm-1.13-1, askpass-1.1, asnipe-1.1.16, assertive-0.3-6, assertive.base-0.0-9, assertive.code-0.0-3, assertive.data-0.0-3, assertive.data.uk-0.0-2, assertive.data.us-0.0-2, assertive.datetimes-0.0-3, assertive.files-0.0-2, assertive.matrices-0.0-2, assertive.models-0.0-2, assertive.numbers-0.0-2, assertive.properties-0.0-5, assertive.reflection-0.0-5, assertive.sets-0.0-3, assertive.strings-0.0-3, assertive.types-0.0-3, assertthat-0.2.1, AUC-0.3.2, audio-0.1-10, aws-2.5-1, awsMethods-1.1-1, backports-1.4.1, bacr-1.0.1, bartMachine-1.3.3.1, bartMachineJARs-1.2.1, base, base64-2.0.1, base64enc-0.1-3, BatchJobs-1.9, batchmeans-1.0-4, BayesianTools-0.1.8, BayesLogit-2.1, bayesm-3.1-5, BayesPen-1.0, bayesplot-1.10.0, BB-2019.10-1, BBmisc-1.13, bbmle-1.0.25, BCEE-1.3.1, BDgraph-2.72, bdsmatrix-1.3-6, beanplot-1.3.1, beeswarm-0.4.0, berryFunctions-1.22.0, betareg-3.1-4, BH-1.81.0-1, BiasedUrn-2.0.9, bibtex-0.5.1, bigD-0.2.0, BIGL-1.7.0, bigmemory-4.6.1, bigmemory.sri-0.1.6, bindr-0.1.1, bindrcpp-0.2.2, bio3d-2.4-4, biom-0.3.12, biomod2-4.2-2, bit-4.0.5, bit64-4.0.5, bitops-1.0-7, blavaan-0.4-7, blob-1.2.4, BMA-3.18.17, bmp-0.3, bnlearn-4.8.1, bold-1.2.0, boot-1.3-28.1, bootstrap-2019.6, Boruta-8.0.0, brew-1.0-8, brglm-0.7.2, bridgedist-0.1.2, bridgesampling-1.1-2, brio-1.1.3, brms-2.19.0, Brobdingnag-1.2-9, broom-1.0.4, broom.helpers-1.12.0, broom.mixed-0.2.9.4, bslib-0.4.2, bst-0.3-24, cachem-1.0.7, Cairo-1.6-0, calibrate-1.7.7, callr-3.7.3, car-3.1-1, carData-3.0-5, caret-6.0-93, catlearn-0.9.1, caTools-1.18.2, CBPS-0.23, celestial-1.4.6, cellranger-1.1.0, cgdsr-1.2.10, cghFLasso-0.2-1, changepoint-2.2.4, checkmate-2.1.0, chemometrics-1.4.2, chkptstanr-0.1.1, chron-2.3-60, circlize-0.4.15, circular-0.4-95, class-7.3-21, classInt-0.4-9, cld2-1.2.4, cli-3.6.0, clipr-0.8.0, clisymbols-1.2.0, clock-0.6.1, clue-0.3-64, cluster-2.1.4, clusterGeneration-1.3.7, clusterRepro-0.9, clustree-0.5.0, clValid-0.7, cmprsk-2.2-11, cNORM-3.0.2, cobalt-4.4.1, cobs-1.3-5, coda-0.19-4, codetools-0.2-19, coin-1.4-2, collapse-1.9.3, colorspace-2.1-0, colourpicker-1.2.0, combinat-0.0-8, ComICS-1.0.4, commonmark-1.8.1, compiler, ComplexUpset-1.3.3, compositions-2.0-5, CompQuadForm-1.4.3, conditionz-0.1.0, conflicted-1.2.0, conquer-1.3.3, contfrac-1.1-12, copCAR-2.0-4, copula-1.1-2, corpcor-1.6.10, corrplot-0.92, covr-3.6.1, CovSel-1.2.1, covsim-1.0.0, cowplot-1.1.1, coxed-0.3.3, coxme-2.2-18.1, cpp11-0.4.3, crayon-1.5.2, credentials-1.3.2, crfsuite-0.4.1, crosstalk-1.2.0, crul-1.3, cSEM-0.5.0, csSAM-1.2.4, ctmle-0.1.2, cubature-2.0.4.6, cubelyr-1.0.2, curl-5.0.0, cvAUC-1.1.4, CVST-0.2-3, CVXR-1.0-11, d3Network-0.5.2.1, dagitty-0.3-1, data.table-1.14.8, data.tree-1.0.0, DataCombine-0.2.21, datasets, date-1.2-42, dbarts-0.9-23, DBI-1.1.3, dbplyr-2.3.1, dbscan-1.1-11, dcurver-0.9.2, ddalpha-1.3.13, deal-1.2-42, debugme-1.1.0, deldir-1.0-6, dendextend-1.16.0, DEoptim-2.2-8, DEoptimR-1.0-11, DepthProc-2.1.5, Deriv-4.1.3, desc-1.4.2, DescTools-0.99.48, deSolve-1.35, devtools-2.4.5, dfidx-0.0-5, DHARMa-0.4.6, dHSIC-2.1, diagram-1.6.5, DiagrammeR-1.0.9, DiceKriging-1.6.0, dichromat-2.0-0.1, diffobj-0.3.5, digest-0.6.31, dimRed-0.2.6, diptest-0.76-0, DiscriMiner-0.1-29, dismo-1.3-9, distillery-1.2-1, distr-2.9.1, distrEx-2.9.0, distributional-0.3.1, DistributionUtils-0.6-0, diveRsity-1.9.90, dlm-1.1-6, DMCfun-2.0.2, doc2vec-0.2.0, docstring-1.0.0, doMC-1.3.8, doParallel-1.0.17, doRNG-1.8.6, doSNOW-1.0.20, dotCall64-1.0-2, downlit-0.4.2, downloader-0.4, dplyr-1.1.0, dr-3.0.10, drgee-1.1.10, DRR-0.0.4, drugCombo-1.2.1, DT-0.27, dtangle-2.0.9, dtplyr-1.3.0, DTRreg-1.7, dtw-1.23-1, dummies-1.5.6, dygraphs-1.1.1.6, dynamicTreeCut-1.63-1, e1071-1.7-13, earth-5.3.2, EasyABC-1.5.2, ECOSolveR-0.5.5, elementR-1.3.7, ellipse-0.4.3, ellipsis-0.3.2, elliptic-1.4-0, emdbook-1.3.12, emmeans-1.8.5, emoa-0.5-0.1, emulator-1.2-21, energy-1.7-11, ENMeval-2.0.4, entropy-1.3.1, EnvStats-2.7.0, epitools-0.5-10.1, ergm-4.4.0, ergm.count-4.1.1, estimability-1.4.1, evaluate-0.20, EValue-4.1.3, evd-2.3-6.1, Exact-3.2, expm-0.999-7, ExPosition-2.8.23, expsmooth-2.3, extrafont-0.19, extrafontdb-1.0, extRemes-2.1-3, FactoMineR-2.7, FactorCopula-0.9.3, fail-1.3, fansi-1.0.4, farver-2.1.1, fastcluster-1.2.3, fastDummies-1.6.3, fasterize-1.0.4, fastICA-1.2-3, fastmap-1.1.1, fastmatch-1.1-3, fdrtool-1.2.17, feather-0.3.5, ff-4.0.9, fftw-1.0-7, fftwtools-0.9-11, fields-14.1, filehash-2.4-5, finalfit-1.0.6, findpython-1.0.8, fishMod-0.29, fitdistrplus-1.1-8, FKSUM-1.0.1, flashClust-1.01-2, flexclust-1.4-1, flexmix-2.3-19, flextable-0.9.2, fma-2.5, FME-1.3.6.2, fmri-1.9.11, FNN-1.1.3.1, fontawesome-0.5.0, fontBitstreamVera-0.1.1, fontLiberation-0.1.0, fontquiver-0.2.1, forcats-1.0.0, foreach-1.5.2, forecast-8.21, foreign-0.8-84, formatR-1.14, Formula-1.2-5, formula.tools-1.7.1, fossil-0.4.0, fpc-2.2-10, fpp-0.5, fracdiff-1.5-2, fs-1.6.1, furrr-0.3.1, futile.logger-1.4.3, futile.options-1.0.1, future-1.32.0, future.apply-1.10.0, gam-1.22-1, gamlss-5.4-12, gamlss.data-6.0-2, gamlss.dist-6.0-5, gamlss.tr-5.1-7, gamm4-0.2-6, gap-1.5-1, gap.datasets-0.0.5, gapfill-0.9.6-1, gargle-1.3.0, gaussquad-1.0-3, gbm-2.1.8.1, gbRd-0.4-11, gclus-1.3.2, gdalUtilities-1.2.5, gdalUtils-2.0.3.2, gdata-2.18.0.1, gdistance-1.6, gdtools-0.3.3, gee-4.13-25, geeM-0.10.1, geepack-1.3.9, geex-1.1.1, geiger-2.0.10, GeneNet-1.2.16, generics-0.1.3, genoPlotR-0.8.11, GenSA-1.1.8, geojson-0.3.5, geojsonio-0.11.3, geojsonsf-2.0.3, geometries-0.2.2, geometry-0.4.7, gert-1.9.2, getopt-1.20.3, GetoptLong-1.0.5, gfonts-0.2.0, GGally-2.1.2, ggbeeswarm-0.7.1, ggdag-0.2.7, ggExtra-0.10.0, ggfan-0.1.3, ggforce-0.4.1, ggformula-0.10.2, ggfun-0.0.9, ggh4x-0.2.3, ggnetwork-0.5.12, ggplot2-3.4.1, ggplotify-0.1.0, ggpubr-0.6.0, ggraph-2.1.0, ggrepel-0.9.3, ggridges-0.5.4, ggsci-3.0.0, ggsignif-0.6.4, ggstance-0.3.6, ggvenn-0.1.9, ggvis-0.4.8, gh-1.4.0, GillespieSSA-0.6.2, git2r-0.31.0, gitcreds-0.1.2, GJRM-0.2-6.1, glasso-1.11, gld-2.6.6, gllvm-1.4.1, glmmML-1.1.4, glmmTMB-1.1.5, glmnet-4.1-6, GlobalOptions-0.1.2, globals-0.16.2, glue-1.6.2, gmm-1.7, gmodels-2.18.1.1, gmp-0.7-1, gnumeric-0.7-8, goftest-1.2-3, gomms-1.0, googledrive-2.0.0, googlesheets4-1.0.1, gower-1.0.1, GPArotation-2022.10-2, gplots-3.1.3, graphics, graphlayouts-0.8.4, grDevices, grf-2.2.1, grid, gridBase-0.4-7, gridExtra-2.3, gridGraphics-0.5-1, grImport2-0.2-0, grpreg-3.4.0, GSA-1.03.2, gsalib-2.2.1, gsl-2.1-8, gsw-1.1-1, gt-0.8.0, gtable-0.3.1, gtools-3.9.4, gtsummary-1.7.0, GUTS-1.2.3, gWidgets2-1.0-9, gWidgets2tcltk-1.0-8, GxEScanR-2.0.2, h2o-3.40.0.1, hal9001-0.4.3, haldensify-0.2.3, hardhat-1.2.0, harmony-0.1.1, hash-2.2.6.2, haven-2.5.2, hdf5r-1.3.8, hdm-0.3.1, heatmap3-1.1.9, here-1.0.1, hexbin-1.28.2, HGNChelper-0.8.1, HiddenMarkov-1.8-13, highr-0.10, Hmisc-5.0-1, hms-1.1.2, Hmsc-3.0-13, htmlTable-2.4.1, htmltools-0.5.4, htmlwidgets-1.6.1, httpcode-0.3.0, httpuv-1.6.9, httr-1.4.5, httr2-0.2.2, huge-1.3.5, hunspell-3.0.2, hwriter-1.3.2.1, HWxtest-1.1.9, hypergeo-1.2-13, ica-1.0-3, IDPmisc-1.1.20, idr-1.3, ids-1.0.1, ie2misc-0.9.0, igraph-1.4.1, image.binarization-0.1.3, imager-0.42.18, imagerExtra-1.3.2, ineq-0.2-13, influenceR-0.1.0.1, infotheo-1.2.0.1, ini-0.3.1, inline-0.3.19, intergraph-2.0-2, interp-1.1-3, interpretR-0.2.4, intrinsicDimension-1.2.0, inum-1.0-5, ipred-0.9-14, irace-3.5, irlba-2.3.5.1, ismev-1.42, Iso-0.0-18.1, isoband-0.2.7, ISOcodes-2022.09.29, ISOweek-0.6-2, iterators-1.0.14, itertools-0.1-3, JADE-2.0-3, janeaustenr-1.0.0, JBTools-0.7.2.9, jiebaR-0.11, jiebaRD-0.1, jomo-2.7-4, jpeg-0.1-10, jqr-1.3.1, jquerylib-0.1.4, jsonify-1.2.2, jsonlite-1.8.4, jstable-1.0.7, juicyjuice-0.1.0, kde1d-1.0.5, kedd-1.0.3, kernlab-0.9-32, KernSmooth-2.23-20, kinship2-1.9.6, klaR-1.7-1, knitr-1.42, KODAMA-2.4, kohonen-3.0.11, ks-1.14.0, labdsv-2.0-1, labeling-0.4.2, labelled-2.10.0, laeken-0.5.2, lambda.r-1.2.4, LaplacesDemon-16.1.6, lars-1.3, lassosum-0.4.5, later-1.3.0, lattice-0.20-45, latticeExtra-0.6-30, lava-1.7.2.1, lavaan-0.6-15, lazy-1.2-18, lazyeval-0.2.2, LCFdata-2.0, lda-1.4.2, ldbounds-2.0.0, leafem-0.2.0, leaflet-2.1.2, leaflet.providers-1.9.0, leafsync-0.1.0, leaps-3.1, LearnBayes-2.15.1, leiden-0.4.3, lhs-1.1.6, libcoin-1.0-9, lifecycle-1.0.3, limSolve-1.5.6, linkcomm-1.0-14, linprog-0.9-4, liquidSVM-1.2.4, listenv-0.9.0, lme4-1.1-32, LMERConvenienceFunctions-3.0, lmerTest-3.1-3, lmom-2.9, Lmoments-1.3-1, lmtest-0.9-40, lobstr-1.1.2, locfdr-1.1-8, locfit-1.5-9.7, logcondens-2.1.7, logger-0.2.2, logistf-1.24.1, logspline-2.1.19, longitudinal-1.1.13, longmemo-1.1-2, loo-2.5.1, lpSolve-5.6.18, lpSolveAPI-5.5.2.0-17.9, lqa-1.0-3, lsei-1.3-0, lslx-0.6.11, lubridate-1.9.2, lwgeom-0.2-11, magic-1.6-1, magick-2.7.4, magrittr-2.0.3, MALDIquant-1.22, manipulateWidget-0.11.1, mapproj-1.2.11, maps-3.4.1, maptools-1.1-6, markdown-1.5, MASS-7.3-58.3, Matching-4.10-8, MatchIt-4.5.1, mathjaxr-1.6-0, matlab-1.0.4, Matrix-1.5-3, matrixcalc-1.0-6, MatrixModels-0.5-1, matrixStats-0.63.0, maxLik-1.5-2, maxlike-0.1-9, maxnet-0.1.4, mboost-2.9-7, mclogit-0.9.6, mclust-6.0.0, mcmc-0.9-7, MCMCpack-1.6-3, mcmcse-1.5-0, mda-0.5-3, medflex-0.6-7, mediation-4.5.0, memisc-0.99.31.6, memoise-2.0.1, memuse-4.2-3, MESS-0.5.9, metadat-1.2-0, metafor-3.8-1, MetaUtility-2.1.2, methods, mets-1.3.2, mgcv-1.8-42, mgsub-1.7.3, mhsmm-0.4.16, mi-1.1, mice-3.15.0, miceadds-3.16-18, microbenchmark-1.4.9, MIIVsem-0.5.8, mime-0.12, minerva-1.5.10, miniUI-0.1.1.1, minpack.lm-1.2-3, minqa-1.2.5, mirt-1.38.1, misc3d-0.9-1, miscTools-0.6-26, missForest-1.5, mitml-0.4-5, mitools-2.4, mixtools-2.0.0, mlbench-2.1-3, mlegp-3.1.9, MLmetrics-1.1.1, mlogit-1.1-1, mlr-2.19.1, mlrMBO-1.1.5.1, mltools-0.3.5, mnormt-2.1.1, ModelMetrics-1.2.2.2, modelr-0.1.10, modeltools-0.2-23, MODIStsp-2.1.0, momentfit-0.3, moments-0.14.1, MonteCarlo-1.0.6, mosaicCore-0.9.2.1, mpath-0.4-2.23, mRMRe-2.1.2, msm-1.7, mstate-0.3.2, multcomp-1.4-23, multcompView-0.1-8, multicool-0.1-12, multipol-1.0-7, munsell-0.5.0, mvabund-4.2.1, mvnfast-0.2.8, mvtnorm-1.1-3, nabor-0.5.0, naniar-1.0.0, natserv-1.0.0, naturalsort-0.1.3, ncbit-2013.03.29.1, ncdf4-1.21, NCmisc-1.2.0, network-1.18.1, networkDynamic-0.11.3, networkLite-1.0.5, neuralnet-1.44.2, neuRosim-0.2-13, ngspatial-1.2-2, NISTunits-1.0.1, nleqslv-3.3.4, nlme-3.1-162, nloptr-2.0.3, NLP-0.2-1, nlsem-0.8, nnet-7.3-18, nnls-1.4, nonnest2-0.5-5, nor1mix-1.3-0, norm-1.0-10.0, nortest-1.0-4, np-0.60-17, npsurv-0.5-0, numDeriv-2016.8-1.1, oai-0.4.0, oce-1.7-10, OceanView-1.0.6, oddsratio-2.0.1, officer-0.6.2, openair-2.16-0, OpenMx-2.21.1, openssl-2.0.6, openxlsx-4.2.5.2, operator.tools-1.6.3, optextras-2019-12.4, optimParallel-1.0-2, optimr-2019-12.16, optimx-2022-4.30, optmatch-0.10.6, optparse-1.7.3, ordinal-2022.11-16, origami-1.0.7, oro.nifti-0.11.4, orthopolynom-1.0-6.1, osqp-0.6.0.8, outliers-0.15, packrat-0.9.1, pacman-0.5.1, pammtools-0.5.8, pamr-1.56.1, pan-1.6, parallel, parallelDist-0.2.6, parallelly-1.34.0, parallelMap-1.5.1, ParamHelpers-1.14.1, parsedate-1.3.1, party-1.3-13, partykit-1.2-18, pastecs-1.3.21, patchwork-1.1.2, pbapply-1.7-0, pbivnorm-0.6.0, pbkrtest-0.5.2, PCAmatchR-0.3.3, pcaPP-2.0-3, pdp-0.8.1, PearsonDS-1.2.3, pec-2022.05.04, penalized-0.9-52, penfa-0.1.1, peperr-1.4, PermAlgo-1.2, permute-0.9-7, phangorn-2.11.1, pheatmap-1.0.12, phylobase-0.8.10, phytools-1.5-1, pillar-1.8.1, pim-2.0.2, pinfsc50-1.2.0, pixmap-0.4-12, pkgbuild-1.4.0, pkgconfig-2.0.3, pkgdown-2.0.7, pkgload-1.3.2, pkgmaker-0.32.8, plogr-0.2.0, plot3D-1.4, plot3Drgl-1.0.4, plotly-4.10.1, plotmo-3.6.2, plotrix-3.8-2, pls-2.8-1, plyr-1.8.8, PMA-1.2.1, png-0.1-8, PoissonSeq-1.1.2, poLCA-1.6.0.1, polspline-1.1.22, Polychrome-1.5.1, polyclip-1.10-4, polycor-0.8-1, polynom-1.4-1, posterior-1.4.1, ppcor-1.1, prabclus-2.3-2, pracma-2.4.2, praise-1.0.0, PresenceAbsence-1.1.11, preseqR-4.0.0, prettyGraphs-2.1.6, prettyunits-1.1.1, princurve-2.1.6, pROC-1.18.0, processx-3.8.0, prodlim-2019.11.13, profileModel-0.6.1, proftools-0.99-3, profvis-0.3.7, progress-1.2.2, progressr-0.13.0, projpred-2.4.0, promises-1.2.0.1, proto-1.0.0, protolite-2.3.0, proxy-0.4-27, proxyC-0.3.3, pryr-0.1.6, ps-1.7.2, pscl-1.5.5, pspline-1.0-19, psych-2.2.9, Publish-2023.01.17, pulsar-0.3.10, purrr-1.0.1, pvclust-2.2-0, qgam-1.3.4, qgraph-1.9.3, qqman-0.1.8, qrnn-2.0.5, quadprog-1.5-8, quanteda-3.3.0, quantmod-0.4.20, quantreg-5.94, questionr-0.7.8, R.cache-0.16.0, R.matlab-3.7.0, R.methodsS3-1.8.2, R.oo-1.25.0, R.rsp-0.45.0, R.utils-2.12.2, R2WinBUGS-2.1-21, R6-2.5.1, ragg-1.2.5, random-0.2.6, randomForest-4.7-1.1, randomForestSRC-3.2.1, randtoolbox-2.0.4, rangeModelMetadata-0.1.4, ranger-0.14.1, RANN-2.6.1, rapidjsonr-1.2.0, rappdirs-0.3.3, rARPACK-0.11-0, raster-3.6-20, rasterVis-0.51.5, ratelimitr-0.4.1, RBesT-1.6-6, rbibutils-2.2.13, rbison-1.0.0, Rborist-0.3-2, RCAL-2.0, Rcgmin-2022-4.30, RCircos-1.2.2, rcmdcheck-1.4.0, RColorBrewer-1.1-3, Rcpp-1.0.10, RcppArmadillo-0.12.0.1.0, RcppEigen-0.3.3.9.3, RcppGSL-0.3.13, RcppParallel-5.1.7, RcppProgress-0.4.2, RcppRoll-0.3.0, RcppThread-2.1.3, RcppTOML-0.2.2, RCurl-1.98-1.10, rda-1.2-1, Rdpack-2.4, rdrop2-0.8.2.1, readbitmap-0.1.5, reader-1.0.6, readODS-1.8.0, readr-2.1.4, readxl-1.4.2, rebird-1.3.0, recipes-1.0.5, RefFreeEWAS-2.2, registry-0.5-1, regsem-1.9.3, relsurv-2.2-9, rematch-1.0.1, rematch2-2.1.2, remotes-2.4.2, rentrez-1.2.3, renv-0.17.1, reprex-2.0.2, resample-0.6, reshape-0.8.9, reshape2-1.4.4, reticulate-1.28, rex-1.2.1, rgbif-3.7.5, RGCCA-2.1.2, rgdal-1.6-5, rgeos-0.6-2, rgexf-0.16.2, rgl-1.0.1, Rglpk-0.6-4, RhpcBLASctl-0.23-42, ridge-3.3, ridigbio-0.3.6, RInside-0.2.18, rio-0.5.29, riskRegression-2022.11.28, ritis-1.0.0, RItools-0.3-3, rJava-1.0-6, rjson-0.2.21, RJSONIO-1.3-1.8, rlang-1.1.0, rle-0.9.2, rlecuyer-0.3-5, rlemon-0.2.1, rlist-0.4.6.2, rmarkdown-2.20, rmeta-3.0, Rmpfr-0.9-1, rms-6.5-0, RMTstat-0.3.1, rncl-0.8.7, rnetcarto-0.2.6, RNeXML-2.4.11, rngtools-1.5.2, rngWELL-0.10-9, RNifti-1.4.5, robustbase-0.95-0, ROCR-1.0-11, ROI-1.0-0, ROI.plugin.glpk-1.0-0, Rook-1.2, rootSolve-1.8.2.3, roptim-0.1.6, rotl-3.0.14, roxygen2-7.2.3, rpact-3.3.4, rpart-4.1.19, rpf-1.0.11, RPMM-1.25, rprojroot-2.0.3, rrcov-1.7-2, rredlist-0.7.1, rsample-1.1.1, rsconnect-0.8.29, Rserve-1.8-11, RSNNS-0.4-15, Rsolnp-1.16, RSpectra-0.16-1, RSQLite-2.3.0, Rssa-1.0.5, rstan-2.21.8, rstantools-2.3.0, rstatix-0.7.2, rstudioapi-0.14, rtdists-0.11-5, Rtsne-0.16, Rttf2pt1-1.3.12, RUnit-0.4.32, ruv-0.9.7.1, rversions-2.1.2, rvertnet-0.8.2, rvest-1.0.3, rvinecopulib-0.6.3.1.1, Rvmmin-2018-4.17.1, RWeka-0.4-46, RWekajars-3.9.3-2, s2-1.1.2, sampling-2.9, sandwich-3.0-2, sass-0.4.5, SBdecomp-1.2, scales-1.2.1, scam-1.2-13, scatterpie-0.1.8, scatterplot3d-0.3-43, scs-3.2.4, sctransform-0.3.5, SDMTools-1.1-221.2, seewave-2.2.0, segmented-1.6-2, selectr-0.4-2, sem-3.1-15, semPLS-1.0-10, semTools-0.5-6, sendmailR-1.4-0, sensemakr-0.1.4, sentometrics-1.0.0, seqinr-4.2-23, servr-0.25, sessioninfo-1.2.2, setRNG-2022.4-1, sf-1.0-11, sfheaders-0.4.2, sfsmisc-1.1-14, shadowtext-0.1.2, shape-1.4.6, shapefiles-0.7.2, shiny-1.7.4, shinycssloaders-1.0.0, shinydashboard-0.7.2, shinyjs-2.1.0, shinystan-2.6.0, shinythemes-1.2.0, signal-0.7-7, SignifReg-4.3, simex-1.8, SimSeq-1.4.0, SKAT-2.2.5, slam-0.1-50, slider-0.3.0, sm-2.2-5.7.1, smoof-1.6.0.3, smoother-1.1, sn-2.1.0, sna-2.7-1, SNFtool-2.3.1, snow-0.4-4, SnowballC-0.7.0, snowfall-1.84-6.2, SOAR-0.99-11, solrium-1.2.0, som-0.3-5.1, soundecology-1.3.3, sourcetools-0.1.7-1, sp-1.6-0, spaa-0.2.2, spam-2.9-1, spaMM-4.2.1, SparseM-1.81, SPAtest-3.1.2, spatial-7.3-16, spatstat-3.0-3, spatstat.core-2.4-4, spatstat.data-3.0-1, spatstat.explore-3.1-0, spatstat.geom-3.1-0, spatstat.linnet-3.0-6, spatstat.model-3.2-1, spatstat.random-3.1-4, spatstat.sparse-3.0-1, spatstat.utils-3.0-2, spData-2.2.2, splines, splitstackshape-1.4.8, spls-2.2-3, spocc-1.2.1, spThin-0.2.0, SQUAREM-2021.1, stabledist-0.7-1, stabs-0.6-4, StanHeaders-2.21.0-7, stargazer-5.2.3, stars-0.6-0, startupmsg-0.9.6, StatMatch-1.4.1, statmod-1.5.0, statnet-2019.6, statnet.common-4.8.0, stats, stats4, stdReg-3.4.1, stopwords-2.3, stringdist-0.9.10, stringi-1.7.12, stringr-1.5.0, strucchange-1.5-3, styler-1.9.1, subplex-1.8, SuperLearner-2.0-28, SuppDists-1.1-9.7, survey-4.1-1, survival-3.5-5, survivalROC-1.0.3.1, svd-0.5.3, svglite-2.1.1, swagger-3.33.1, symmoments-1.2.1, sys-3.4.1, systemfonts-1.0.4, tableone-0.13.2, tabletools-0.1.0, tau-0.0-24, taxize-0.9.100, tcltk, tcltk2-1.2-11, tclust-1.5-2, TeachingDemos-2.12, tensor-1.5, tensorA-0.36.2, tergm-4.1.1, terra-1.7-18, testit-0.13, testthat-3.1.7, textcat-1.0-8, textplot-0.2.2, textshaping-0.3.6, TFisher-0.2.0, TH.data-1.1-1, threejs-0.3.3, tibble-3.2.0, tictoc-1.1, tidygraph-1.2.3, tidyr-1.3.0, tidyselect-1.2.0, tidytext-0.4.1, tidytree-0.4.2, tidyverse-2.0.0, tiff-0.1-11, timechange-0.2.0, timeDate-4022.108, timereg-2.0.5, tinytex-0.44, tkrplot-0.0-27, tm-0.7-11, tmap-3.3-3, tmaptools-3.1-1, TMB-1.9.2, tmle-1.5.0.2, tmvnsim-1.0-2, tmvtnorm-1.5, tokenizers-0.3.0, tools, topicmodels-0.2-13, TraMineR-2.2-6, tree-1.0-43, triebeard-0.4.1, trimcluster-0.1-5, tripack-1.3-9.1, TruncatedNormal-2.2.2, truncnorm-1.0-8, trust-0.1-8, tseries-0.10-53, tseriesChaos-0.1-13.1, tsna-0.3.5, tsne-0.1-3.1, TTR-0.24.3, tuneR-1.4.3, twang-2.5, tweedie-2.3.5, tweenr-2.0.2, tzdb-0.3.0, ucminf-1.1-4.1, udpipe-0.8.11, umap-0.2.10.0, unbalanced-2.0, unikn-0.8.0, uniqueAtomMat-0.1-3-2, units-0.8-1, unmarked-1.2.5, UpSetR-1.4.0, urca-1.3-3, urlchecker-1.0.1, urltools-1.7.3, uroot-2.1-2, usethis-2.1.6, utf8-1.2.3, utils, uuid-1.1-0, V8-4.2.2, varhandle-2.0.5, vcd-1.4-11, vcfR-1.14.0, vctrs-0.6.0, vegan-2.6-4, VennDiagram-1.7.3, VGAM-1.1-8, VIM-6.2.2, VineCopula-2.4.5, vioplot-0.4.0, vipor-0.4.5, viridis-0.6.2, viridisLite-0.4.1, visdat-0.6.0, visNetwork-2.1.2, vroom-1.6.1, VSURF-1.2.0, waldo-0.4.0, warp-0.2.0, waveslim-1.8.4, wdm-0.2.3, webshot-0.5.4, webutils-1.1, weights-1.0.4, WeightSVM-1.7-11, wellknown-0.7.4, whisker-0.4.1, widgetframe-0.3.1, WikidataQueryServiceR-1.0.0, WikidataR-2.3.3, WikipediR-1.5.0, wikitaxa-0.4.0, withr-2.5.0, wk-0.7.1, word2vec-0.3.4, wordcloud-2.6, worrms-0.4.2, WriteXLS-6.4.0, xfun-0.37, xgboost-1.7.3.1, xlsx-0.6.5, xlsxjars-0.6.1, XML-3.99-0.13, xml2-1.3.3, xopen-1.0.0, xtable-1.8-4, xts-0.13.0, yaImpute-1.0-33, yaml-2.3.7, yulab.utils-0.0.6, zeallot-0.1.0, zip-2.2.2, zoo-1.8-11 \ No newline at end of file + +|`abind` version|R modules that include it| +| --- | --- | +|1.4-5|`R/4.2.2-foss-2022b`| + +### acepack + + +|`acepack` version|R modules that include it| +| --- | --- | +|1.4.1|`R/4.2.2-foss-2022b`| + +### adabag + + +|`adabag` version|R modules that include it| +| --- | --- | +|4.2|`R/4.2.2-foss-2022b`| + +### ade4 + + +|`ade4` version|R modules that include it| +| --- | --- | +|1.7-22|`R/4.2.2-foss-2022b`| + +### ADGofTest + + +|`ADGofTest` version|R modules that include it| +| --- | --- | +|0.3|`R/4.2.2-foss-2022b`| + +### admisc + + +|`admisc` version|R modules that include it| +| --- | --- | +|0.31|`R/4.2.2-foss-2022b`| + +### aggregation + + +|`aggregation` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### AICcmodavg + + +|`AICcmodavg` version|R modules that include it| +| --- | --- | +|2.3-1|`R/4.2.2-foss-2022b`| + +### akima + + +|`akima` version|R modules that include it| +| --- | --- | +|0.6-3.4|`R/4.2.2-foss-2022b`| + +### alabama + + +|`alabama` version|R modules that include it| +| --- | --- | +|2022.4-1|`R/4.2.2-foss-2022b`| + +### AlgDesign + + +|`AlgDesign` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.2.2-foss-2022b`| + +### alluvial + + +|`alluvial` version|R modules that include it| +| --- | --- | +|0.1-2|`R/4.2.2-foss-2022b`| + +### AMAPVox + + +|`AMAPVox` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### animation + + +|`animation` version|R modules that include it| +| --- | --- | +|2.7|`R/4.2.2-foss-2022b`| + +### aod + + +|`aod` version|R modules that include it| +| --- | --- | +|1.3.2|`R/4.2.2-foss-2022b`| + +### apcluster + + +|`apcluster` version|R modules that include it| +| --- | --- | +|1.4.10|`R/4.2.2-foss-2022b`| + +### ape + + +|`ape` version|R modules that include it| +| --- | --- | +|5.7-1|`R/4.2.2-foss-2022b`| + +### aplot + + +|`aplot` version|R modules that include it| +| --- | --- | +|0.1.10|`R/4.2.2-foss-2022b`| + +### argparse + + +|`argparse` version|R modules that include it| +| --- | --- | +|2.2.2|`R/4.2.2-foss-2022b`| + +### aricode + + +|`aricode` version|R modules that include it| +| --- | --- | +|1.0.2|`R/4.2.2-foss-2022b`| + +### arm + + +|`arm` version|R modules that include it| +| --- | --- | +|1.13-1|`R/4.2.2-foss-2022b`| + +### askpass + + +|`askpass` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`| +|1.2.0|`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|1.1|`R/4.2.2-foss-2022b`| + +### asnipe + + +|`asnipe` version|R modules that include it| +| --- | --- | +|1.1.16|`R/4.2.2-foss-2022b`| + +### assertive + + +|`assertive` version|R modules that include it| +| --- | --- | +|0.3-6|`R/4.2.2-foss-2022b`| + +### assertive.base + + +|`assertive.base` version|R modules that include it| +| --- | --- | +|0.0-9|`R/4.2.2-foss-2022b`| + +### assertive.code + + +|`assertive.code` version|R modules that include it| +| --- | --- | +|0.0-3|`R/4.2.2-foss-2022b`| + +### assertive.data + + +|`assertive.data` version|R modules that include it| +| --- | --- | +|0.0-3|`R/4.2.2-foss-2022b`| + +### assertive.data.uk + + +|`assertive.data.uk` version|R modules that include it| +| --- | --- | +|0.0-2|`R/4.2.2-foss-2022b`| + +### assertive.data.us + + +|`assertive.data.us` version|R modules that include it| +| --- | --- | +|0.0-2|`R/4.2.2-foss-2022b`| + +### assertive.datetimes + + +|`assertive.datetimes` version|R modules that include it| +| --- | --- | +|0.0-3|`R/4.2.2-foss-2022b`| + +### assertive.files + + +|`assertive.files` version|R modules that include it| +| --- | --- | +|0.0-2|`R/4.2.2-foss-2022b`| + +### assertive.matrices + + +|`assertive.matrices` version|R modules that include it| +| --- | --- | +|0.0-2|`R/4.2.2-foss-2022b`| + +### assertive.models + + +|`assertive.models` version|R modules that include it| +| --- | --- | +|0.0-2|`R/4.2.2-foss-2022b`| + +### assertive.numbers + + +|`assertive.numbers` version|R modules that include it| +| --- | --- | +|0.0-2|`R/4.2.2-foss-2022b`| + +### assertive.properties + + +|`assertive.properties` version|R modules that include it| +| --- | --- | +|0.0-5|`R/4.2.2-foss-2022b`| + +### assertive.reflection + + +|`assertive.reflection` version|R modules that include it| +| --- | --- | +|0.0-5|`R/4.2.2-foss-2022b`| + +### assertive.sets + + +|`assertive.sets` version|R modules that include it| +| --- | --- | +|0.0-3|`R/4.2.2-foss-2022b`| + +### assertive.strings + + +|`assertive.strings` version|R modules that include it| +| --- | --- | +|0.0-3|`R/4.2.2-foss-2022b`| + +### assertive.types + + +|`assertive.types` version|R modules that include it| +| --- | --- | +|0.0-3|`R/4.2.2-foss-2022b`| + +### assertthat + + +|`assertthat` version|R modules that include it| +| --- | --- | +|0.2.1|`R/4.2.2-foss-2022b`| + +### AUC + + +|`AUC` version|R modules that include it| +| --- | --- | +|0.3.2|`R/4.2.2-foss-2022b`| + +### audio + + +|`audio` version|R modules that include it| +| --- | --- | +|0.1-10|`R/4.2.2-foss-2022b`| + +### aws + + +|`aws` version|R modules that include it| +| --- | --- | +|2.5-1|`R/4.2.2-foss-2022b`| + +### awsMethods + + +|`awsMethods` version|R modules that include it| +| --- | --- | +|1.1-1|`R/4.2.2-foss-2022b`| + +### b + + +|`b` version|R modules that include it| +| --- | --- | +|a|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### backports + + +|`backports` version|R modules that include it| +| --- | --- | +|1.4.1|`R/4.2.2-foss-2022b`| + +### bacr + + +|`bacr` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### bartMachine + + +|`bartMachine` version|R modules that include it| +| --- | --- | +|1.3.3.1|`R/4.2.2-foss-2022b`| + +### bartMachineJARs + + +|`bartMachineJARs` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.2.2-foss-2022b`| + +### base64 + + +|`base64` version|R modules that include it| +| --- | --- | +|2.0.1|`R/4.2.2-foss-2022b`| + +### base64enc + + +|`base64enc` version|R modules that include it| +| --- | --- | +|0.1-3|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### BatchJobs + + +|`BatchJobs` version|R modules that include it| +| --- | --- | +|1.9|`R/4.2.2-foss-2022b`| + +### batchmeans + + +|`batchmeans` version|R modules that include it| +| --- | --- | +|1.0-4|`R/4.2.2-foss-2022b`| + +### BayesianTools + + +|`BayesianTools` version|R modules that include it| +| --- | --- | +|0.1.8|`R/4.2.2-foss-2022b`| + +### BayesLogit + + +|`BayesLogit` version|R modules that include it| +| --- | --- | +|2.1|`R/4.2.2-foss-2022b`| + +### bayesm + + +|`bayesm` version|R modules that include it| +| --- | --- | +|3.1-5|`R/4.2.2-foss-2022b`| + +### BayesPen + + +|`BayesPen` version|R modules that include it| +| --- | --- | +|1.0|`R/4.2.2-foss-2022b`| + +### bayesplot + + +|`bayesplot` version|R modules that include it| +| --- | --- | +|1.10.0|`R/4.2.2-foss-2022b`| + +### BB + + +|`BB` version|R modules that include it| +| --- | --- | +|2019.10-1|`R/4.2.2-foss-2022b`| + +### BBmisc + + +|`BBmisc` version|R modules that include it| +| --- | --- | +|1.13|`R/4.2.2-foss-2022b`| + +### bbmle + + +|`bbmle` version|R modules that include it| +| --- | --- | +|1.0.25|`R/4.2.2-foss-2022b`| + +### BCEE + + +|`BCEE` version|R modules that include it| +| --- | --- | +|1.3.1|`R/4.2.2-foss-2022b`| + +### BDgraph + + +|`BDgraph` version|R modules that include it| +| --- | --- | +|2.72|`R/4.2.2-foss-2022b`| + +### bdsmatrix + + +|`bdsmatrix` version|R modules that include it| +| --- | --- | +|1.3-6|`R/4.2.2-foss-2022b`| + +### beanplot + + +|`beanplot` version|R modules that include it| +| --- | --- | +|1.3.1|`R/4.2.2-foss-2022b`| + +### beeswarm + + +|`beeswarm` version|R modules that include it| +| --- | --- | +|0.4.0|`R/4.2.2-foss-2022b`| + +### berryFunctions + + +|`berryFunctions` version|R modules that include it| +| --- | --- | +|1.22.0|`R/4.2.2-foss-2022b`| + +### betareg + + +|`betareg` version|R modules that include it| +| --- | --- | +|3.1-4|`R/4.2.2-foss-2022b`| + +### BH + + +|`BH` version|R modules that include it| +| --- | --- | +|1.81.0-1|`R/4.2.2-foss-2022b`| + +### BiasedUrn + + +|`BiasedUrn` version|R modules that include it| +| --- | --- | +|2.0.9|`R/4.2.2-foss-2022b`| + +### bibtex + + +|`bibtex` version|R modules that include it| +| --- | --- | +|0.5.1|`R/4.2.2-foss-2022b`| + +### bigD + + +|`bigD` version|R modules that include it| +| --- | --- | +|0.2.0|`R/4.2.2-foss-2022b`| + +### BIGL + + +|`BIGL` version|R modules that include it| +| --- | --- | +|1.7.0|`R/4.2.2-foss-2022b`| + +### bigmemory + + +|`bigmemory` version|R modules that include it| +| --- | --- | +|4.6.1|`R/4.2.2-foss-2022b`| + +### bigmemory.sri + + +|`bigmemory.sri` version|R modules that include it| +| --- | --- | +|0.1.6|`R/4.2.2-foss-2022b`| + +### bindr + + +|`bindr` version|R modules that include it| +| --- | --- | +|0.1.1|`R/4.2.2-foss-2022b`| + +### bindrcpp + + +|`bindrcpp` version|R modules that include it| +| --- | --- | +|0.2.2|`R/4.2.2-foss-2022b`| + +### bio3d + + +|`bio3d` version|R modules that include it| +| --- | --- | +|2.4-4|`R/4.2.2-foss-2022b`| + +### biom + + +|`biom` version|R modules that include it| +| --- | --- | +|0.3.12|`R/4.2.2-foss-2022b`| + +### biomod2 + + +|`biomod2` version|R modules that include it| +| --- | --- | +|4.2-2|`R/4.2.2-foss-2022b`| + +### bit + + +|`bit` version|R modules that include it| +| --- | --- | +|4.0.5|`R/4.2.2-foss-2022b`| + +### bit64 + + +|`bit64` version|R modules that include it| +| --- | --- | +|4.0.5|`R/4.2.2-foss-2022b`| + +### bitops + + +|`bitops` version|R modules that include it| +| --- | --- | +|1.0-7|`R/4.2.2-foss-2022b`| + +### blavaan + + +|`blavaan` version|R modules that include it| +| --- | --- | +|0.4-7|`R/4.2.2-foss-2022b`| + +### blob + + +|`blob` version|R modules that include it| +| --- | --- | +|1.2.4|`R/4.2.2-foss-2022b`| + +### BMA + + +|`BMA` version|R modules that include it| +| --- | --- | +|3.18.17|`R/4.2.2-foss-2022b`| + +### bmp + + +|`bmp` version|R modules that include it| +| --- | --- | +|0.3|`R/4.2.2-foss-2022b`| + +### bnlearn + + +|`bnlearn` version|R modules that include it| +| --- | --- | +|4.8.1|`R/4.2.2-foss-2022b`| + +### bold + + +|`bold` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### boot + + +|`boot` version|R modules that include it| +| --- | --- | +|1.3-28.1|`R/4.2.2-foss-2022b`| + +### bootstrap + + +|`bootstrap` version|R modules that include it| +| --- | --- | +|2019.6|`R/4.2.2-foss-2022b`| + +### Boruta + + +|`Boruta` version|R modules that include it| +| --- | --- | +|8.0.0|`R/4.2.2-foss-2022b`| + +### brew + + +|`brew` version|R modules that include it| +| --- | --- | +|1.0-10|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.0-8|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### brglm + + +|`brglm` version|R modules that include it| +| --- | --- | +|0.7.2|`R/4.2.2-foss-2022b`| + +### bridgedist + + +|`bridgedist` version|R modules that include it| +| --- | --- | +|0.1.2|`R/4.2.2-foss-2022b`| + +### bridgesampling + + +|`bridgesampling` version|R modules that include it| +| --- | --- | +|1.1-2|`R/4.2.2-foss-2022b`| + +### brio + + +|`brio` version|R modules that include it| +| --- | --- | +|1.1.5|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.1.3|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### brms + + +|`brms` version|R modules that include it| +| --- | --- | +|2.19.0|`R/4.2.2-foss-2022b`| + +### Brobdingnag + + +|`Brobdingnag` version|R modules that include it| +| --- | --- | +|1.2-9|`R/4.2.2-foss-2022b`| + +### broom + + +|`broom` version|R modules that include it| +| --- | --- | +|1.0.4|`R/4.2.2-foss-2022b`| + +### broom.helpers + + +|`broom.helpers` version|R modules that include it| +| --- | --- | +|1.12.0|`R/4.2.2-foss-2022b`| + +### broom.mixed + + +|`broom.mixed` version|R modules that include it| +| --- | --- | +|0.2.9.4|`R/4.2.2-foss-2022b`| + +### bslib + + +|`bslib` version|R modules that include it| +| --- | --- | +|0.9.0|`R/4.5.1-gfbf-2025a`| +|0.8.0|`R/4.4.2-gfbf-2024a`| +|0.7.0|`R/4.4.1-gfbf-2023b`| +|0.5.1|`R/4.3.2-gfbf-2023a`| +|0.4.2|`R/4.2.2-foss-2022b`| + +### bst + + +|`bst` version|R modules that include it| +| --- | --- | +|0.3-24|`R/4.2.2-foss-2022b`| + +### c + + +|`c` version|R modules that include it| +| --- | --- | +|o|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### cachem + + +|`cachem` version|R modules that include it| +| --- | --- | +|1.1.0|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.0.8|`R/4.3.2-gfbf-2023a`| +|1.0.7|`R/4.2.2-foss-2022b`| + +### Cairo + + +|`Cairo` version|R modules that include it| +| --- | --- | +|1.6-0|`R/4.2.2-foss-2022b`| + +### calibrate + + +|`calibrate` version|R modules that include it| +| --- | --- | +|1.7.7|`R/4.2.2-foss-2022b`| + +### callr + + +|`callr` version|R modules that include it| +| --- | --- | +|3.7.6|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|3.7.3|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### car + + +|`car` version|R modules that include it| +| --- | --- | +|3.1-1|`R/4.2.2-foss-2022b`| + +### carData + + +|`carData` version|R modules that include it| +| --- | --- | +|3.0-5|`R/4.2.2-foss-2022b`| + +### caret + + +|`caret` version|R modules that include it| +| --- | --- | +|6.0-93|`R/4.2.2-foss-2022b`| + +### catlearn + + +|`catlearn` version|R modules that include it| +| --- | --- | +|0.9.1|`R/4.2.2-foss-2022b`| + +### caTools + + +|`caTools` version|R modules that include it| +| --- | --- | +|1.18.2|`R/4.2.2-foss-2022b`| + +### CBPS + + +|`CBPS` version|R modules that include it| +| --- | --- | +|0.23|`R/4.2.2-foss-2022b`| + +### celestial + + +|`celestial` version|R modules that include it| +| --- | --- | +|1.4.6|`R/4.2.2-foss-2022b`| + +### cellranger + + +|`cellranger` version|R modules that include it| +| --- | --- | +|1.1.0|`R/4.2.2-foss-2022b`| + +### cgdsr + + +|`cgdsr` version|R modules that include it| +| --- | --- | +|1.2.10|`R/4.2.2-foss-2022b`| + +### cghFLasso + + +|`cghFLasso` version|R modules that include it| +| --- | --- | +|0.2-1|`R/4.2.2-foss-2022b`| + +### changepoint + + +|`changepoint` version|R modules that include it| +| --- | --- | +|2.2.4|`R/4.2.2-foss-2022b`| + +### checkmate + + +|`checkmate` version|R modules that include it| +| --- | --- | +|2.1.0|`R/4.2.2-foss-2022b`| + +### chemometrics + + +|`chemometrics` version|R modules that include it| +| --- | --- | +|1.4.2|`R/4.2.2-foss-2022b`| + +### chkptstanr + + +|`chkptstanr` version|R modules that include it| +| --- | --- | +|0.1.1|`R/4.2.2-foss-2022b`| + +### chron + + +|`chron` version|R modules that include it| +| --- | --- | +|2.3-60|`R/4.2.2-foss-2022b`| + +### circlize + + +|`circlize` version|R modules that include it| +| --- | --- | +|0.4.15|`R/4.2.2-foss-2022b`| + +### circular + + +|`circular` version|R modules that include it| +| --- | --- | +|0.4-95|`R/4.2.2-foss-2022b`| + +### class + + +|`class` version|R modules that include it| +| --- | --- | +|7.3-21|`R/4.2.2-foss-2022b`| + +### classInt + + +|`classInt` version|R modules that include it| +| --- | --- | +|0.4-9|`R/4.2.2-foss-2022b`| + +### cld2 + + +|`cld2` version|R modules that include it| +| --- | --- | +|1.2.4|`R/4.2.2-foss-2022b`| + +### cli + + +|`cli` version|R modules that include it| +| --- | --- | +|3.6.5|`R/4.5.1-gfbf-2025a`| +|3.6.3|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|3.6.1|`R/4.3.2-gfbf-2023a`| +|3.6.0|`R/4.2.2-foss-2022b`| + +### clipr + + +|`clipr` version|R modules that include it| +| --- | --- | +|0.8.0|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### clisymbols + + +|`clisymbols` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### clock + + +|`clock` version|R modules that include it| +| --- | --- | +|0.6.1|`R/4.2.2-foss-2022b`| + +### clue + + +|`clue` version|R modules that include it| +| --- | --- | +|0.3-64|`R/4.2.2-foss-2022b`| + +### cluster + + +|`cluster` version|R modules that include it| +| --- | --- | +|2.1.4|`R/4.2.2-foss-2022b`| + +### clusterGeneration + + +|`clusterGeneration` version|R modules that include it| +| --- | --- | +|1.3.7|`R/4.2.2-foss-2022b`| + +### clusterRepro + + +|`clusterRepro` version|R modules that include it| +| --- | --- | +|0.9|`R/4.2.2-foss-2022b`| + +### clustree + + +|`clustree` version|R modules that include it| +| --- | --- | +|0.5.0|`R/4.2.2-foss-2022b`| + +### clValid + + +|`clValid` version|R modules that include it| +| --- | --- | +|0.7|`R/4.2.2-foss-2022b`| + +### cmprsk + + +|`cmprsk` version|R modules that include it| +| --- | --- | +|2.2-11|`R/4.2.2-foss-2022b`| + +### cNORM + + +|`cNORM` version|R modules that include it| +| --- | --- | +|3.0.2|`R/4.2.2-foss-2022b`| + +### cobalt + + +|`cobalt` version|R modules that include it| +| --- | --- | +|4.4.1|`R/4.2.2-foss-2022b`| + +### cobs + + +|`cobs` version|R modules that include it| +| --- | --- | +|1.3-5|`R/4.2.2-foss-2022b`| + +### coda + + +|`coda` version|R modules that include it| +| --- | --- | +|0.19-4|`R/4.2.2-foss-2022b`| + +### codetools + + +|`codetools` version|R modules that include it| +| --- | --- | +|0.2-19|`R/4.2.2-foss-2022b`| + +### coin + + +|`coin` version|R modules that include it| +| --- | --- | +|1.4-2|`R/4.2.2-foss-2022b`| + +### collapse + + +|`collapse` version|R modules that include it| +| --- | --- | +|1.9.3|`R/4.2.2-foss-2022b`| + +### colorspace + + +|`colorspace` version|R modules that include it| +| --- | --- | +|2.1-0|`R/4.2.2-foss-2022b`| + +### colourpicker + + +|`colourpicker` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### combinat + + +|`combinat` version|R modules that include it| +| --- | --- | +|0.0-8|`R/4.2.2-foss-2022b`| + +### ComICS + + +|`ComICS` version|R modules that include it| +| --- | --- | +|1.0.4|`R/4.2.2-foss-2022b`| + +### commonmark + + +|`commonmark` version|R modules that include it| +| --- | --- | +|2.0.0|`R/4.5.1-gfbf-2025a`| +|1.9.2|`R/4.4.2-gfbf-2024a`| +|1.9.1|`R/4.4.1-gfbf-2023b`| +|1.9.0|`R/4.3.2-gfbf-2023a`| +|1.8.1|`R/4.2.2-foss-2022b`| + +### ComplexUpset + + +|`ComplexUpset` version|R modules that include it| +| --- | --- | +|1.3.3|`R/4.2.2-foss-2022b`| + +### compositions + + +|`compositions` version|R modules that include it| +| --- | --- | +|2.0-5|`R/4.2.2-foss-2022b`| + +### CompQuadForm + + +|`CompQuadForm` version|R modules that include it| +| --- | --- | +|1.4.3|`R/4.2.2-foss-2022b`| + +### conditionz + + +|`conditionz` version|R modules that include it| +| --- | --- | +|0.1.0|`R/4.2.2-foss-2022b`| + +### conflicted + + +|`conflicted` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### conquer + + +|`conquer` version|R modules that include it| +| --- | --- | +|1.3.3|`R/4.2.2-foss-2022b`| + +### contfrac + + +|`contfrac` version|R modules that include it| +| --- | --- | +|1.1-12|`R/4.2.2-foss-2022b`| + +### copCAR + + +|`copCAR` version|R modules that include it| +| --- | --- | +|2.0-4|`R/4.2.2-foss-2022b`| + +### copula + + +|`copula` version|R modules that include it| +| --- | --- | +|1.1-2|`R/4.2.2-foss-2022b`| + +### corpcor + + +|`corpcor` version|R modules that include it| +| --- | --- | +|1.6.10|`R/4.2.2-foss-2022b`| + +### corrplot + + +|`corrplot` version|R modules that include it| +| --- | --- | +|0.92|`R/4.2.2-foss-2022b`| + +### covr + + +|`covr` version|R modules that include it| +| --- | --- | +|3.6.1|`R/4.2.2-foss-2022b`| + +### CovSel + + +|`CovSel` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.2.2-foss-2022b`| + +### covsim + + +|`covsim` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### cowplot + + +|`cowplot` version|R modules that include it| +| --- | --- | +|1.1.1|`R/4.2.2-foss-2022b`| + +### coxed + + +|`coxed` version|R modules that include it| +| --- | --- | +|0.3.3|`R/4.2.2-foss-2022b`| + +### coxme + + +|`coxme` version|R modules that include it| +| --- | --- | +|2.2-18.1|`R/4.2.2-foss-2022b`| + +### cpp11 + + +|`cpp11` version|R modules that include it| +| --- | --- | +|0.5.2|`R/4.5.1-gfbf-2025a`| +|0.5.0|`R/4.4.2-gfbf-2024a`| +|0.4.7|`R/4.4.1-gfbf-2023b`| +|0.4.6|`R/4.3.2-gfbf-2023a`| +|0.4.3|`R/4.2.2-foss-2022b`| + +### crayon + + +|`crayon` version|R modules that include it| +| --- | --- | +|1.5.3|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.5.2|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### credentials + + +|`credentials` version|R modules that include it| +| --- | --- | +|2.0.3|`R/4.5.1-gfbf-2025a`| +|2.0.2|`R/4.4.2-gfbf-2024a`| +|2.0.1|`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|1.3.2|`R/4.2.2-foss-2022b`| + +### crfsuite + + +|`crfsuite` version|R modules that include it| +| --- | --- | +|0.4.1|`R/4.2.2-foss-2022b`| + +### crosstalk + + +|`crosstalk` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### crul + + +|`crul` version|R modules that include it| +| --- | --- | +|1.3|`R/4.2.2-foss-2022b`| + +### cSEM + + +|`cSEM` version|R modules that include it| +| --- | --- | +|0.5.0|`R/4.2.2-foss-2022b`| + +### csSAM + + +|`csSAM` version|R modules that include it| +| --- | --- | +|1.2.4|`R/4.2.2-foss-2022b`| + +### ctmle + + +|`ctmle` version|R modules that include it| +| --- | --- | +|0.1.2|`R/4.2.2-foss-2022b`| + +### cubature + + +|`cubature` version|R modules that include it| +| --- | --- | +|2.0.4.6|`R/4.2.2-foss-2022b`| + +### cubelyr + + +|`cubelyr` version|R modules that include it| +| --- | --- | +|1.0.2|`R/4.2.2-foss-2022b`| + +### curl + + +|`curl` version|R modules that include it| +| --- | --- | +|7.0.0|`R/4.5.1-gfbf-2025a`| +|6.0.1|`R/4.4.2-gfbf-2024a`| +|5.2.1|`R/4.4.1-gfbf-2023b`| +|5.1.0|`R/4.3.2-gfbf-2023a`| +|5.0.0|`R/4.2.2-foss-2022b`| + +### cvAUC + + +|`cvAUC` version|R modules that include it| +| --- | --- | +|1.1.4|`R/4.2.2-foss-2022b`| + +### CVST + + +|`CVST` version|R modules that include it| +| --- | --- | +|0.2-3|`R/4.2.2-foss-2022b`| + +### CVXR + + +|`CVXR` version|R modules that include it| +| --- | --- | +|1.0-11|`R/4.2.2-foss-2022b`| + +### d + + +|`d` version|R modules that include it| +| --- | --- | +|a|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### d3Network + + +|`d3Network` version|R modules that include it| +| --- | --- | +|0.5.2.1|`R/4.2.2-foss-2022b`| + +### dagitty + + +|`dagitty` version|R modules that include it| +| --- | --- | +|0.3-1|`R/4.2.2-foss-2022b`| + +### data.table + + +|`data.table` version|R modules that include it| +| --- | --- | +|1.14.8|`R/4.2.2-foss-2022b`| + +### data.tree + + +|`data.tree` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### DataCombine + + +|`DataCombine` version|R modules that include it| +| --- | --- | +|0.2.21|`R/4.2.2-foss-2022b`| + +### date + + +|`date` version|R modules that include it| +| --- | --- | +|1.2-42|`R/4.2.2-foss-2022b`| + +### dbarts + + +|`dbarts` version|R modules that include it| +| --- | --- | +|0.9-23|`R/4.2.2-foss-2022b`| + +### DBI + + +|`DBI` version|R modules that include it| +| --- | --- | +|1.1.3|`R/4.2.2-foss-2022b`| + +### dbplyr + + +|`dbplyr` version|R modules that include it| +| --- | --- | +|2.3.1|`R/4.2.2-foss-2022b`| + +### dbscan + + +|`dbscan` version|R modules that include it| +| --- | --- | +|1.1-11|`R/4.2.2-foss-2022b`| + +### dcurver + + +|`dcurver` version|R modules that include it| +| --- | --- | +|0.9.2|`R/4.2.2-foss-2022b`| + +### ddalpha + + +|`ddalpha` version|R modules that include it| +| --- | --- | +|1.3.13|`R/4.2.2-foss-2022b`| + +### deal + + +|`deal` version|R modules that include it| +| --- | --- | +|1.2-42|`R/4.2.2-foss-2022b`| + +### debugme + + +|`debugme` version|R modules that include it| +| --- | --- | +|1.1.0|`R/4.2.2-foss-2022b`| + +### deldir + + +|`deldir` version|R modules that include it| +| --- | --- | +|1.0-6|`R/4.2.2-foss-2022b`| + +### dendextend + + +|`dendextend` version|R modules that include it| +| --- | --- | +|1.16.0|`R/4.2.2-foss-2022b`| + +### DEoptim + + +|`DEoptim` version|R modules that include it| +| --- | --- | +|2.2-8|`R/4.2.2-foss-2022b`| + +### DEoptimR + + +|`DEoptimR` version|R modules that include it| +| --- | --- | +|1.0-11|`R/4.2.2-foss-2022b`| + +### DepthProc + + +|`DepthProc` version|R modules that include it| +| --- | --- | +|2.1.5|`R/4.2.2-foss-2022b`| + +### Deriv + + +|`Deriv` version|R modules that include it| +| --- | --- | +|4.1.3|`R/4.2.2-foss-2022b`| + +### desc + + +|`desc` version|R modules that include it| +| --- | --- | +|1.4.3|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.4.2|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### DescTools + + +|`DescTools` version|R modules that include it| +| --- | --- | +|0.99.48|`R/4.2.2-foss-2022b`| + +### deSolve + + +|`deSolve` version|R modules that include it| +| --- | --- | +|1.35|`R/4.2.2-foss-2022b`| + +### devtools + + +|`devtools` version|R modules that include it| +| --- | --- | +|2.4.6|`R/4.5.1-gfbf-2025a`| +|2.4.5|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### dfidx + + +|`dfidx` version|R modules that include it| +| --- | --- | +|0.0-5|`R/4.2.2-foss-2022b`| + +### DHARMa + + +|`DHARMa` version|R modules that include it| +| --- | --- | +|0.4.6|`R/4.2.2-foss-2022b`| + +### dHSIC + + +|`dHSIC` version|R modules that include it| +| --- | --- | +|2.1|`R/4.2.2-foss-2022b`| + +### diagram + + +|`diagram` version|R modules that include it| +| --- | --- | +|1.6.5|`R/4.2.2-foss-2022b`| + +### DiagrammeR + + +|`DiagrammeR` version|R modules that include it| +| --- | --- | +|1.0.9|`R/4.2.2-foss-2022b`| + +### DiceKriging + + +|`DiceKriging` version|R modules that include it| +| --- | --- | +|1.6.0|`R/4.2.2-foss-2022b`| + +### dichromat + + +|`dichromat` version|R modules that include it| +| --- | --- | +|2.0-0.1|`R/4.2.2-foss-2022b`| + +### diffobj + + +|`diffobj` version|R modules that include it| +| --- | --- | +|0.3.6|`R/4.5.1-gfbf-2025a`| +|0.3.5|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### digest + + +|`digest` version|R modules that include it| +| --- | --- | +|0.6.37|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`| +|0.6.36|`R/4.4.1-gfbf-2023b`| +|0.6.33|`R/4.3.2-gfbf-2023a`| +|0.6.31|`R/4.2.2-foss-2022b`| + +### dimRed + + +|`dimRed` version|R modules that include it| +| --- | --- | +|0.2.6|`R/4.2.2-foss-2022b`| + +### diptest + + +|`diptest` version|R modules that include it| +| --- | --- | +|0.76-0|`R/4.2.2-foss-2022b`| + +### DiscriMiner + + +|`DiscriMiner` version|R modules that include it| +| --- | --- | +|0.1-29|`R/4.2.2-foss-2022b`| + +### dismo + + +|`dismo` version|R modules that include it| +| --- | --- | +|1.3-9|`R/4.2.2-foss-2022b`| + +### distillery + + +|`distillery` version|R modules that include it| +| --- | --- | +|1.2-1|`R/4.2.2-foss-2022b`| + +### distr + + +|`distr` version|R modules that include it| +| --- | --- | +|2.9.1|`R/4.2.2-foss-2022b`| + +### distrEx + + +|`distrEx` version|R modules that include it| +| --- | --- | +|2.9.0|`R/4.2.2-foss-2022b`| + +### distributional + + +|`distributional` version|R modules that include it| +| --- | --- | +|0.3.1|`R/4.2.2-foss-2022b`| + +### DistributionUtils + + +|`DistributionUtils` version|R modules that include it| +| --- | --- | +|0.6-0|`R/4.2.2-foss-2022b`| + +### diveRsity + + +|`diveRsity` version|R modules that include it| +| --- | --- | +|1.9.90|`R/4.2.2-foss-2022b`| + +### dlm + + +|`dlm` version|R modules that include it| +| --- | --- | +|1.1-6|`R/4.2.2-foss-2022b`| + +### DMCfun + + +|`DMCfun` version|R modules that include it| +| --- | --- | +|2.0.2|`R/4.2.2-foss-2022b`| + +### doc2vec + + +|`doc2vec` version|R modules that include it| +| --- | --- | +|0.2.0|`R/4.2.2-foss-2022b`| + +### docstring + + +|`docstring` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### doMC + + +|`doMC` version|R modules that include it| +| --- | --- | +|1.3.8|`R/4.2.2-foss-2022b`| + +### doParallel + + +|`doParallel` version|R modules that include it| +| --- | --- | +|1.0.17|`R/4.2.2-foss-2022b`| + +### doRNG + + +|`doRNG` version|R modules that include it| +| --- | --- | +|1.8.6|`R/4.2.2-foss-2022b`| + +### doSNOW + + +|`doSNOW` version|R modules that include it| +| --- | --- | +|1.0.20|`R/4.2.2-foss-2022b`| + +### dotCall64 + + +|`dotCall64` version|R modules that include it| +| --- | --- | +|1.0-2|`R/4.2.2-foss-2022b`| + +### downlit + + +|`downlit` version|R modules that include it| +| --- | --- | +|0.4.4|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|0.4.3|`R/4.3.2-gfbf-2023a`| +|0.4.2|`R/4.2.2-foss-2022b`| + +### downloader + + +|`downloader` version|R modules that include it| +| --- | --- | +|0.4|`R/4.2.2-foss-2022b`| + +### dplyr + + +|`dplyr` version|R modules that include it| +| --- | --- | +|1.1.0|`R/4.2.2-foss-2022b`| + +### dr + + +|`dr` version|R modules that include it| +| --- | --- | +|3.0.10|`R/4.2.2-foss-2022b`| + +### drgee + + +|`drgee` version|R modules that include it| +| --- | --- | +|1.1.10|`R/4.2.2-foss-2022b`| + +### DRR + + +|`DRR` version|R modules that include it| +| --- | --- | +|0.0.4|`R/4.2.2-foss-2022b`| + +### drugCombo + + +|`drugCombo` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.2.2-foss-2022b`| + +### DT + + +|`DT` version|R modules that include it| +| --- | --- | +|0.27|`R/4.2.2-foss-2022b`| + +### dtangle + + +|`dtangle` version|R modules that include it| +| --- | --- | +|2.0.9|`R/4.2.2-foss-2022b`| + +### dtplyr + + +|`dtplyr` version|R modules that include it| +| --- | --- | +|1.3.0|`R/4.2.2-foss-2022b`| + +### DTRreg + + +|`DTRreg` version|R modules that include it| +| --- | --- | +|1.7|`R/4.2.2-foss-2022b`| + +### dtw + + +|`dtw` version|R modules that include it| +| --- | --- | +|1.23-1|`R/4.2.2-foss-2022b`| + +### dummies + + +|`dummies` version|R modules that include it| +| --- | --- | +|1.5.6|`R/4.2.2-foss-2022b`| + +### dygraphs + + +|`dygraphs` version|R modules that include it| +| --- | --- | +|1.1.1.6|`R/4.2.2-foss-2022b`| + +### dynamicTreeCut + + +|`dynamicTreeCut` version|R modules that include it| +| --- | --- | +|1.63-1|`R/4.2.2-foss-2022b`| + +### e1071 + + +|`e1071` version|R modules that include it| +| --- | --- | +|1.7-13|`R/4.2.2-foss-2022b`| + +### earth + + +|`earth` version|R modules that include it| +| --- | --- | +|5.3.2|`R/4.2.2-foss-2022b`| + +### EasyABC + + +|`EasyABC` version|R modules that include it| +| --- | --- | +|1.5.2|`R/4.2.2-foss-2022b`| + +### ECOSolveR + + +|`ECOSolveR` version|R modules that include it| +| --- | --- | +|0.5.5|`R/4.2.2-foss-2022b`| + +### elementR + + +|`elementR` version|R modules that include it| +| --- | --- | +|1.3.7|`R/4.2.2-foss-2022b`| + +### ellipse + + +|`ellipse` version|R modules that include it| +| --- | --- | +|0.4.3|`R/4.2.2-foss-2022b`| + +### ellipsis + + +|`ellipsis` version|R modules that include it| +| --- | --- | +|0.3.2|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### elliptic + + +|`elliptic` version|R modules that include it| +| --- | --- | +|1.4-0|`R/4.2.2-foss-2022b`| + +### emdbook + + +|`emdbook` version|R modules that include it| +| --- | --- | +|1.3.12|`R/4.2.2-foss-2022b`| + +### emmeans + + +|`emmeans` version|R modules that include it| +| --- | --- | +|1.8.5|`R/4.2.2-foss-2022b`| + +### emoa + + +|`emoa` version|R modules that include it| +| --- | --- | +|0.5-0.1|`R/4.2.2-foss-2022b`| + +### emulator + + +|`emulator` version|R modules that include it| +| --- | --- | +|1.2-21|`R/4.2.2-foss-2022b`| + +### energy + + +|`energy` version|R modules that include it| +| --- | --- | +|1.7-11|`R/4.2.2-foss-2022b`| + +### ENMeval + + +|`ENMeval` version|R modules that include it| +| --- | --- | +|2.0.4|`R/4.2.2-foss-2022b`| + +### entropy + + +|`entropy` version|R modules that include it| +| --- | --- | +|1.3.1|`R/4.2.2-foss-2022b`| + +### EnvStats + + +|`EnvStats` version|R modules that include it| +| --- | --- | +|2.7.0|`R/4.2.2-foss-2022b`| + +### epitools + + +|`epitools` version|R modules that include it| +| --- | --- | +|0.5-10.1|`R/4.2.2-foss-2022b`| + +### ergm + + +|`ergm` version|R modules that include it| +| --- | --- | +|4.4.0|`R/4.2.2-foss-2022b`| + +### ergm.count + + +|`ergm.count` version|R modules that include it| +| --- | --- | +|4.1.1|`R/4.2.2-foss-2022b`| + +### estimability + + +|`estimability` version|R modules that include it| +| --- | --- | +|1.4.1|`R/4.2.2-foss-2022b`| + +### evaluate + + +|`evaluate` version|R modules that include it| +| --- | --- | +|1.0.5|`R/4.5.1-gfbf-2025a`| +|1.0.1|`R/4.4.2-gfbf-2024a`| +|0.24.0|`R/4.4.1-gfbf-2023b`| +|0.23|`R/4.3.2-gfbf-2023a`| +|0.20|`R/4.2.2-foss-2022b`| + +### EValue + + +|`EValue` version|R modules that include it| +| --- | --- | +|4.1.3|`R/4.2.2-foss-2022b`| + +### evd + + +|`evd` version|R modules that include it| +| --- | --- | +|2.3-6.1|`R/4.2.2-foss-2022b`| + +### Exact + + +|`Exact` version|R modules that include it| +| --- | --- | +|3.2|`R/4.2.2-foss-2022b`| + +### expm + + +|`expm` version|R modules that include it| +| --- | --- | +|0.999-7|`R/4.2.2-foss-2022b`| + +### ExPosition + + +|`ExPosition` version|R modules that include it| +| --- | --- | +|2.8.23|`R/4.2.2-foss-2022b`| + +### expsmooth + + +|`expsmooth` version|R modules that include it| +| --- | --- | +|2.3|`R/4.2.2-foss-2022b`| + +### extrafont + + +|`extrafont` version|R modules that include it| +| --- | --- | +|0.19|`R/4.2.2-foss-2022b`| + +### extrafontdb + + +|`extrafontdb` version|R modules that include it| +| --- | --- | +|1.0|`R/4.2.2-foss-2022b`| + +### extRemes + + +|`extRemes` version|R modules that include it| +| --- | --- | +|2.1-3|`R/4.2.2-foss-2022b`| + +### FactoMineR + + +|`FactoMineR` version|R modules that include it| +| --- | --- | +|2.7|`R/4.2.2-foss-2022b`| + +### FactorCopula + + +|`FactorCopula` version|R modules that include it| +| --- | --- | +|0.9.3|`R/4.2.2-foss-2022b`| + +### fail + + +|`fail` version|R modules that include it| +| --- | --- | +|1.3|`R/4.2.2-foss-2022b`| + +### fansi + + +|`fansi` version|R modules that include it| +| --- | --- | +|1.0.6|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.0.5|`R/4.3.2-gfbf-2023a`| +|1.0.4|`R/4.2.2-foss-2022b`| + +### farver + + +|`farver` version|R modules that include it| +| --- | --- | +|2.1.1|`R/4.2.2-foss-2022b`| + +### fastcluster + + +|`fastcluster` version|R modules that include it| +| --- | --- | +|1.2.3|`R/4.2.2-foss-2022b`| + +### fastDummies + + +|`fastDummies` version|R modules that include it| +| --- | --- | +|1.6.3|`R/4.2.2-foss-2022b`| + +### fasterize + + +|`fasterize` version|R modules that include it| +| --- | --- | +|1.0.4|`R/4.2.2-foss-2022b`| + +### fastICA + + +|`fastICA` version|R modules that include it| +| --- | --- | +|1.2-3|`R/4.2.2-foss-2022b`| + +### fastmap + + +|`fastmap` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.1.1|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### fastmatch + + +|`fastmatch` version|R modules that include it| +| --- | --- | +|1.1-3|`R/4.2.2-foss-2022b`| + +### fdrtool + + +|`fdrtool` version|R modules that include it| +| --- | --- | +|1.2.17|`R/4.2.2-foss-2022b`| + +### feather + + +|`feather` version|R modules that include it| +| --- | --- | +|0.3.5|`R/4.2.2-foss-2022b`| + +### ff + + +|`ff` version|R modules that include it| +| --- | --- | +|4.0.9|`R/4.2.2-foss-2022b`| + +### fftw + + +|`fftw` version|R modules that include it| +| --- | --- | +|1.0-7|`R/4.2.2-foss-2022b`| + +### fftwtools + + +|`fftwtools` version|R modules that include it| +| --- | --- | +|0.9-11|`R/4.2.2-foss-2022b`| + +### fields + + +|`fields` version|R modules that include it| +| --- | --- | +|14.1|`R/4.2.2-foss-2022b`| + +### filehash + + +|`filehash` version|R modules that include it| +| --- | --- | +|2.4-5|`R/4.2.2-foss-2022b`| + +### finalfit + + +|`finalfit` version|R modules that include it| +| --- | --- | +|1.0.6|`R/4.2.2-foss-2022b`| + +### findpython + + +|`findpython` version|R modules that include it| +| --- | --- | +|1.0.8|`R/4.2.2-foss-2022b`| + +### fishMod + + +|`fishMod` version|R modules that include it| +| --- | --- | +|0.29|`R/4.2.2-foss-2022b`| + +### fitdistrplus + + +|`fitdistrplus` version|R modules that include it| +| --- | --- | +|1.1-8|`R/4.2.2-foss-2022b`| + +### FKSUM + + +|`FKSUM` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### flashClust + + +|`flashClust` version|R modules that include it| +| --- | --- | +|1.01-2|`R/4.2.2-foss-2022b`| + +### flexclust + + +|`flexclust` version|R modules that include it| +| --- | --- | +|1.4-1|`R/4.2.2-foss-2022b`| + +### flexmix + + +|`flexmix` version|R modules that include it| +| --- | --- | +|2.3-19|`R/4.2.2-foss-2022b`| + +### flextable + + +|`flextable` version|R modules that include it| +| --- | --- | +|0.9.2|`R/4.2.2-foss-2022b`| + +### fma + + +|`fma` version|R modules that include it| +| --- | --- | +|2.5|`R/4.2.2-foss-2022b`| + +### FME + + +|`FME` version|R modules that include it| +| --- | --- | +|1.3.6.2|`R/4.2.2-foss-2022b`| + +### fmri + + +|`fmri` version|R modules that include it| +| --- | --- | +|1.9.11|`R/4.2.2-foss-2022b`| + +### FNN + + +|`FNN` version|R modules that include it| +| --- | --- | +|1.1.3.1|`R/4.2.2-foss-2022b`| + +### fontawesome + + +|`fontawesome` version|R modules that include it| +| --- | --- | +|0.5.3|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`| +|0.5.2|`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|0.5.0|`R/4.2.2-foss-2022b`| + +### fontBitstreamVera + + +|`fontBitstreamVera` version|R modules that include it| +| --- | --- | +|0.1.1|`R/4.2.2-foss-2022b`| + +### fontLiberation + + +|`fontLiberation` version|R modules that include it| +| --- | --- | +|0.1.0|`R/4.2.2-foss-2022b`| + +### fontquiver + + +|`fontquiver` version|R modules that include it| +| --- | --- | +|0.2.1|`R/4.2.2-foss-2022b`| + +### forcats + + +|`forcats` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### foreach + + +|`foreach` version|R modules that include it| +| --- | --- | +|1.5.2|`R/4.2.2-foss-2022b`| + +### forecast + + +|`forecast` version|R modules that include it| +| --- | --- | +|8.21|`R/4.2.2-foss-2022b`| + +### foreign + + +|`foreign` version|R modules that include it| +| --- | --- | +|0.8-84|`R/4.2.2-foss-2022b`| + +### formatR + + +|`formatR` version|R modules that include it| +| --- | --- | +|1.14|`R/4.2.2-foss-2022b`| + +### Formula + + +|`Formula` version|R modules that include it| +| --- | --- | +|1.2-5|`R/4.2.2-foss-2022b`| + +### formula.tools + + +|`formula.tools` version|R modules that include it| +| --- | --- | +|1.7.1|`R/4.2.2-foss-2022b`| + +### fossil + + +|`fossil` version|R modules that include it| +| --- | --- | +|0.4.0|`R/4.2.2-foss-2022b`| + +### fpc + + +|`fpc` version|R modules that include it| +| --- | --- | +|2.2-10|`R/4.2.2-foss-2022b`| + +### fpp + + +|`fpp` version|R modules that include it| +| --- | --- | +|0.5|`R/4.2.2-foss-2022b`| + +### fracdiff + + +|`fracdiff` version|R modules that include it| +| --- | --- | +|1.5-2|`R/4.2.2-foss-2022b`| + +### fs + + +|`fs` version|R modules that include it| +| --- | --- | +|1.6.6|`R/4.5.1-gfbf-2025a`| +|1.6.5|`R/4.4.2-gfbf-2024a`| +|1.6.4|`R/4.4.1-gfbf-2023b`| +|1.6.3|`R/4.3.2-gfbf-2023a`| +|1.6.1|`R/4.2.2-foss-2022b`| + +### furrr + + +|`furrr` version|R modules that include it| +| --- | --- | +|0.3.1|`R/4.2.2-foss-2022b`| + +### futile.logger + + +|`futile.logger` version|R modules that include it| +| --- | --- | +|1.4.3|`R/4.2.2-foss-2022b`| + +### futile.options + + +|`futile.options` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### future + + +|`future` version|R modules that include it| +| --- | --- | +|1.32.0|`R/4.2.2-foss-2022b`| + +### future.apply + + +|`future.apply` version|R modules that include it| +| --- | --- | +|1.10.0|`R/4.2.2-foss-2022b`| + +### g + + +|`g` version|R modules that include it| +| --- | --- | +|r|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### gam + + +|`gam` version|R modules that include it| +| --- | --- | +|1.22-1|`R/4.2.2-foss-2022b`| + +### gamlss + + +|`gamlss` version|R modules that include it| +| --- | --- | +|5.4-12|`R/4.2.2-foss-2022b`| + +### gamlss.data + + +|`gamlss.data` version|R modules that include it| +| --- | --- | +|6.0-2|`R/4.2.2-foss-2022b`| + +### gamlss.dist + + +|`gamlss.dist` version|R modules that include it| +| --- | --- | +|6.0-5|`R/4.2.2-foss-2022b`| + +### gamlss.tr + + +|`gamlss.tr` version|R modules that include it| +| --- | --- | +|5.1-7|`R/4.2.2-foss-2022b`| + +### gamm4 + + +|`gamm4` version|R modules that include it| +| --- | --- | +|0.2-6|`R/4.2.2-foss-2022b`| + +### gap + + +|`gap` version|R modules that include it| +| --- | --- | +|1.5-1|`R/4.2.2-foss-2022b`| + +### gap.datasets + + +|`gap.datasets` version|R modules that include it| +| --- | --- | +|0.0.5|`R/4.2.2-foss-2022b`| + +### gapfill + + +|`gapfill` version|R modules that include it| +| --- | --- | +|0.9.6-1|`R/4.2.2-foss-2022b`| + +### gargle + + +|`gargle` version|R modules that include it| +| --- | --- | +|1.3.0|`R/4.2.2-foss-2022b`| + +### gaussquad + + +|`gaussquad` version|R modules that include it| +| --- | --- | +|1.0-3|`R/4.2.2-foss-2022b`| + +### gbm + + +|`gbm` version|R modules that include it| +| --- | --- | +|2.1.8.1|`R/4.2.2-foss-2022b`| + +### gbRd + + +|`gbRd` version|R modules that include it| +| --- | --- | +|0.4-11|`R/4.2.2-foss-2022b`| + +### gclus + + +|`gclus` version|R modules that include it| +| --- | --- | +|1.3.2|`R/4.2.2-foss-2022b`| + +### gdalUtilities + + +|`gdalUtilities` version|R modules that include it| +| --- | --- | +|1.2.5|`R/4.2.2-foss-2022b`| + +### gdalUtils + + +|`gdalUtils` version|R modules that include it| +| --- | --- | +|2.0.3.2|`R/4.2.2-foss-2022b`| + +### gdata + + +|`gdata` version|R modules that include it| +| --- | --- | +|2.18.0.1|`R/4.2.2-foss-2022b`| + +### gdistance + + +|`gdistance` version|R modules that include it| +| --- | --- | +|1.6|`R/4.2.2-foss-2022b`| + +### gdtools + + +|`gdtools` version|R modules that include it| +| --- | --- | +|0.3.3|`R/4.2.2-foss-2022b`| + +### gee + + +|`gee` version|R modules that include it| +| --- | --- | +|4.13-25|`R/4.2.2-foss-2022b`| + +### geeM + + +|`geeM` version|R modules that include it| +| --- | --- | +|0.10.1|`R/4.2.2-foss-2022b`| + +### geepack + + +|`geepack` version|R modules that include it| +| --- | --- | +|1.3.9|`R/4.2.2-foss-2022b`| + +### geex + + +|`geex` version|R modules that include it| +| --- | --- | +|1.1.1|`R/4.2.2-foss-2022b`| + +### geiger + + +|`geiger` version|R modules that include it| +| --- | --- | +|2.0.10|`R/4.2.2-foss-2022b`| + +### GeneNet + + +|`GeneNet` version|R modules that include it| +| --- | --- | +|1.2.16|`R/4.2.2-foss-2022b`| + +### generics + + +|`generics` version|R modules that include it| +| --- | --- | +|0.1.3|`R/4.2.2-foss-2022b`| + +### genoPlotR + + +|`genoPlotR` version|R modules that include it| +| --- | --- | +|0.8.11|`R/4.2.2-foss-2022b`| + +### GenSA + + +|`GenSA` version|R modules that include it| +| --- | --- | +|1.1.8|`R/4.2.2-foss-2022b`| + +### geojson + + +|`geojson` version|R modules that include it| +| --- | --- | +|0.3.5|`R/4.2.2-foss-2022b`| + +### geojsonio + + +|`geojsonio` version|R modules that include it| +| --- | --- | +|0.11.3|`R/4.2.2-foss-2022b`| + +### geojsonsf + + +|`geojsonsf` version|R modules that include it| +| --- | --- | +|2.0.3|`R/4.2.2-foss-2022b`| + +### geometries + + +|`geometries` version|R modules that include it| +| --- | --- | +|0.2.2|`R/4.2.2-foss-2022b`| + +### geometry + + +|`geometry` version|R modules that include it| +| --- | --- | +|0.4.7|`R/4.2.2-foss-2022b`| + +### gert + + +|`gert` version|R modules that include it| +| --- | --- | +|2.1.5|`R/4.5.1-gfbf-2025a`| +|2.1.4|`R/4.4.2-gfbf-2024a`| +|2.0.1|`R/4.4.1-gfbf-2023b`| +|2.0.0|`R/4.3.2-gfbf-2023a`| +|1.9.2|`R/4.2.2-foss-2022b`| + +### getopt + + +|`getopt` version|R modules that include it| +| --- | --- | +|1.20.3|`R/4.2.2-foss-2022b`| + +### GetoptLong + + +|`GetoptLong` version|R modules that include it| +| --- | --- | +|1.0.5|`R/4.2.2-foss-2022b`| + +### gfonts + + +|`gfonts` version|R modules that include it| +| --- | --- | +|0.2.0|`R/4.2.2-foss-2022b`| + +### GGally + + +|`GGally` version|R modules that include it| +| --- | --- | +|2.1.2|`R/4.2.2-foss-2022b`| + +### ggbeeswarm + + +|`ggbeeswarm` version|R modules that include it| +| --- | --- | +|0.7.1|`R/4.2.2-foss-2022b`| + +### ggdag + + +|`ggdag` version|R modules that include it| +| --- | --- | +|0.2.7|`R/4.2.2-foss-2022b`| + +### ggExtra + + +|`ggExtra` version|R modules that include it| +| --- | --- | +|0.10.0|`R/4.2.2-foss-2022b`| + +### ggfan + + +|`ggfan` version|R modules that include it| +| --- | --- | +|0.1.3|`R/4.2.2-foss-2022b`| + +### ggforce + + +|`ggforce` version|R modules that include it| +| --- | --- | +|0.4.1|`R/4.2.2-foss-2022b`| + +### ggformula + + +|`ggformula` version|R modules that include it| +| --- | --- | +|0.10.2|`R/4.2.2-foss-2022b`| + +### ggfun + + +|`ggfun` version|R modules that include it| +| --- | --- | +|0.0.9|`R/4.2.2-foss-2022b`| + +### ggh4x + + +|`ggh4x` version|R modules that include it| +| --- | --- | +|0.2.3|`R/4.2.2-foss-2022b`| + +### ggnetwork + + +|`ggnetwork` version|R modules that include it| +| --- | --- | +|0.5.12|`R/4.2.2-foss-2022b`| + +### ggplot2 + + +|`ggplot2` version|R modules that include it| +| --- | --- | +|3.4.1|`R/4.2.2-foss-2022b`| + +### ggplotify + + +|`ggplotify` version|R modules that include it| +| --- | --- | +|0.1.0|`R/4.2.2-foss-2022b`| + +### ggpubr + + +|`ggpubr` version|R modules that include it| +| --- | --- | +|0.6.0|`R/4.2.2-foss-2022b`| + +### ggraph + + +|`ggraph` version|R modules that include it| +| --- | --- | +|2.1.0|`R/4.2.2-foss-2022b`| + +### ggrepel + + +|`ggrepel` version|R modules that include it| +| --- | --- | +|0.9.3|`R/4.2.2-foss-2022b`| + +### ggridges + + +|`ggridges` version|R modules that include it| +| --- | --- | +|0.5.4|`R/4.2.2-foss-2022b`| + +### ggsci + + +|`ggsci` version|R modules that include it| +| --- | --- | +|3.0.0|`R/4.2.2-foss-2022b`| + +### ggsignif + + +|`ggsignif` version|R modules that include it| +| --- | --- | +|0.6.4|`R/4.2.2-foss-2022b`| + +### ggstance + + +|`ggstance` version|R modules that include it| +| --- | --- | +|0.3.6|`R/4.2.2-foss-2022b`| + +### ggvenn + + +|`ggvenn` version|R modules that include it| +| --- | --- | +|0.1.9|`R/4.2.2-foss-2022b`| + +### ggvis + + +|`ggvis` version|R modules that include it| +| --- | --- | +|0.4.8|`R/4.2.2-foss-2022b`| + +### gh + + +|`gh` version|R modules that include it| +| --- | --- | +|1.5.0|`R/4.5.1-gfbf-2025a`| +|1.4.1|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.4.0|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### GillespieSSA + + +|`GillespieSSA` version|R modules that include it| +| --- | --- | +|0.6.2|`R/4.2.2-foss-2022b`| + +### git2r + + +|`git2r` version|R modules that include it| +| --- | --- | +|0.31.0|`R/4.2.2-foss-2022b`| + +### gitcreds + + +|`gitcreds` version|R modules that include it| +| --- | --- | +|0.1.2|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### GJRM + + +|`GJRM` version|R modules that include it| +| --- | --- | +|0.2-6.1|`R/4.2.2-foss-2022b`| + +### glasso + + +|`glasso` version|R modules that include it| +| --- | --- | +|1.11|`R/4.2.2-foss-2022b`| + +### gld + + +|`gld` version|R modules that include it| +| --- | --- | +|2.6.6|`R/4.2.2-foss-2022b`| + +### gllvm + + +|`gllvm` version|R modules that include it| +| --- | --- | +|1.4.1|`R/4.2.2-foss-2022b`| + +### glmmML + + +|`glmmML` version|R modules that include it| +| --- | --- | +|1.1.4|`R/4.2.2-foss-2022b`| + +### glmmTMB + + +|`glmmTMB` version|R modules that include it| +| --- | --- | +|1.1.5|`R/4.2.2-foss-2022b`| + +### glmnet + + +|`glmnet` version|R modules that include it| +| --- | --- | +|4.1-6|`R/4.2.2-foss-2022b`| + +### GlobalOptions + + +|`GlobalOptions` version|R modules that include it| +| --- | --- | +|0.1.2|`R/4.2.2-foss-2022b`| + +### globals + + +|`globals` version|R modules that include it| +| --- | --- | +|0.16.2|`R/4.2.2-foss-2022b`| + +### glue + + +|`glue` version|R modules that include it| +| --- | --- | +|1.8.0|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`| +|1.7.0|`R/4.4.1-gfbf-2023b`| +|1.6.2|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### gmm + + +|`gmm` version|R modules that include it| +| --- | --- | +|1.7|`R/4.2.2-foss-2022b`| + +### gmodels + + +|`gmodels` version|R modules that include it| +| --- | --- | +|2.18.1.1|`R/4.2.2-foss-2022b`| + +### gmp + + +|`gmp` version|R modules that include it| +| --- | --- | +|0.7-1|`R/4.2.2-foss-2022b`| + +### gnumeric + + +|`gnumeric` version|R modules that include it| +| --- | --- | +|0.7-8|`R/4.2.2-foss-2022b`| + +### goftest + + +|`goftest` version|R modules that include it| +| --- | --- | +|1.2-3|`R/4.2.2-foss-2022b`| + +### gomms + + +|`gomms` version|R modules that include it| +| --- | --- | +|1.0|`R/4.2.2-foss-2022b`| + +### googledrive + + +|`googledrive` version|R modules that include it| +| --- | --- | +|2.0.0|`R/4.2.2-foss-2022b`| + +### googlesheets4 + + +|`googlesheets4` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### gower + + +|`gower` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### GPArotation + + +|`GPArotation` version|R modules that include it| +| --- | --- | +|2022.10-2|`R/4.2.2-foss-2022b`| + +### gplots + + +|`gplots` version|R modules that include it| +| --- | --- | +|3.1.3|`R/4.2.2-foss-2022b`| + +### graphlayouts + + +|`graphlayouts` version|R modules that include it| +| --- | --- | +|0.8.4|`R/4.2.2-foss-2022b`| + +### grf + + +|`grf` version|R modules that include it| +| --- | --- | +|2.2.1|`R/4.2.2-foss-2022b`| + +### gridBase + + +|`gridBase` version|R modules that include it| +| --- | --- | +|0.4-7|`R/4.2.2-foss-2022b`| + +### gridExtra + + +|`gridExtra` version|R modules that include it| +| --- | --- | +|2.3|`R/4.2.2-foss-2022b`| + +### gridGraphics + + +|`gridGraphics` version|R modules that include it| +| --- | --- | +|0.5-1|`R/4.2.2-foss-2022b`| + +### grImport2 + + +|`grImport2` version|R modules that include it| +| --- | --- | +|0.2-0|`R/4.2.2-foss-2022b`| + +### grpreg + + +|`grpreg` version|R modules that include it| +| --- | --- | +|3.4.0|`R/4.2.2-foss-2022b`| + +### GSA + + +|`GSA` version|R modules that include it| +| --- | --- | +|1.03.2|`R/4.2.2-foss-2022b`| + +### gsalib + + +|`gsalib` version|R modules that include it| +| --- | --- | +|2.2.1|`R/4.2.2-foss-2022b`| + +### gsl + + +|`gsl` version|R modules that include it| +| --- | --- | +|2.1-8|`R/4.2.2-foss-2022b`| + +### gsw + + +|`gsw` version|R modules that include it| +| --- | --- | +|1.1-1|`R/4.2.2-foss-2022b`| + +### gt + + +|`gt` version|R modules that include it| +| --- | --- | +|0.8.0|`R/4.2.2-foss-2022b`| + +### gtable + + +|`gtable` version|R modules that include it| +| --- | --- | +|0.3.1|`R/4.2.2-foss-2022b`| + +### gtools + + +|`gtools` version|R modules that include it| +| --- | --- | +|3.9.4|`R/4.2.2-foss-2022b`| + +### gtsummary + + +|`gtsummary` version|R modules that include it| +| --- | --- | +|1.7.0|`R/4.2.2-foss-2022b`| + +### GUTS + + +|`GUTS` version|R modules that include it| +| --- | --- | +|1.2.3|`R/4.2.2-foss-2022b`| + +### gWidgets2 + + +|`gWidgets2` version|R modules that include it| +| --- | --- | +|1.0-9|`R/4.2.2-foss-2022b`| + +### gWidgets2tcltk + + +|`gWidgets2tcltk` version|R modules that include it| +| --- | --- | +|1.0-8|`R/4.2.2-foss-2022b`| + +### GxEScanR + + +|`GxEScanR` version|R modules that include it| +| --- | --- | +|2.0.2|`R/4.2.2-foss-2022b`| + +### h2o + + +|`h2o` version|R modules that include it| +| --- | --- | +|3.40.0.1|`R/4.2.2-foss-2022b`| + +### hal9001 + + +|`hal9001` version|R modules that include it| +| --- | --- | +|0.4.3|`R/4.2.2-foss-2022b`| + +### haldensify + + +|`haldensify` version|R modules that include it| +| --- | --- | +|0.2.3|`R/4.2.2-foss-2022b`| + +### hardhat + + +|`hardhat` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### harmony + + +|`harmony` version|R modules that include it| +| --- | --- | +|0.1.1|`R/4.2.2-foss-2022b`| + +### hash + + +|`hash` version|R modules that include it| +| --- | --- | +|2.2.6.2|`R/4.2.2-foss-2022b`| + +### haven + + +|`haven` version|R modules that include it| +| --- | --- | +|2.5.2|`R/4.2.2-foss-2022b`| + +### hdf5r + + +|`hdf5r` version|R modules that include it| +| --- | --- | +|1.3.8|`R/4.2.2-foss-2022b`| + +### hdm + + +|`hdm` version|R modules that include it| +| --- | --- | +|0.3.1|`R/4.2.2-foss-2022b`| + +### heatmap3 + + +|`heatmap3` version|R modules that include it| +| --- | --- | +|1.1.9|`R/4.2.2-foss-2022b`| + +### here + + +|`here` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### hexbin + + +|`hexbin` version|R modules that include it| +| --- | --- | +|1.28.2|`R/4.2.2-foss-2022b`| + +### HGNChelper + + +|`HGNChelper` version|R modules that include it| +| --- | --- | +|0.8.1|`R/4.2.2-foss-2022b`| + +### HiddenMarkov + + +|`HiddenMarkov` version|R modules that include it| +| --- | --- | +|1.8-13|`R/4.2.2-foss-2022b`| + +### highr + + +|`highr` version|R modules that include it| +| --- | --- | +|0.11|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|0.10|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### Hmisc + + +|`Hmisc` version|R modules that include it| +| --- | --- | +|5.0-1|`R/4.2.2-foss-2022b`| + +### hms + + +|`hms` version|R modules that include it| +| --- | --- | +|1.1.2|`R/4.2.2-foss-2022b`| + +### Hmsc + + +|`Hmsc` version|R modules that include it| +| --- | --- | +|3.0-13|`R/4.2.2-foss-2022b`| + +### htmlTable + + +|`htmlTable` version|R modules that include it| +| --- | --- | +|2.4.1|`R/4.2.2-foss-2022b`| + +### htmltools + + +|`htmltools` version|R modules that include it| +| --- | --- | +|0.5.8.1|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|0.5.7|`R/4.3.2-gfbf-2023a`| +|0.5.4|`R/4.2.2-foss-2022b`| + +### htmlwidgets + + +|`htmlwidgets` version|R modules that include it| +| --- | --- | +|1.6.4|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.6.2|`R/4.3.2-gfbf-2023a`| +|1.6.1|`R/4.2.2-foss-2022b`| + +### httpcode + + +|`httpcode` version|R modules that include it| +| --- | --- | +|0.3.0|`R/4.2.2-foss-2022b`| + +### httpuv + + +|`httpuv` version|R modules that include it| +| --- | --- | +|1.6.16|`R/4.5.1-gfbf-2025a`| +|1.6.15|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.6.12|`R/4.3.2-gfbf-2023a`| +|1.6.9|`R/4.2.2-foss-2022b`| + +### httr + + +|`httr` version|R modules that include it| +| --- | --- | +|1.4.7|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|1.4.5|`R/4.2.2-foss-2022b`| + +### httr2 + + +|`httr2` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.5.1-gfbf-2025a`| +|1.0.6|`R/4.4.2-gfbf-2024a`| +|1.0.1|`R/4.4.1-gfbf-2023b`| +|0.2.3|`R/4.3.2-gfbf-2023a`| +|0.2.2|`R/4.2.2-foss-2022b`| + +### huge + + +|`huge` version|R modules that include it| +| --- | --- | +|1.3.5|`R/4.2.2-foss-2022b`| + +### hunspell + + +|`hunspell` version|R modules that include it| +| --- | --- | +|3.0.2|`R/4.2.2-foss-2022b`| + +### hwriter + + +|`hwriter` version|R modules that include it| +| --- | --- | +|1.3.2.1|`R/4.2.2-foss-2022b`| + +### HWxtest + + +|`HWxtest` version|R modules that include it| +| --- | --- | +|1.1.9|`R/4.2.2-foss-2022b`| + +### hypergeo + + +|`hypergeo` version|R modules that include it| +| --- | --- | +|1.2-13|`R/4.2.2-foss-2022b`| + +### ica + + +|`ica` version|R modules that include it| +| --- | --- | +|1.0-3|`R/4.2.2-foss-2022b`| + +### IDPmisc + + +|`IDPmisc` version|R modules that include it| +| --- | --- | +|1.1.20|`R/4.2.2-foss-2022b`| + +### idr + + +|`idr` version|R modules that include it| +| --- | --- | +|1.3|`R/4.2.2-foss-2022b`| + +### ids + + +|`ids` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### ie2misc + + +|`ie2misc` version|R modules that include it| +| --- | --- | +|0.9.0|`R/4.2.2-foss-2022b`| + +### igraph + + +|`igraph` version|R modules that include it| +| --- | --- | +|1.4.1|`R/4.2.2-foss-2022b`| + +### image.binarization + + +|`image.binarization` version|R modules that include it| +| --- | --- | +|0.1.3|`R/4.2.2-foss-2022b`| + +### imager + + +|`imager` version|R modules that include it| +| --- | --- | +|0.42.18|`R/4.2.2-foss-2022b`| + +### imagerExtra + + +|`imagerExtra` version|R modules that include it| +| --- | --- | +|1.3.2|`R/4.2.2-foss-2022b`| + +### ineq + + +|`ineq` version|R modules that include it| +| --- | --- | +|0.2-13|`R/4.2.2-foss-2022b`| + +### influenceR + + +|`influenceR` version|R modules that include it| +| --- | --- | +|0.1.0.1|`R/4.2.2-foss-2022b`| + +### infotheo + + +|`infotheo` version|R modules that include it| +| --- | --- | +|1.2.0.1|`R/4.2.2-foss-2022b`| + +### ini + + +|`ini` version|R modules that include it| +| --- | --- | +|0.3.1|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### inline + + +|`inline` version|R modules that include it| +| --- | --- | +|0.3.19|`R/4.2.2-foss-2022b`| + +### intergraph + + +|`intergraph` version|R modules that include it| +| --- | --- | +|2.0-2|`R/4.2.2-foss-2022b`| + +### interp + + +|`interp` version|R modules that include it| +| --- | --- | +|1.1-3|`R/4.2.2-foss-2022b`| + +### interpretR + + +|`interpretR` version|R modules that include it| +| --- | --- | +|0.2.4|`R/4.2.2-foss-2022b`| + +### intrinsicDimension + + +|`intrinsicDimension` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### inum + + +|`inum` version|R modules that include it| +| --- | --- | +|1.0-5|`R/4.2.2-foss-2022b`| + +### ipred + + +|`ipred` version|R modules that include it| +| --- | --- | +|0.9-14|`R/4.2.2-foss-2022b`| + +### irace + + +|`irace` version|R modules that include it| +| --- | --- | +|3.5|`R/4.2.2-foss-2022b`| + +### irlba + + +|`irlba` version|R modules that include it| +| --- | --- | +|2.3.5.1|`R/4.2.2-foss-2022b`| + +### ismev + + +|`ismev` version|R modules that include it| +| --- | --- | +|1.42|`R/4.2.2-foss-2022b`| + +### Iso + + +|`Iso` version|R modules that include it| +| --- | --- | +|0.0-18.1|`R/4.2.2-foss-2022b`| + +### isoband + + +|`isoband` version|R modules that include it| +| --- | --- | +|0.2.7|`R/4.2.2-foss-2022b`| + +### ISOcodes + + +|`ISOcodes` version|R modules that include it| +| --- | --- | +|2022.09.29|`R/4.2.2-foss-2022b`| + +### ISOweek + + +|`ISOweek` version|R modules that include it| +| --- | --- | +|0.6-2|`R/4.2.2-foss-2022b`| + +### iterators + + +|`iterators` version|R modules that include it| +| --- | --- | +|1.0.14|`R/4.2.2-foss-2022b`| + +### itertools + + +|`itertools` version|R modules that include it| +| --- | --- | +|0.1-3|`R/4.2.2-foss-2022b`| + +### JADE + + +|`JADE` version|R modules that include it| +| --- | --- | +|2.0-3|`R/4.2.2-foss-2022b`| + +### janeaustenr + + +|`janeaustenr` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### JBTools + + +|`JBTools` version|R modules that include it| +| --- | --- | +|0.7.2.9|`R/4.2.2-foss-2022b`| + +### jiebaR + + +|`jiebaR` version|R modules that include it| +| --- | --- | +|0.11|`R/4.2.2-foss-2022b`| + +### jiebaRD + + +|`jiebaRD` version|R modules that include it| +| --- | --- | +|0.1|`R/4.2.2-foss-2022b`| + +### jomo + + +|`jomo` version|R modules that include it| +| --- | --- | +|2.7-4|`R/4.2.2-foss-2022b`| + +### jpeg + + +|`jpeg` version|R modules that include it| +| --- | --- | +|0.1-10|`R/4.2.2-foss-2022b`| + +### jqr + + +|`jqr` version|R modules that include it| +| --- | --- | +|1.3.1|`R/4.2.2-foss-2022b`| + +### jquerylib + + +|`jquerylib` version|R modules that include it| +| --- | --- | +|0.1.4|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### jsonify + + +|`jsonify` version|R modules that include it| +| --- | --- | +|1.2.2|`R/4.2.2-foss-2022b`| + +### jsonlite + + +|`jsonlite` version|R modules that include it| +| --- | --- | +|2.0.0|`R/4.5.1-gfbf-2025a`| +|1.8.9|`R/4.4.2-gfbf-2024a`| +|1.8.8|`R/4.4.1-gfbf-2023b`| +|1.8.7|`R/4.3.2-gfbf-2023a`| +|1.8.4|`R/4.2.2-foss-2022b`| + +### jstable + + +|`jstable` version|R modules that include it| +| --- | --- | +|1.0.7|`R/4.2.2-foss-2022b`| + +### juicyjuice + + +|`juicyjuice` version|R modules that include it| +| --- | --- | +|0.1.0|`R/4.2.2-foss-2022b`| + +### kde1d + + +|`kde1d` version|R modules that include it| +| --- | --- | +|1.0.5|`R/4.2.2-foss-2022b`| + +### kedd + + +|`kedd` version|R modules that include it| +| --- | --- | +|1.0.3|`R/4.2.2-foss-2022b`| + +### kernlab + + +|`kernlab` version|R modules that include it| +| --- | --- | +|0.9-32|`R/4.2.2-foss-2022b`| + +### KernSmooth + + +|`KernSmooth` version|R modules that include it| +| --- | --- | +|2.23-20|`R/4.2.2-foss-2022b`| + +### kinship2 + + +|`kinship2` version|R modules that include it| +| --- | --- | +|1.9.6|`R/4.2.2-foss-2022b`| + +### klaR + + +|`klaR` version|R modules that include it| +| --- | --- | +|1.7-1|`R/4.2.2-foss-2022b`| + +### knitr + + +|`knitr` version|R modules that include it| +| --- | --- | +|1.50|`R/4.5.1-gfbf-2025a`| +|1.49|`R/4.4.2-gfbf-2024a`| +|1.47|`R/4.4.1-gfbf-2023b`| +|1.45|`R/4.3.2-gfbf-2023a`| +|1.42|`R/4.2.2-foss-2022b`| + +### KODAMA + + +|`KODAMA` version|R modules that include it| +| --- | --- | +|2.4|`R/4.2.2-foss-2022b`| + +### kohonen + + +|`kohonen` version|R modules that include it| +| --- | --- | +|3.0.11|`R/4.2.2-foss-2022b`| + +### ks + + +|`ks` version|R modules that include it| +| --- | --- | +|1.14.0|`R/4.2.2-foss-2022b`| + +### labdsv + + +|`labdsv` version|R modules that include it| +| --- | --- | +|2.0-1|`R/4.2.2-foss-2022b`| + +### labeling + + +|`labeling` version|R modules that include it| +| --- | --- | +|0.4.2|`R/4.2.2-foss-2022b`| + +### labelled + + +|`labelled` version|R modules that include it| +| --- | --- | +|2.10.0|`R/4.2.2-foss-2022b`| + +### laeken + + +|`laeken` version|R modules that include it| +| --- | --- | +|0.5.2|`R/4.2.2-foss-2022b`| + +### lambda.r + + +|`lambda.r` version|R modules that include it| +| --- | --- | +|1.2.4|`R/4.2.2-foss-2022b`| + +### LaplacesDemon + + +|`LaplacesDemon` version|R modules that include it| +| --- | --- | +|16.1.6|`R/4.2.2-foss-2022b`| + +### lars + + +|`lars` version|R modules that include it| +| --- | --- | +|1.3|`R/4.2.2-foss-2022b`| + +### lassosum + + +|`lassosum` version|R modules that include it| +| --- | --- | +|0.4.5|`R/4.2.2-foss-2022b`| + +### later + + +|`later` version|R modules that include it| +| --- | --- | +|1.4.4|`R/4.5.1-gfbf-2025a`| +|1.3.2|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.3.1|`R/4.3.2-gfbf-2023a`| +|1.3.0|`R/4.2.2-foss-2022b`| + +### lattice + + +|`lattice` version|R modules that include it| +| --- | --- | +|0.20-45|`R/4.2.2-foss-2022b`| + +### latticeExtra + + +|`latticeExtra` version|R modules that include it| +| --- | --- | +|0.6-30|`R/4.2.2-foss-2022b`| + +### lava + + +|`lava` version|R modules that include it| +| --- | --- | +|1.7.2.1|`R/4.2.2-foss-2022b`| + +### lavaan + + +|`lavaan` version|R modules that include it| +| --- | --- | +|0.6-15|`R/4.2.2-foss-2022b`| + +### lazy + + +|`lazy` version|R modules that include it| +| --- | --- | +|1.2-18|`R/4.2.2-foss-2022b`| + +### lazyeval + + +|`lazyeval` version|R modules that include it| +| --- | --- | +|0.2.2|`R/4.2.2-foss-2022b`| + +### LCFdata + + +|`LCFdata` version|R modules that include it| +| --- | --- | +|2.0|`R/4.2.2-foss-2022b`| + +### lda + + +|`lda` version|R modules that include it| +| --- | --- | +|1.4.2|`R/4.2.2-foss-2022b`| + +### ldbounds + + +|`ldbounds` version|R modules that include it| +| --- | --- | +|2.0.0|`R/4.2.2-foss-2022b`| + +### leafem + + +|`leafem` version|R modules that include it| +| --- | --- | +|0.2.0|`R/4.2.2-foss-2022b`| + +### leaflet + + +|`leaflet` version|R modules that include it| +| --- | --- | +|2.1.2|`R/4.2.2-foss-2022b`| + +### leaflet.providers + + +|`leaflet.providers` version|R modules that include it| +| --- | --- | +|1.9.0|`R/4.2.2-foss-2022b`| + +### leafsync + + +|`leafsync` version|R modules that include it| +| --- | --- | +|0.1.0|`R/4.2.2-foss-2022b`| + +### leaps + + +|`leaps` version|R modules that include it| +| --- | --- | +|3.1|`R/4.2.2-foss-2022b`| + +### LearnBayes + + +|`LearnBayes` version|R modules that include it| +| --- | --- | +|2.15.1|`R/4.2.2-foss-2022b`| + +### leiden + + +|`leiden` version|R modules that include it| +| --- | --- | +|0.4.3|`R/4.2.2-foss-2022b`| + +### lhs + + +|`lhs` version|R modules that include it| +| --- | --- | +|1.1.6|`R/4.2.2-foss-2022b`| + +### libcoin + + +|`libcoin` version|R modules that include it| +| --- | --- | +|1.0-9|`R/4.2.2-foss-2022b`| + +### lifecycle + + +|`lifecycle` version|R modules that include it| +| --- | --- | +|1.0.4|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.0.3|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### limSolve + + +|`limSolve` version|R modules that include it| +| --- | --- | +|1.5.6|`R/4.2.2-foss-2022b`| + +### linkcomm + + +|`linkcomm` version|R modules that include it| +| --- | --- | +|1.0-14|`R/4.2.2-foss-2022b`| + +### linprog + + +|`linprog` version|R modules that include it| +| --- | --- | +|0.9-4|`R/4.2.2-foss-2022b`| + +### liquidSVM + + +|`liquidSVM` version|R modules that include it| +| --- | --- | +|1.2.4|`R/4.2.2-foss-2022b`| + +### listenv + + +|`listenv` version|R modules that include it| +| --- | --- | +|0.9.0|`R/4.2.2-foss-2022b`| + +### lme4 + + +|`lme4` version|R modules that include it| +| --- | --- | +|1.1-32|`R/4.2.2-foss-2022b`| + +### LMERConvenienceFunctions + + +|`LMERConvenienceFunctions` version|R modules that include it| +| --- | --- | +|3.0|`R/4.2.2-foss-2022b`| + +### lmerTest + + +|`lmerTest` version|R modules that include it| +| --- | --- | +|3.1-3|`R/4.2.2-foss-2022b`| + +### lmom + + +|`lmom` version|R modules that include it| +| --- | --- | +|2.9|`R/4.2.2-foss-2022b`| + +### Lmoments + + +|`Lmoments` version|R modules that include it| +| --- | --- | +|1.3-1|`R/4.2.2-foss-2022b`| + +### lmtest + + +|`lmtest` version|R modules that include it| +| --- | --- | +|0.9-40|`R/4.2.2-foss-2022b`| + +### lobstr + + +|`lobstr` version|R modules that include it| +| --- | --- | +|1.1.2|`R/4.2.2-foss-2022b`| + +### locfdr + + +|`locfdr` version|R modules that include it| +| --- | --- | +|1.1-8|`R/4.2.2-foss-2022b`| + +### locfit + + +|`locfit` version|R modules that include it| +| --- | --- | +|1.5-9.7|`R/4.2.2-foss-2022b`| + +### logcondens + + +|`logcondens` version|R modules that include it| +| --- | --- | +|2.1.7|`R/4.2.2-foss-2022b`| + +### logger + + +|`logger` version|R modules that include it| +| --- | --- | +|0.2.2|`R/4.2.2-foss-2022b`| + +### logistf + + +|`logistf` version|R modules that include it| +| --- | --- | +|1.24.1|`R/4.2.2-foss-2022b`| + +### logspline + + +|`logspline` version|R modules that include it| +| --- | --- | +|2.1.19|`R/4.2.2-foss-2022b`| + +### longitudinal + + +|`longitudinal` version|R modules that include it| +| --- | --- | +|1.1.13|`R/4.2.2-foss-2022b`| + +### longmemo + + +|`longmemo` version|R modules that include it| +| --- | --- | +|1.1-2|`R/4.2.2-foss-2022b`| + +### loo + + +|`loo` version|R modules that include it| +| --- | --- | +|2.5.1|`R/4.2.2-foss-2022b`| + +### lpSolve + + +|`lpSolve` version|R modules that include it| +| --- | --- | +|5.6.18|`R/4.2.2-foss-2022b`| + +### lpSolveAPI + + +|`lpSolveAPI` version|R modules that include it| +| --- | --- | +|5.5.2.0-17.9|`R/4.2.2-foss-2022b`| + +### lqa + + +|`lqa` version|R modules that include it| +| --- | --- | +|1.0-3|`R/4.2.2-foss-2022b`| + +### lsei + + +|`lsei` version|R modules that include it| +| --- | --- | +|1.3-0|`R/4.2.2-foss-2022b`| + +### lslx + + +|`lslx` version|R modules that include it| +| --- | --- | +|0.6.11|`R/4.2.2-foss-2022b`| + +### lubridate + + +|`lubridate` version|R modules that include it| +| --- | --- | +|1.9.2|`R/4.2.2-foss-2022b`| + +### lwgeom + + +|`lwgeom` version|R modules that include it| +| --- | --- | +|0.2-11|`R/4.2.2-foss-2022b`| + +### m + + +|`m` version|R modules that include it| +| --- | --- | +|e|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### magic + + +|`magic` version|R modules that include it| +| --- | --- | +|1.6-1|`R/4.2.2-foss-2022b`| + +### magick + + +|`magick` version|R modules that include it| +| --- | --- | +|2.7.4|`R/4.2.2-foss-2022b`| + +### magrittr + + +|`magrittr` version|R modules that include it| +| --- | --- | +|2.0.4|`R/4.5.1-gfbf-2025a`| +|2.0.3|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### MALDIquant + + +|`MALDIquant` version|R modules that include it| +| --- | --- | +|1.22|`R/4.2.2-foss-2022b`| + +### manipulateWidget + + +|`manipulateWidget` version|R modules that include it| +| --- | --- | +|0.11.1|`R/4.2.2-foss-2022b`| + +### mapproj + + +|`mapproj` version|R modules that include it| +| --- | --- | +|1.2.11|`R/4.2.2-foss-2022b`| + +### maps + + +|`maps` version|R modules that include it| +| --- | --- | +|3.4.1|`R/4.2.2-foss-2022b`| + +### maptools + + +|`maptools` version|R modules that include it| +| --- | --- | +|1.1-6|`R/4.2.2-foss-2022b`| + +### markdown + + +|`markdown` version|R modules that include it| +| --- | --- | +|1.5|`R/4.2.2-foss-2022b`| + +### MASS + + +|`MASS` version|R modules that include it| +| --- | --- | +|7.3-58.3|`R/4.2.2-foss-2022b`| + +### Matching + + +|`Matching` version|R modules that include it| +| --- | --- | +|4.10-8|`R/4.2.2-foss-2022b`| + +### MatchIt + + +|`MatchIt` version|R modules that include it| +| --- | --- | +|4.5.1|`R/4.2.2-foss-2022b`| + +### mathjaxr + + +|`mathjaxr` version|R modules that include it| +| --- | --- | +|1.6-0|`R/4.2.2-foss-2022b`| + +### matlab + + +|`matlab` version|R modules that include it| +| --- | --- | +|1.0.4|`R/4.2.2-foss-2022b`| + +### Matrix + + +|`Matrix` version|R modules that include it| +| --- | --- | +|1.5-3|`R/4.2.2-foss-2022b`| + +### matrixcalc + + +|`matrixcalc` version|R modules that include it| +| --- | --- | +|1.0-6|`R/4.2.2-foss-2022b`| + +### MatrixModels + + +|`MatrixModels` version|R modules that include it| +| --- | --- | +|0.5-1|`R/4.2.2-foss-2022b`| + +### matrixStats + + +|`matrixStats` version|R modules that include it| +| --- | --- | +|0.63.0|`R/4.2.2-foss-2022b`| + +### maxLik + + +|`maxLik` version|R modules that include it| +| --- | --- | +|1.5-2|`R/4.2.2-foss-2022b`| + +### maxlike + + +|`maxlike` version|R modules that include it| +| --- | --- | +|0.1-9|`R/4.2.2-foss-2022b`| + +### maxnet + + +|`maxnet` version|R modules that include it| +| --- | --- | +|0.1.4|`R/4.2.2-foss-2022b`| + +### mboost + + +|`mboost` version|R modules that include it| +| --- | --- | +|2.9-7|`R/4.2.2-foss-2022b`| + +### mclogit + + +|`mclogit` version|R modules that include it| +| --- | --- | +|0.9.6|`R/4.2.2-foss-2022b`| + +### mclust + + +|`mclust` version|R modules that include it| +| --- | --- | +|6.0.0|`R/4.2.2-foss-2022b`| + +### mcmc + + +|`mcmc` version|R modules that include it| +| --- | --- | +|0.9-7|`R/4.2.2-foss-2022b`| + +### MCMCpack + + +|`MCMCpack` version|R modules that include it| +| --- | --- | +|1.6-3|`R/4.2.2-foss-2022b`| + +### mcmcse + + +|`mcmcse` version|R modules that include it| +| --- | --- | +|1.5-0|`R/4.2.2-foss-2022b`| + +### mda + + +|`mda` version|R modules that include it| +| --- | --- | +|0.5-3|`R/4.2.2-foss-2022b`| + +### medflex + + +|`medflex` version|R modules that include it| +| --- | --- | +|0.6-7|`R/4.2.2-foss-2022b`| + +### mediation + + +|`mediation` version|R modules that include it| +| --- | --- | +|4.5.0|`R/4.2.2-foss-2022b`| + +### memisc + + +|`memisc` version|R modules that include it| +| --- | --- | +|0.99.31.6|`R/4.2.2-foss-2022b`| + +### memoise + + +|`memoise` version|R modules that include it| +| --- | --- | +|2.0.1|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### memuse + + +|`memuse` version|R modules that include it| +| --- | --- | +|4.2-3|`R/4.2.2-foss-2022b`| + +### MESS + + +|`MESS` version|R modules that include it| +| --- | --- | +|0.5.9|`R/4.2.2-foss-2022b`| + +### metadat + + +|`metadat` version|R modules that include it| +| --- | --- | +|1.2-0|`R/4.2.2-foss-2022b`| + +### metafor + + +|`metafor` version|R modules that include it| +| --- | --- | +|3.8-1|`R/4.2.2-foss-2022b`| + +### MetaUtility + + +|`MetaUtility` version|R modules that include it| +| --- | --- | +|2.1.2|`R/4.2.2-foss-2022b`| + +### mets + + +|`mets` version|R modules that include it| +| --- | --- | +|1.3.2|`R/4.2.2-foss-2022b`| + +### mgcv + + +|`mgcv` version|R modules that include it| +| --- | --- | +|1.8-42|`R/4.2.2-foss-2022b`| + +### mgsub + + +|`mgsub` version|R modules that include it| +| --- | --- | +|1.7.3|`R/4.2.2-foss-2022b`| + +### mhsmm + + +|`mhsmm` version|R modules that include it| +| --- | --- | +|0.4.16|`R/4.2.2-foss-2022b`| + +### mi + + +|`mi` version|R modules that include it| +| --- | --- | +|1.1|`R/4.2.2-foss-2022b`| + +### mice + + +|`mice` version|R modules that include it| +| --- | --- | +|3.15.0|`R/4.2.2-foss-2022b`| + +### miceadds + + +|`miceadds` version|R modules that include it| +| --- | --- | +|3.16-18|`R/4.2.2-foss-2022b`| + +### microbenchmark + + +|`microbenchmark` version|R modules that include it| +| --- | --- | +|1.4.9|`R/4.2.2-foss-2022b`| + +### MIIVsem + + +|`MIIVsem` version|R modules that include it| +| --- | --- | +|0.5.8|`R/4.2.2-foss-2022b`| + +### mime + + +|`mime` version|R modules that include it| +| --- | --- | +|0.13|`R/4.5.1-gfbf-2025a`| +|0.12|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### minerva + + +|`minerva` version|R modules that include it| +| --- | --- | +|1.5.10|`R/4.2.2-foss-2022b`| + +### miniUI + + +|`miniUI` version|R modules that include it| +| --- | --- | +|0.1.2|`R/4.5.1-gfbf-2025a`| +|0.1.1.1|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### minpack.lm + + +|`minpack.lm` version|R modules that include it| +| --- | --- | +|1.2-3|`R/4.2.2-foss-2022b`| + +### minqa + + +|`minqa` version|R modules that include it| +| --- | --- | +|1.2.5|`R/4.2.2-foss-2022b`| + +### mirt + + +|`mirt` version|R modules that include it| +| --- | --- | +|1.38.1|`R/4.2.2-foss-2022b`| + +### misc3d + + +|`misc3d` version|R modules that include it| +| --- | --- | +|0.9-1|`R/4.2.2-foss-2022b`| + +### miscTools + + +|`miscTools` version|R modules that include it| +| --- | --- | +|0.6-26|`R/4.2.2-foss-2022b`| + +### missForest + + +|`missForest` version|R modules that include it| +| --- | --- | +|1.5|`R/4.2.2-foss-2022b`| + +### mitml + + +|`mitml` version|R modules that include it| +| --- | --- | +|0.4-5|`R/4.2.2-foss-2022b`| + +### mitools + + +|`mitools` version|R modules that include it| +| --- | --- | +|2.4|`R/4.2.2-foss-2022b`| + +### mixtools + + +|`mixtools` version|R modules that include it| +| --- | --- | +|2.0.0|`R/4.2.2-foss-2022b`| + +### mlbench + + +|`mlbench` version|R modules that include it| +| --- | --- | +|2.1-3|`R/4.2.2-foss-2022b`| + +### mlegp + + +|`mlegp` version|R modules that include it| +| --- | --- | +|3.1.9|`R/4.2.2-foss-2022b`| + +### MLmetrics + + +|`MLmetrics` version|R modules that include it| +| --- | --- | +|1.1.1|`R/4.2.2-foss-2022b`| + +### mlogit + + +|`mlogit` version|R modules that include it| +| --- | --- | +|1.1-1|`R/4.2.2-foss-2022b`| + +### mlr + + +|`mlr` version|R modules that include it| +| --- | --- | +|2.19.1|`R/4.2.2-foss-2022b`| + +### mlrMBO + + +|`mlrMBO` version|R modules that include it| +| --- | --- | +|1.1.5.1|`R/4.2.2-foss-2022b`| + +### mltools + + +|`mltools` version|R modules that include it| +| --- | --- | +|0.3.5|`R/4.2.2-foss-2022b`| + +### mnormt + + +|`mnormt` version|R modules that include it| +| --- | --- | +|2.1.1|`R/4.2.2-foss-2022b`| + +### ModelMetrics + + +|`ModelMetrics` version|R modules that include it| +| --- | --- | +|1.2.2.2|`R/4.2.2-foss-2022b`| + +### modelr + + +|`modelr` version|R modules that include it| +| --- | --- | +|0.1.10|`R/4.2.2-foss-2022b`| + +### modeltools + + +|`modeltools` version|R modules that include it| +| --- | --- | +|0.2-23|`R/4.2.2-foss-2022b`| + +### MODIStsp + + +|`MODIStsp` version|R modules that include it| +| --- | --- | +|2.1.0|`R/4.2.2-foss-2022b`| + +### momentfit + + +|`momentfit` version|R modules that include it| +| --- | --- | +|0.3|`R/4.2.2-foss-2022b`| + +### moments + + +|`moments` version|R modules that include it| +| --- | --- | +|0.14.1|`R/4.2.2-foss-2022b`| + +### MonteCarlo + + +|`MonteCarlo` version|R modules that include it| +| --- | --- | +|1.0.6|`R/4.2.2-foss-2022b`| + +### mosaicCore + + +|`mosaicCore` version|R modules that include it| +| --- | --- | +|0.9.2.1|`R/4.2.2-foss-2022b`| + +### mpath + + +|`mpath` version|R modules that include it| +| --- | --- | +|0.4-2.23|`R/4.2.2-foss-2022b`| + +### mRMRe + + +|`mRMRe` version|R modules that include it| +| --- | --- | +|2.1.2|`R/4.2.2-foss-2022b`| + +### msm + + +|`msm` version|R modules that include it| +| --- | --- | +|1.7|`R/4.2.2-foss-2022b`| + +### mstate + + +|`mstate` version|R modules that include it| +| --- | --- | +|0.3.2|`R/4.2.2-foss-2022b`| + +### multcomp + + +|`multcomp` version|R modules that include it| +| --- | --- | +|1.4-23|`R/4.2.2-foss-2022b`| + +### multcompView + + +|`multcompView` version|R modules that include it| +| --- | --- | +|0.1-8|`R/4.2.2-foss-2022b`| + +### multicool + + +|`multicool` version|R modules that include it| +| --- | --- | +|0.1-12|`R/4.2.2-foss-2022b`| + +### multipol + + +|`multipol` version|R modules that include it| +| --- | --- | +|1.0-7|`R/4.2.2-foss-2022b`| + +### munsell + + +|`munsell` version|R modules that include it| +| --- | --- | +|0.5.0|`R/4.2.2-foss-2022b`| + +### mvabund + + +|`mvabund` version|R modules that include it| +| --- | --- | +|4.2.1|`R/4.2.2-foss-2022b`| + +### mvnfast + + +|`mvnfast` version|R modules that include it| +| --- | --- | +|0.2.8|`R/4.2.2-foss-2022b`| + +### mvtnorm + + +|`mvtnorm` version|R modules that include it| +| --- | --- | +|1.1-3|`R/4.2.2-foss-2022b`| + +### nabor + + +|`nabor` version|R modules that include it| +| --- | --- | +|0.5.0|`R/4.2.2-foss-2022b`| + +### naniar + + +|`naniar` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### natserv + + +|`natserv` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### naturalsort + + +|`naturalsort` version|R modules that include it| +| --- | --- | +|0.1.3|`R/4.2.2-foss-2022b`| + +### ncbit + + +|`ncbit` version|R modules that include it| +| --- | --- | +|2013.03.29.1|`R/4.2.2-foss-2022b`| + +### ncdf4 + + +|`ncdf4` version|R modules that include it| +| --- | --- | +|1.21|`R/4.2.2-foss-2022b`| + +### NCmisc + + +|`NCmisc` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### network + + +|`network` version|R modules that include it| +| --- | --- | +|1.18.1|`R/4.2.2-foss-2022b`| + +### networkDynamic + + +|`networkDynamic` version|R modules that include it| +| --- | --- | +|0.11.3|`R/4.2.2-foss-2022b`| + +### networkLite + + +|`networkLite` version|R modules that include it| +| --- | --- | +|1.0.5|`R/4.2.2-foss-2022b`| + +### neuralnet + + +|`neuralnet` version|R modules that include it| +| --- | --- | +|1.44.2|`R/4.2.2-foss-2022b`| + +### neuRosim + + +|`neuRosim` version|R modules that include it| +| --- | --- | +|0.2-13|`R/4.2.2-foss-2022b`| + +### ngspatial + + +|`ngspatial` version|R modules that include it| +| --- | --- | +|1.2-2|`R/4.2.2-foss-2022b`| + +### NISTunits + + +|`NISTunits` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### nleqslv + + +|`nleqslv` version|R modules that include it| +| --- | --- | +|3.3.4|`R/4.2.2-foss-2022b`| + +### nlme + + +|`nlme` version|R modules that include it| +| --- | --- | +|3.1-162|`R/4.2.2-foss-2022b`| + +### nloptr + + +|`nloptr` version|R modules that include it| +| --- | --- | +|2.0.3|`R/4.2.2-foss-2022b`| + +### NLP + + +|`NLP` version|R modules that include it| +| --- | --- | +|0.2-1|`R/4.2.2-foss-2022b`| + +### nlsem + + +|`nlsem` version|R modules that include it| +| --- | --- | +|0.8|`R/4.2.2-foss-2022b`| + +### nnet + + +|`nnet` version|R modules that include it| +| --- | --- | +|7.3-18|`R/4.2.2-foss-2022b`| + +### nnls + + +|`nnls` version|R modules that include it| +| --- | --- | +|1.4|`R/4.2.2-foss-2022b`| + +### nonnest2 + + +|`nonnest2` version|R modules that include it| +| --- | --- | +|0.5-5|`R/4.2.2-foss-2022b`| + +### nor1mix + + +|`nor1mix` version|R modules that include it| +| --- | --- | +|1.3-0|`R/4.2.2-foss-2022b`| + +### norm + + +|`norm` version|R modules that include it| +| --- | --- | +|1.0-10.0|`R/4.2.2-foss-2022b`| + +### nortest + + +|`nortest` version|R modules that include it| +| --- | --- | +|1.0-4|`R/4.2.2-foss-2022b`| + +### np + + +|`np` version|R modules that include it| +| --- | --- | +|0.60-17|`R/4.2.2-foss-2022b`| + +### npsurv + + +|`npsurv` version|R modules that include it| +| --- | --- | +|0.5-0|`R/4.2.2-foss-2022b`| + +### numDeriv + + +|`numDeriv` version|R modules that include it| +| --- | --- | +|2016.8-1.1|`R/4.2.2-foss-2022b`| + +### oai + + +|`oai` version|R modules that include it| +| --- | --- | +|0.4.0|`R/4.2.2-foss-2022b`| + +### oce + + +|`oce` version|R modules that include it| +| --- | --- | +|1.7-10|`R/4.2.2-foss-2022b`| + +### OceanView + + +|`OceanView` version|R modules that include it| +| --- | --- | +|1.0.6|`R/4.2.2-foss-2022b`| + +### oddsratio + + +|`oddsratio` version|R modules that include it| +| --- | --- | +|2.0.1|`R/4.2.2-foss-2022b`| + +### officer + + +|`officer` version|R modules that include it| +| --- | --- | +|0.6.2|`R/4.2.2-foss-2022b`| + +### openair + + +|`openair` version|R modules that include it| +| --- | --- | +|2.16-0|`R/4.2.2-foss-2022b`| + +### OpenMx + + +|`OpenMx` version|R modules that include it| +| --- | --- | +|2.21.1|`R/4.2.2-foss-2022b`| + +### openssl + + +|`openssl` version|R modules that include it| +| --- | --- | +|2.3.4|`R/4.5.1-gfbf-2025a`| +|2.2.2|`R/4.4.2-gfbf-2024a`| +|2.2.0|`R/4.4.1-gfbf-2023b`| +|2.1.1|`R/4.3.2-gfbf-2023a`| +|2.0.6|`R/4.2.2-foss-2022b`| + +### openxlsx + + +|`openxlsx` version|R modules that include it| +| --- | --- | +|4.2.5.2|`R/4.2.2-foss-2022b`| + +### operator.tools + + +|`operator.tools` version|R modules that include it| +| --- | --- | +|1.6.3|`R/4.2.2-foss-2022b`| + +### optextras + + +|`optextras` version|R modules that include it| +| --- | --- | +|2019-12.4|`R/4.2.2-foss-2022b`| + +### optimParallel + + +|`optimParallel` version|R modules that include it| +| --- | --- | +|1.0-2|`R/4.2.2-foss-2022b`| + +### optimr + + +|`optimr` version|R modules that include it| +| --- | --- | +|2019-12.16|`R/4.2.2-foss-2022b`| + +### optimx + + +|`optimx` version|R modules that include it| +| --- | --- | +|2022-4.30|`R/4.2.2-foss-2022b`| + +### optmatch + + +|`optmatch` version|R modules that include it| +| --- | --- | +|0.10.6|`R/4.2.2-foss-2022b`| + +### optparse + + +|`optparse` version|R modules that include it| +| --- | --- | +|1.7.3|`R/4.2.2-foss-2022b`| + +### ordinal + + +|`ordinal` version|R modules that include it| +| --- | --- | +|2022.11-16|`R/4.2.2-foss-2022b`| + +### origami + + +|`origami` version|R modules that include it| +| --- | --- | +|1.0.7|`R/4.2.2-foss-2022b`| + +### oro.nifti + + +|`oro.nifti` version|R modules that include it| +| --- | --- | +|0.11.4|`R/4.2.2-foss-2022b`| + +### orthopolynom + + +|`orthopolynom` version|R modules that include it| +| --- | --- | +|1.0-6.1|`R/4.2.2-foss-2022b`| + +### osqp + + +|`osqp` version|R modules that include it| +| --- | --- | +|0.6.0.8|`R/4.2.2-foss-2022b`| + +### outliers + + +|`outliers` version|R modules that include it| +| --- | --- | +|0.15|`R/4.2.2-foss-2022b`| + +### p + + +|`p` version|R modules that include it| +| --- | --- | +|a|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### packrat + + +|`packrat` version|R modules that include it| +| --- | --- | +|0.9.1|`R/4.2.2-foss-2022b`| + +### pacman + + +|`pacman` version|R modules that include it| +| --- | --- | +|0.5.1|`R/4.2.2-foss-2022b`| + +### pammtools + + +|`pammtools` version|R modules that include it| +| --- | --- | +|0.5.8|`R/4.2.2-foss-2022b`| + +### pamr + + +|`pamr` version|R modules that include it| +| --- | --- | +|1.56.1|`R/4.2.2-foss-2022b`| + +### pan + + +|`pan` version|R modules that include it| +| --- | --- | +|1.6|`R/4.2.2-foss-2022b`| + +### parallelDist + + +|`parallelDist` version|R modules that include it| +| --- | --- | +|0.2.6|`R/4.2.2-foss-2022b`| + +### parallelly + + +|`parallelly` version|R modules that include it| +| --- | --- | +|1.34.0|`R/4.2.2-foss-2022b`| + +### parallelMap + + +|`parallelMap` version|R modules that include it| +| --- | --- | +|1.5.1|`R/4.2.2-foss-2022b`| + +### ParamHelpers + + +|`ParamHelpers` version|R modules that include it| +| --- | --- | +|1.14.1|`R/4.2.2-foss-2022b`| + +### parsedate + + +|`parsedate` version|R modules that include it| +| --- | --- | +|1.3.1|`R/4.2.2-foss-2022b`| + +### party + + +|`party` version|R modules that include it| +| --- | --- | +|1.3-13|`R/4.2.2-foss-2022b`| + +### partykit + + +|`partykit` version|R modules that include it| +| --- | --- | +|1.2-18|`R/4.2.2-foss-2022b`| + +### pastecs + + +|`pastecs` version|R modules that include it| +| --- | --- | +|1.3.21|`R/4.2.2-foss-2022b`| + +### patchwork + + +|`patchwork` version|R modules that include it| +| --- | --- | +|1.1.2|`R/4.2.2-foss-2022b`| + +### pbapply + + +|`pbapply` version|R modules that include it| +| --- | --- | +|1.7-0|`R/4.2.2-foss-2022b`| + +### pbivnorm + + +|`pbivnorm` version|R modules that include it| +| --- | --- | +|0.6.0|`R/4.2.2-foss-2022b`| + +### pbkrtest + + +|`pbkrtest` version|R modules that include it| +| --- | --- | +|0.5.2|`R/4.2.2-foss-2022b`| + +### PCAmatchR + + +|`PCAmatchR` version|R modules that include it| +| --- | --- | +|0.3.3|`R/4.2.2-foss-2022b`| + +### pcaPP + + +|`pcaPP` version|R modules that include it| +| --- | --- | +|2.0-3|`R/4.2.2-foss-2022b`| + +### pdp + + +|`pdp` version|R modules that include it| +| --- | --- | +|0.8.1|`R/4.2.2-foss-2022b`| + +### PearsonDS + + +|`PearsonDS` version|R modules that include it| +| --- | --- | +|1.2.3|`R/4.2.2-foss-2022b`| + +### pec + + +|`pec` version|R modules that include it| +| --- | --- | +|2022.05.04|`R/4.2.2-foss-2022b`| + +### penalized + + +|`penalized` version|R modules that include it| +| --- | --- | +|0.9-52|`R/4.2.2-foss-2022b`| + +### penfa + + +|`penfa` version|R modules that include it| +| --- | --- | +|0.1.1|`R/4.2.2-foss-2022b`| + +### peperr + + +|`peperr` version|R modules that include it| +| --- | --- | +|1.4|`R/4.2.2-foss-2022b`| + +### PermAlgo + + +|`PermAlgo` version|R modules that include it| +| --- | --- | +|1.2|`R/4.2.2-foss-2022b`| + +### permute + + +|`permute` version|R modules that include it| +| --- | --- | +|0.9-7|`R/4.2.2-foss-2022b`| + +### phangorn + + +|`phangorn` version|R modules that include it| +| --- | --- | +|2.11.1|`R/4.2.2-foss-2022b`| + +### pheatmap + + +|`pheatmap` version|R modules that include it| +| --- | --- | +|1.0.12|`R/4.2.2-foss-2022b`| + +### phylobase + + +|`phylobase` version|R modules that include it| +| --- | --- | +|0.8.10|`R/4.2.2-foss-2022b`| + +### phytools + + +|`phytools` version|R modules that include it| +| --- | --- | +|1.5-1|`R/4.2.2-foss-2022b`| + +### pillar + + +|`pillar` version|R modules that include it| +| --- | --- | +|1.11.1|`R/4.5.1-gfbf-2025a`| +|1.9.0|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|1.8.1|`R/4.2.2-foss-2022b`| + +### pim + + +|`pim` version|R modules that include it| +| --- | --- | +|2.0.2|`R/4.2.2-foss-2022b`| + +### pinfsc50 + + +|`pinfsc50` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### pixmap + + +|`pixmap` version|R modules that include it| +| --- | --- | +|0.4-12|`R/4.2.2-foss-2022b`| + +### pkgbuild + + +|`pkgbuild` version|R modules that include it| +| --- | --- | +|1.4.8|`R/4.5.1-gfbf-2025a`| +|1.4.5|`R/4.4.2-gfbf-2024a`| +|1.4.4|`R/4.4.1-gfbf-2023b`| +|1.4.2|`R/4.3.2-gfbf-2023a`| +|1.4.0|`R/4.2.2-foss-2022b`| + +### pkgconfig + + +|`pkgconfig` version|R modules that include it| +| --- | --- | +|2.0.3|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### pkgdown + + +|`pkgdown` version|R modules that include it| +| --- | --- | +|2.1.3|`R/4.5.1-gfbf-2025a`| +|2.1.1|`R/4.4.2-gfbf-2024a`| +|2.0.9|`R/4.4.1-gfbf-2023b`| +|2.0.7|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### pkgload + + +|`pkgload` version|R modules that include it| +| --- | --- | +|1.4.1|`R/4.5.1-gfbf-2025a`| +|1.4.0|`R/4.4.2-gfbf-2024a`| +|1.3.4|`R/4.4.1-gfbf-2023b`| +|1.3.3|`R/4.3.2-gfbf-2023a`| +|1.3.2|`R/4.2.2-foss-2022b`| + +### pkgmaker + + +|`pkgmaker` version|R modules that include it| +| --- | --- | +|0.32.8|`R/4.2.2-foss-2022b`| + +### plogr + + +|`plogr` version|R modules that include it| +| --- | --- | +|0.2.0|`R/4.2.2-foss-2022b`| + +### plot3D + + +|`plot3D` version|R modules that include it| +| --- | --- | +|1.4|`R/4.2.2-foss-2022b`| + +### plot3Drgl + + +|`plot3Drgl` version|R modules that include it| +| --- | --- | +|1.0.4|`R/4.2.2-foss-2022b`| + +### plotly + + +|`plotly` version|R modules that include it| +| --- | --- | +|4.10.1|`R/4.2.2-foss-2022b`| + +### plotmo + + +|`plotmo` version|R modules that include it| +| --- | --- | +|3.6.2|`R/4.2.2-foss-2022b`| + +### plotrix + + +|`plotrix` version|R modules that include it| +| --- | --- | +|3.8-2|`R/4.2.2-foss-2022b`| + +### pls + + +|`pls` version|R modules that include it| +| --- | --- | +|2.8-1|`R/4.2.2-foss-2022b`| + +### plyr + + +|`plyr` version|R modules that include it| +| --- | --- | +|1.8.8|`R/4.2.2-foss-2022b`| + +### PMA + + +|`PMA` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.2.2-foss-2022b`| + +### png + + +|`png` version|R modules that include it| +| --- | --- | +|0.1-8|`R/4.2.2-foss-2022b`| + +### PoissonSeq + + +|`PoissonSeq` version|R modules that include it| +| --- | --- | +|1.1.2|`R/4.2.2-foss-2022b`| + +### poLCA + + +|`poLCA` version|R modules that include it| +| --- | --- | +|1.6.0.1|`R/4.2.2-foss-2022b`| + +### polspline + + +|`polspline` version|R modules that include it| +| --- | --- | +|1.1.22|`R/4.2.2-foss-2022b`| + +### Polychrome + + +|`Polychrome` version|R modules that include it| +| --- | --- | +|1.5.1|`R/4.2.2-foss-2022b`| + +### polyclip + + +|`polyclip` version|R modules that include it| +| --- | --- | +|1.10-4|`R/4.2.2-foss-2022b`| + +### polycor + + +|`polycor` version|R modules that include it| +| --- | --- | +|0.8-1|`R/4.2.2-foss-2022b`| + +### polynom + + +|`polynom` version|R modules that include it| +| --- | --- | +|1.4-1|`R/4.2.2-foss-2022b`| + +### posterior + + +|`posterior` version|R modules that include it| +| --- | --- | +|1.4.1|`R/4.2.2-foss-2022b`| + +### ppcor + + +|`ppcor` version|R modules that include it| +| --- | --- | +|1.1|`R/4.2.2-foss-2022b`| + +### prabclus + + +|`prabclus` version|R modules that include it| +| --- | --- | +|2.3-2|`R/4.2.2-foss-2022b`| + +### pracma + + +|`pracma` version|R modules that include it| +| --- | --- | +|2.4.2|`R/4.2.2-foss-2022b`| + +### praise + + +|`praise` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### PresenceAbsence + + +|`PresenceAbsence` version|R modules that include it| +| --- | --- | +|1.1.11|`R/4.2.2-foss-2022b`| + +### preseqR + + +|`preseqR` version|R modules that include it| +| --- | --- | +|4.0.0|`R/4.2.2-foss-2022b`| + +### prettyGraphs + + +|`prettyGraphs` version|R modules that include it| +| --- | --- | +|2.1.6|`R/4.2.2-foss-2022b`| + +### prettyunits + + +|`prettyunits` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|1.1.1|`R/4.2.2-foss-2022b`| + +### princurve + + +|`princurve` version|R modules that include it| +| --- | --- | +|2.1.6|`R/4.2.2-foss-2022b`| + +### pROC + + +|`pROC` version|R modules that include it| +| --- | --- | +|1.18.0|`R/4.2.2-foss-2022b`| + +### processx + + +|`processx` version|R modules that include it| +| --- | --- | +|3.8.6|`R/4.5.1-gfbf-2025a`| +|3.8.4|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|3.8.2|`R/4.3.2-gfbf-2023a`| +|3.8.0|`R/4.2.2-foss-2022b`| + +### prodlim + + +|`prodlim` version|R modules that include it| +| --- | --- | +|2019.11.13|`R/4.2.2-foss-2022b`| + +### profileModel + + +|`profileModel` version|R modules that include it| +| --- | --- | +|0.6.1|`R/4.2.2-foss-2022b`| + +### proftools + + +|`proftools` version|R modules that include it| +| --- | --- | +|0.99-3|`R/4.2.2-foss-2022b`| + +### profvis + + +|`profvis` version|R modules that include it| +| --- | --- | +|0.4.0|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`| +|0.3.8|`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|0.3.7|`R/4.2.2-foss-2022b`| + +### progress + + +|`progress` version|R modules that include it| +| --- | --- | +|1.2.2|`R/4.2.2-foss-2022b`| + +### progressr + + +|`progressr` version|R modules that include it| +| --- | --- | +|0.13.0|`R/4.2.2-foss-2022b`| + +### projpred + + +|`projpred` version|R modules that include it| +| --- | --- | +|2.4.0|`R/4.2.2-foss-2022b`| + +### promises + + +|`promises` version|R modules that include it| +| --- | --- | +|1.3.3|`R/4.5.1-gfbf-2025a`| +|1.3.0|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.2.1|`R/4.3.2-gfbf-2023a`| +|1.2.0.1|`R/4.2.2-foss-2022b`| + +### proto + + +|`proto` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### protolite + + +|`protolite` version|R modules that include it| +| --- | --- | +|2.3.0|`R/4.2.2-foss-2022b`| + +### proxy + + +|`proxy` version|R modules that include it| +| --- | --- | +|0.4-27|`R/4.2.2-foss-2022b`| + +### proxyC + + +|`proxyC` version|R modules that include it| +| --- | --- | +|0.3.3|`R/4.2.2-foss-2022b`| + +### pryr + + +|`pryr` version|R modules that include it| +| --- | --- | +|0.1.6|`R/4.2.2-foss-2022b`| + +### ps + + +|`ps` version|R modules that include it| +| --- | --- | +|1.9.1|`R/4.5.1-gfbf-2025a`| +|1.8.1|`R/4.4.2-gfbf-2024a`| +|1.7.6|`R/4.4.1-gfbf-2023b`| +|1.7.5|`R/4.3.2-gfbf-2023a`| +|1.7.2|`R/4.2.2-foss-2022b`| + +### pscl + + +|`pscl` version|R modules that include it| +| --- | --- | +|1.5.5|`R/4.2.2-foss-2022b`| + +### pspline + + +|`pspline` version|R modules that include it| +| --- | --- | +|1.0-19|`R/4.2.2-foss-2022b`| + +### psych + + +|`psych` version|R modules that include it| +| --- | --- | +|2.2.9|`R/4.2.2-foss-2022b`| + +### Publish + + +|`Publish` version|R modules that include it| +| --- | --- | +|2023.01.17|`R/4.2.2-foss-2022b`| + +### pulsar + + +|`pulsar` version|R modules that include it| +| --- | --- | +|0.3.10|`R/4.2.2-foss-2022b`| + +### purrr + + +|`purrr` version|R modules that include it| +| --- | --- | +|1.1.0|`R/4.5.1-gfbf-2025a`| +|1.0.2|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|1.0.1|`R/4.2.2-foss-2022b`| + +### pvclust + + +|`pvclust` version|R modules that include it| +| --- | --- | +|2.2-0|`R/4.2.2-foss-2022b`| + +### qgam + + +|`qgam` version|R modules that include it| +| --- | --- | +|1.3.4|`R/4.2.2-foss-2022b`| + +### qgraph + + +|`qgraph` version|R modules that include it| +| --- | --- | +|1.9.3|`R/4.2.2-foss-2022b`| + +### qqman + + +|`qqman` version|R modules that include it| +| --- | --- | +|0.1.8|`R/4.2.2-foss-2022b`| + +### qrnn + + +|`qrnn` version|R modules that include it| +| --- | --- | +|2.0.5|`R/4.2.2-foss-2022b`| + +### quadprog + + +|`quadprog` version|R modules that include it| +| --- | --- | +|1.5-8|`R/4.2.2-foss-2022b`| + +### quanteda + + +|`quanteda` version|R modules that include it| +| --- | --- | +|3.3.0|`R/4.2.2-foss-2022b`| + +### quantmod + + +|`quantmod` version|R modules that include it| +| --- | --- | +|0.4.20|`R/4.2.2-foss-2022b`| + +### quantreg + + +|`quantreg` version|R modules that include it| +| --- | --- | +|5.94|`R/4.2.2-foss-2022b`| + +### questionr + + +|`questionr` version|R modules that include it| +| --- | --- | +|0.7.8|`R/4.2.2-foss-2022b`| + +### R.cache + + +|`R.cache` version|R modules that include it| +| --- | --- | +|0.16.0|`R/4.2.2-foss-2022b`| + +### R.matlab + + +|`R.matlab` version|R modules that include it| +| --- | --- | +|3.7.0|`R/4.2.2-foss-2022b`| + +### R.methodsS3 + + +|`R.methodsS3` version|R modules that include it| +| --- | --- | +|1.8.2|`R/4.2.2-foss-2022b`| + +### R.oo + + +|`R.oo` version|R modules that include it| +| --- | --- | +|1.25.0|`R/4.2.2-foss-2022b`| + +### R.rsp + + +|`R.rsp` version|R modules that include it| +| --- | --- | +|0.45.0|`R/4.2.2-foss-2022b`| + +### R.utils + + +|`R.utils` version|R modules that include it| +| --- | --- | +|2.12.2|`R/4.2.2-foss-2022b`| + +### R2WinBUGS + + +|`R2WinBUGS` version|R modules that include it| +| --- | --- | +|2.1-21|`R/4.2.2-foss-2022b`| + +### R6 + + +|`R6` version|R modules that include it| +| --- | --- | +|2.6.1|`R/4.5.1-gfbf-2025a`| +|2.5.1|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### ragg + + +|`ragg` version|R modules that include it| +| --- | --- | +|1.5.0|`R/4.5.1-gfbf-2025a`| +|1.3.3|`R/4.4.2-gfbf-2024a`| +|1.3.2|`R/4.4.1-gfbf-2023b`| +|1.2.6|`R/4.3.2-gfbf-2023a`| +|1.2.5|`R/4.2.2-foss-2022b`| + +### random + + +|`random` version|R modules that include it| +| --- | --- | +|0.2.6|`R/4.2.2-foss-2022b`| + +### randomForest + + +|`randomForest` version|R modules that include it| +| --- | --- | +|4.7-1.1|`R/4.2.2-foss-2022b`| + +### randomForestSRC + + +|`randomForestSRC` version|R modules that include it| +| --- | --- | +|3.2.1|`R/4.2.2-foss-2022b`| + +### randtoolbox + + +|`randtoolbox` version|R modules that include it| +| --- | --- | +|2.0.4|`R/4.2.2-foss-2022b`| + +### rangeModelMetadata + + +|`rangeModelMetadata` version|R modules that include it| +| --- | --- | +|0.1.4|`R/4.2.2-foss-2022b`| + +### ranger + + +|`ranger` version|R modules that include it| +| --- | --- | +|0.14.1|`R/4.2.2-foss-2022b`| + +### RANN + + +|`RANN` version|R modules that include it| +| --- | --- | +|2.6.1|`R/4.2.2-foss-2022b`| + +### rapidjsonr + + +|`rapidjsonr` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### rappdirs + + +|`rappdirs` version|R modules that include it| +| --- | --- | +|0.3.3|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### rARPACK + + +|`rARPACK` version|R modules that include it| +| --- | --- | +|0.11-0|`R/4.2.2-foss-2022b`| + +### raster + + +|`raster` version|R modules that include it| +| --- | --- | +|3.6-20|`R/4.2.2-foss-2022b`| + +### rasterVis + + +|`rasterVis` version|R modules that include it| +| --- | --- | +|0.51.5|`R/4.2.2-foss-2022b`| + +### ratelimitr + + +|`ratelimitr` version|R modules that include it| +| --- | --- | +|0.4.1|`R/4.2.2-foss-2022b`| + +### RBesT + + +|`RBesT` version|R modules that include it| +| --- | --- | +|1.6-6|`R/4.2.2-foss-2022b`| + +### rbibutils + + +|`rbibutils` version|R modules that include it| +| --- | --- | +|2.2.13|`R/4.2.2-foss-2022b`| + +### rbison + + +|`rbison` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### Rborist + + +|`Rborist` version|R modules that include it| +| --- | --- | +|0.3-2|`R/4.2.2-foss-2022b`| + +### RCAL + + +|`RCAL` version|R modules that include it| +| --- | --- | +|2.0|`R/4.2.2-foss-2022b`| + +### Rcgmin + + +|`Rcgmin` version|R modules that include it| +| --- | --- | +|2022-4.30|`R/4.2.2-foss-2022b`| + +### RCircos + + +|`RCircos` version|R modules that include it| +| --- | --- | +|1.2.2|`R/4.2.2-foss-2022b`| + +### rcmdcheck + + +|`rcmdcheck` version|R modules that include it| +| --- | --- | +|1.4.0|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### RColorBrewer + + +|`RColorBrewer` version|R modules that include it| +| --- | --- | +|1.1-3|`R/4.2.2-foss-2022b`| + +### Rcpp + + +|`Rcpp` version|R modules that include it| +| --- | --- | +|1.1.0|`R/4.5.1-gfbf-2025a`| +|1.0.13-1|`R/4.4.2-gfbf-2024a`| +|1.0.12|`R/4.4.1-gfbf-2023b`| +|1.0.11|`R/4.3.2-gfbf-2023a`| +|1.0.10|`R/4.2.2-foss-2022b`| + +### RcppArmadillo + + +|`RcppArmadillo` version|R modules that include it| +| --- | --- | +|0.12.0.1.0|`R/4.2.2-foss-2022b`| + +### RcppEigen + + +|`RcppEigen` version|R modules that include it| +| --- | --- | +|0.3.3.9.3|`R/4.2.2-foss-2022b`| + +### RcppGSL + + +|`RcppGSL` version|R modules that include it| +| --- | --- | +|0.3.13|`R/4.2.2-foss-2022b`| + +### RcppParallel + + +|`RcppParallel` version|R modules that include it| +| --- | --- | +|5.1.7|`R/4.2.2-foss-2022b`| + +### RcppProgress + + +|`RcppProgress` version|R modules that include it| +| --- | --- | +|0.4.2|`R/4.2.2-foss-2022b`| + +### RcppRoll + + +|`RcppRoll` version|R modules that include it| +| --- | --- | +|0.3.0|`R/4.2.2-foss-2022b`| + +### RcppThread + + +|`RcppThread` version|R modules that include it| +| --- | --- | +|2.1.3|`R/4.2.2-foss-2022b`| + +### RcppTOML + + +|`RcppTOML` version|R modules that include it| +| --- | --- | +|0.2.2|`R/4.2.2-foss-2022b`| + +### RCurl + + +|`RCurl` version|R modules that include it| +| --- | --- | +|1.98-1.10|`R/4.2.2-foss-2022b`| + +### rda + + +|`rda` version|R modules that include it| +| --- | --- | +|1.2-1|`R/4.2.2-foss-2022b`| + +### Rdpack + + +|`Rdpack` version|R modules that include it| +| --- | --- | +|2.4|`R/4.2.2-foss-2022b`| + +### rdrop2 + + +|`rdrop2` version|R modules that include it| +| --- | --- | +|0.8.2.1|`R/4.2.2-foss-2022b`| + +### readbitmap + + +|`readbitmap` version|R modules that include it| +| --- | --- | +|0.1.5|`R/4.2.2-foss-2022b`| + +### reader + + +|`reader` version|R modules that include it| +| --- | --- | +|1.0.6|`R/4.2.2-foss-2022b`| + +### readODS + + +|`readODS` version|R modules that include it| +| --- | --- | +|1.8.0|`R/4.2.2-foss-2022b`| + +### readr + + +|`readr` version|R modules that include it| +| --- | --- | +|2.1.4|`R/4.2.2-foss-2022b`| + +### readxl + + +|`readxl` version|R modules that include it| +| --- | --- | +|1.4.2|`R/4.2.2-foss-2022b`| + +### rebird + + +|`rebird` version|R modules that include it| +| --- | --- | +|1.3.0|`R/4.2.2-foss-2022b`| + +### recipes + + +|`recipes` version|R modules that include it| +| --- | --- | +|1.0.5|`R/4.2.2-foss-2022b`| + +### RefFreeEWAS + + +|`RefFreeEWAS` version|R modules that include it| +| --- | --- | +|2.2|`R/4.2.2-foss-2022b`| + +### registry + + +|`registry` version|R modules that include it| +| --- | --- | +|0.5-1|`R/4.2.2-foss-2022b`| + +### regsem + + +|`regsem` version|R modules that include it| +| --- | --- | +|1.9.3|`R/4.2.2-foss-2022b`| + +### relsurv + + +|`relsurv` version|R modules that include it| +| --- | --- | +|2.2-9|`R/4.2.2-foss-2022b`| + +### rematch + + +|`rematch` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### rematch2 + + +|`rematch2` version|R modules that include it| +| --- | --- | +|2.1.2|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### remotes + + +|`remotes` version|R modules that include it| +| --- | --- | +|2.5.0|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|2.4.2.1|`R/4.3.2-gfbf-2023a`| +|2.4.2|`R/4.2.2-foss-2022b`| + +### rentrez + + +|`rentrez` version|R modules that include it| +| --- | --- | +|1.2.3|`R/4.2.2-foss-2022b`| + +### renv + + +|`renv` version|R modules that include it| +| --- | --- | +|0.17.1|`R/4.2.2-foss-2022b`| + +### reprex + + +|`reprex` version|R modules that include it| +| --- | --- | +|2.0.2|`R/4.2.2-foss-2022b`| + +### resample + + +|`resample` version|R modules that include it| +| --- | --- | +|0.6|`R/4.2.2-foss-2022b`| + +### reshape + + +|`reshape` version|R modules that include it| +| --- | --- | +|0.8.9|`R/4.2.2-foss-2022b`| + +### reshape2 + + +|`reshape2` version|R modules that include it| +| --- | --- | +|1.4.4|`R/4.2.2-foss-2022b`| + +### reticulate + + +|`reticulate` version|R modules that include it| +| --- | --- | +|1.28|`R/4.2.2-foss-2022b`| + +### rex + + +|`rex` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.2.2-foss-2022b`| + +### rgbif + + +|`rgbif` version|R modules that include it| +| --- | --- | +|3.7.5|`R/4.2.2-foss-2022b`| + +### RGCCA + + +|`RGCCA` version|R modules that include it| +| --- | --- | +|2.1.2|`R/4.2.2-foss-2022b`| + +### rgdal + + +|`rgdal` version|R modules that include it| +| --- | --- | +|1.6-5|`R/4.2.2-foss-2022b`| + +### rgeos + + +|`rgeos` version|R modules that include it| +| --- | --- | +|0.6-2|`R/4.2.2-foss-2022b`| + +### rgexf + + +|`rgexf` version|R modules that include it| +| --- | --- | +|0.16.2|`R/4.2.2-foss-2022b`| + +### rgl + + +|`rgl` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.2.2-foss-2022b`| + +### Rglpk + + +|`Rglpk` version|R modules that include it| +| --- | --- | +|0.6-4|`R/4.2.2-foss-2022b`| + +### RhpcBLASctl + + +|`RhpcBLASctl` version|R modules that include it| +| --- | --- | +|0.23-42|`R/4.2.2-foss-2022b`| + +### ridge + + +|`ridge` version|R modules that include it| +| --- | --- | +|3.3|`R/4.2.2-foss-2022b`| + +### ridigbio + + +|`ridigbio` version|R modules that include it| +| --- | --- | +|0.3.6|`R/4.2.2-foss-2022b`| + +### RInside + + +|`RInside` version|R modules that include it| +| --- | --- | +|0.2.18|`R/4.2.2-foss-2022b`| + +### rio + + +|`rio` version|R modules that include it| +| --- | --- | +|0.5.29|`R/4.2.2-foss-2022b`| + +### riskRegression + + +|`riskRegression` version|R modules that include it| +| --- | --- | +|2022.11.28|`R/4.2.2-foss-2022b`| + +### ritis + + +|`ritis` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### RItools + + +|`RItools` version|R modules that include it| +| --- | --- | +|0.3-3|`R/4.2.2-foss-2022b`| + +### rJava + + +|`rJava` version|R modules that include it| +| --- | --- | +|1.0-6|`R/4.2.2-foss-2022b`| + +### rjson + + +|`rjson` version|R modules that include it| +| --- | --- | +|0.2.21|`R/4.2.2-foss-2022b`| + +### RJSONIO + + +|`RJSONIO` version|R modules that include it| +| --- | --- | +|1.3-1.8|`R/4.2.2-foss-2022b`| + +### rlang + + +|`rlang` version|R modules that include it| +| --- | --- | +|1.1.6|`R/4.5.1-gfbf-2025a`| +|1.1.4|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.1.2|`R/4.3.2-gfbf-2023a`| +|1.1.0|`R/4.2.2-foss-2022b`| + +### rle + + +|`rle` version|R modules that include it| +| --- | --- | +|0.9.2|`R/4.2.2-foss-2022b`| + +### rlecuyer + + +|`rlecuyer` version|R modules that include it| +| --- | --- | +|0.3-5|`R/4.2.2-foss-2022b`| + +### rlemon + + +|`rlemon` version|R modules that include it| +| --- | --- | +|0.2.1|`R/4.2.2-foss-2022b`| + +### rlist + + +|`rlist` version|R modules that include it| +| --- | --- | +|0.4.6.2|`R/4.2.2-foss-2022b`| + +### rmarkdown + + +|`rmarkdown` version|R modules that include it| +| --- | --- | +|2.30|`R/4.5.1-gfbf-2025a`| +|2.29|`R/4.4.2-gfbf-2024a`| +|2.27|`R/4.4.1-gfbf-2023b`| +|2.25|`R/4.3.2-gfbf-2023a`| +|2.20|`R/4.2.2-foss-2022b`| + +### rmeta + + +|`rmeta` version|R modules that include it| +| --- | --- | +|3.0|`R/4.2.2-foss-2022b`| + +### Rmpfr + + +|`Rmpfr` version|R modules that include it| +| --- | --- | +|0.9-1|`R/4.2.2-foss-2022b`| + +### rms + + +|`rms` version|R modules that include it| +| --- | --- | +|6.5-0|`R/4.2.2-foss-2022b`| + +### RMTstat + + +|`RMTstat` version|R modules that include it| +| --- | --- | +|0.3.1|`R/4.2.2-foss-2022b`| + +### rncl + + +|`rncl` version|R modules that include it| +| --- | --- | +|0.8.7|`R/4.2.2-foss-2022b`| + +### rnetcarto + + +|`rnetcarto` version|R modules that include it| +| --- | --- | +|0.2.6|`R/4.2.2-foss-2022b`| + +### RNeXML + + +|`RNeXML` version|R modules that include it| +| --- | --- | +|2.4.11|`R/4.2.2-foss-2022b`| + +### rngtools + + +|`rngtools` version|R modules that include it| +| --- | --- | +|1.5.2|`R/4.2.2-foss-2022b`| + +### rngWELL + + +|`rngWELL` version|R modules that include it| +| --- | --- | +|0.10-9|`R/4.2.2-foss-2022b`| + +### RNifti + + +|`RNifti` version|R modules that include it| +| --- | --- | +|1.4.5|`R/4.2.2-foss-2022b`| + +### robustbase + + +|`robustbase` version|R modules that include it| +| --- | --- | +|0.95-0|`R/4.2.2-foss-2022b`| + +### ROCR + + +|`ROCR` version|R modules that include it| +| --- | --- | +|1.0-11|`R/4.2.2-foss-2022b`| + +### ROI + + +|`ROI` version|R modules that include it| +| --- | --- | +|1.0-0|`R/4.2.2-foss-2022b`| + +### ROI.plugin.glpk + + +|`ROI.plugin.glpk` version|R modules that include it| +| --- | --- | +|1.0-0|`R/4.2.2-foss-2022b`| + +### Rook + + +|`Rook` version|R modules that include it| +| --- | --- | +|1.2|`R/4.2.2-foss-2022b`| + +### rootSolve + + +|`rootSolve` version|R modules that include it| +| --- | --- | +|1.8.2.3|`R/4.2.2-foss-2022b`| + +### roptim + + +|`roptim` version|R modules that include it| +| --- | --- | +|0.1.6|`R/4.2.2-foss-2022b`| + +### rotl + + +|`rotl` version|R modules that include it| +| --- | --- | +|3.0.14|`R/4.2.2-foss-2022b`| + +### roxygen2 + + +|`roxygen2` version|R modules that include it| +| --- | --- | +|7.3.3|`R/4.5.1-gfbf-2025a`| +|7.3.2|`R/4.4.2-gfbf-2024a`| +|7.3.1|`R/4.4.1-gfbf-2023b`| +|7.2.3|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### rpact + + +|`rpact` version|R modules that include it| +| --- | --- | +|3.3.4|`R/4.2.2-foss-2022b`| + +### rpart + + +|`rpart` version|R modules that include it| +| --- | --- | +|4.1.19|`R/4.2.2-foss-2022b`| + +### rpf + + +|`rpf` version|R modules that include it| +| --- | --- | +|1.0.11|`R/4.2.2-foss-2022b`| + +### RPMM + + +|`RPMM` version|R modules that include it| +| --- | --- | +|1.25|`R/4.2.2-foss-2022b`| + +### rprojroot + + +|`rprojroot` version|R modules that include it| +| --- | --- | +|2.1.1|`R/4.5.1-gfbf-2025a`| +|2.0.4|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|2.0.3|`R/4.2.2-foss-2022b`| + +### rrcov + + +|`rrcov` version|R modules that include it| +| --- | --- | +|1.7-2|`R/4.2.2-foss-2022b`| + +### rredlist + + +|`rredlist` version|R modules that include it| +| --- | --- | +|0.7.1|`R/4.2.2-foss-2022b`| + +### rsample + + +|`rsample` version|R modules that include it| +| --- | --- | +|1.1.1|`R/4.2.2-foss-2022b`| + +### rsconnect + + +|`rsconnect` version|R modules that include it| +| --- | --- | +|0.8.29|`R/4.2.2-foss-2022b`| + +### Rserve + + +|`Rserve` version|R modules that include it| +| --- | --- | +|1.8-11|`R/4.2.2-foss-2022b`| + +### RSNNS + + +|`RSNNS` version|R modules that include it| +| --- | --- | +|0.4-15|`R/4.2.2-foss-2022b`| + +### Rsolnp + + +|`Rsolnp` version|R modules that include it| +| --- | --- | +|1.16|`R/4.2.2-foss-2022b`| + +### RSpectra + + +|`RSpectra` version|R modules that include it| +| --- | --- | +|0.16-1|`R/4.2.2-foss-2022b`| + +### RSQLite + + +|`RSQLite` version|R modules that include it| +| --- | --- | +|2.3.0|`R/4.2.2-foss-2022b`| + +### Rssa + + +|`Rssa` version|R modules that include it| +| --- | --- | +|1.0.5|`R/4.2.2-foss-2022b`| + +### rstan + + +|`rstan` version|R modules that include it| +| --- | --- | +|2.21.8|`R/4.2.2-foss-2022b`| + +### rstantools + + +|`rstantools` version|R modules that include it| +| --- | --- | +|2.3.0|`R/4.2.2-foss-2022b`| + +### rstatix + + +|`rstatix` version|R modules that include it| +| --- | --- | +|0.7.2|`R/4.2.2-foss-2022b`| + +### rstudioapi + + +|`rstudioapi` version|R modules that include it| +| --- | --- | +|0.17.1|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`| +|0.16.0|`R/4.4.1-gfbf-2023b`| +|0.15.0|`R/4.3.2-gfbf-2023a`| +|0.14|`R/4.2.2-foss-2022b`| + +### rtdists + + +|`rtdists` version|R modules that include it| +| --- | --- | +|0.11-5|`R/4.2.2-foss-2022b`| + +### Rtsne + + +|`Rtsne` version|R modules that include it| +| --- | --- | +|0.16|`R/4.2.2-foss-2022b`| + +### Rttf2pt1 + + +|`Rttf2pt1` version|R modules that include it| +| --- | --- | +|1.3.12|`R/4.2.2-foss-2022b`| + +### RUnit + + +|`RUnit` version|R modules that include it| +| --- | --- | +|0.4.32|`R/4.2.2-foss-2022b`| + +### ruv + + +|`ruv` version|R modules that include it| +| --- | --- | +|0.9.7.1|`R/4.2.2-foss-2022b`| + +### rversions + + +|`rversions` version|R modules that include it| +| --- | --- | +|2.1.2|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### rvertnet + + +|`rvertnet` version|R modules that include it| +| --- | --- | +|0.8.2|`R/4.2.2-foss-2022b`| + +### rvest + + +|`rvest` version|R modules that include it| +| --- | --- | +|1.0.3|`R/4.2.2-foss-2022b`| + +### rvinecopulib + + +|`rvinecopulib` version|R modules that include it| +| --- | --- | +|0.6.3.1.1|`R/4.2.2-foss-2022b`| + +### Rvmmin + + +|`Rvmmin` version|R modules that include it| +| --- | --- | +|2018-4.17.1|`R/4.2.2-foss-2022b`| + +### RWeka + + +|`RWeka` version|R modules that include it| +| --- | --- | +|0.4-46|`R/4.2.2-foss-2022b`| + +### RWekajars + + +|`RWekajars` version|R modules that include it| +| --- | --- | +|3.9.3-2|`R/4.2.2-foss-2022b`| + +### s + + +|`s` version|R modules that include it| +| --- | --- | +|t|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| +|p|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### s2 + + +|`s2` version|R modules that include it| +| --- | --- | +|1.1.2|`R/4.2.2-foss-2022b`| + +### sampling + + +|`sampling` version|R modules that include it| +| --- | --- | +|2.9|`R/4.2.2-foss-2022b`| + +### sandwich + + +|`sandwich` version|R modules that include it| +| --- | --- | +|3.0-2|`R/4.2.2-foss-2022b`| + +### sass + + +|`sass` version|R modules that include it| +| --- | --- | +|0.4.10|`R/4.5.1-gfbf-2025a`| +|0.4.9|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|0.4.7|`R/4.3.2-gfbf-2023a`| +|0.4.5|`R/4.2.2-foss-2022b`| + +### SBdecomp + + +|`SBdecomp` version|R modules that include it| +| --- | --- | +|1.2|`R/4.2.2-foss-2022b`| + +### scales + + +|`scales` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.2.2-foss-2022b`| + +### scam + + +|`scam` version|R modules that include it| +| --- | --- | +|1.2-13|`R/4.2.2-foss-2022b`| + +### scatterpie + + +|`scatterpie` version|R modules that include it| +| --- | --- | +|0.1.8|`R/4.2.2-foss-2022b`| + +### scatterplot3d + + +|`scatterplot3d` version|R modules that include it| +| --- | --- | +|0.3-43|`R/4.2.2-foss-2022b`| + +### scs + + +|`scs` version|R modules that include it| +| --- | --- | +|3.2.4|`R/4.2.2-foss-2022b`| + +### sctransform + + +|`sctransform` version|R modules that include it| +| --- | --- | +|0.3.5|`R/4.2.2-foss-2022b`| + +### SDMTools + + +|`SDMTools` version|R modules that include it| +| --- | --- | +|1.1-221.2|`R/4.2.2-foss-2022b`| + +### seewave + + +|`seewave` version|R modules that include it| +| --- | --- | +|2.2.0|`R/4.2.2-foss-2022b`| + +### segmented + + +|`segmented` version|R modules that include it| +| --- | --- | +|1.6-2|`R/4.2.2-foss-2022b`| + +### selectr + + +|`selectr` version|R modules that include it| +| --- | --- | +|0.4-2|`R/4.2.2-foss-2022b`| + +### sem + + +|`sem` version|R modules that include it| +| --- | --- | +|3.1-15|`R/4.2.2-foss-2022b`| + +### semPLS + + +|`semPLS` version|R modules that include it| +| --- | --- | +|1.0-10|`R/4.2.2-foss-2022b`| + +### semTools + + +|`semTools` version|R modules that include it| +| --- | --- | +|0.5-6|`R/4.2.2-foss-2022b`| + +### sendmailR + + +|`sendmailR` version|R modules that include it| +| --- | --- | +|1.4-0|`R/4.2.2-foss-2022b`| + +### sensemakr + + +|`sensemakr` version|R modules that include it| +| --- | --- | +|0.1.4|`R/4.2.2-foss-2022b`| + +### sentometrics + + +|`sentometrics` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### seqinr + + +|`seqinr` version|R modules that include it| +| --- | --- | +|4.2-23|`R/4.2.2-foss-2022b`| + +### servr + + +|`servr` version|R modules that include it| +| --- | --- | +|0.25|`R/4.2.2-foss-2022b`| + +### sessioninfo + + +|`sessioninfo` version|R modules that include it| +| --- | --- | +|1.2.3|`R/4.5.1-gfbf-2025a`| +|1.2.2|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### setRNG + + +|`setRNG` version|R modules that include it| +| --- | --- | +|2022.4-1|`R/4.2.2-foss-2022b`| + +### sf + + +|`sf` version|R modules that include it| +| --- | --- | +|1.0-11|`R/4.2.2-foss-2022b`| + +### sfheaders + + +|`sfheaders` version|R modules that include it| +| --- | --- | +|0.4.2|`R/4.2.2-foss-2022b`| + +### sfsmisc + + +|`sfsmisc` version|R modules that include it| +| --- | --- | +|1.1-14|`R/4.2.2-foss-2022b`| + +### shadowtext + + +|`shadowtext` version|R modules that include it| +| --- | --- | +|0.1.2|`R/4.2.2-foss-2022b`| + +### shape + + +|`shape` version|R modules that include it| +| --- | --- | +|1.4.6|`R/4.2.2-foss-2022b`| + +### shapefiles + + +|`shapefiles` version|R modules that include it| +| --- | --- | +|0.7.2|`R/4.2.2-foss-2022b`| + +### shiny + + +|`shiny` version|R modules that include it| +| --- | --- | +|1.11.1|`R/4.5.1-gfbf-2025a`| +|1.9.1|`R/4.4.2-gfbf-2024a`| +|1.8.1.1|`R/4.4.1-gfbf-2023b`| +|1.7.5.1|`R/4.3.2-gfbf-2023a`| +|1.7.4|`R/4.2.2-foss-2022b`| + +### shinycssloaders + + +|`shinycssloaders` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### shinydashboard + + +|`shinydashboard` version|R modules that include it| +| --- | --- | +|0.7.2|`R/4.2.2-foss-2022b`| + +### shinyjs + + +|`shinyjs` version|R modules that include it| +| --- | --- | +|2.1.0|`R/4.2.2-foss-2022b`| + +### shinystan + + +|`shinystan` version|R modules that include it| +| --- | --- | +|2.6.0|`R/4.2.2-foss-2022b`| + +### shinythemes + + +|`shinythemes` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### signal + + +|`signal` version|R modules that include it| +| --- | --- | +|0.7-7|`R/4.2.2-foss-2022b`| + +### SignifReg + + +|`SignifReg` version|R modules that include it| +| --- | --- | +|4.3|`R/4.2.2-foss-2022b`| + +### simex + + +|`simex` version|R modules that include it| +| --- | --- | +|1.8|`R/4.2.2-foss-2022b`| + +### SimSeq + + +|`SimSeq` version|R modules that include it| +| --- | --- | +|1.4.0|`R/4.2.2-foss-2022b`| + +### SKAT + + +|`SKAT` version|R modules that include it| +| --- | --- | +|2.2.5|`R/4.2.2-foss-2022b`| + +### slam + + +|`slam` version|R modules that include it| +| --- | --- | +|0.1-50|`R/4.2.2-foss-2022b`| + +### slider + + +|`slider` version|R modules that include it| +| --- | --- | +|0.3.0|`R/4.2.2-foss-2022b`| + +### sm + + +|`sm` version|R modules that include it| +| --- | --- | +|2.2-5.7.1|`R/4.2.2-foss-2022b`| + +### smoof + + +|`smoof` version|R modules that include it| +| --- | --- | +|1.6.0.3|`R/4.2.2-foss-2022b`| + +### smoother + + +|`smoother` version|R modules that include it| +| --- | --- | +|1.1|`R/4.2.2-foss-2022b`| + +### sn + + +|`sn` version|R modules that include it| +| --- | --- | +|2.1.0|`R/4.2.2-foss-2022b`| + +### sna + + +|`sna` version|R modules that include it| +| --- | --- | +|2.7-1|`R/4.2.2-foss-2022b`| + +### SNFtool + + +|`SNFtool` version|R modules that include it| +| --- | --- | +|2.3.1|`R/4.2.2-foss-2022b`| + +### snow + + +|`snow` version|R modules that include it| +| --- | --- | +|0.4-4|`R/4.2.2-foss-2022b`| + +### SnowballC + + +|`SnowballC` version|R modules that include it| +| --- | --- | +|0.7.0|`R/4.2.2-foss-2022b`| + +### snowfall + + +|`snowfall` version|R modules that include it| +| --- | --- | +|1.84-6.2|`R/4.2.2-foss-2022b`| + +### SOAR + + +|`SOAR` version|R modules that include it| +| --- | --- | +|0.99-11|`R/4.2.2-foss-2022b`| + +### solrium + + +|`solrium` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### som + + +|`som` version|R modules that include it| +| --- | --- | +|0.3-5.1|`R/4.2.2-foss-2022b`| + +### soundecology + + +|`soundecology` version|R modules that include it| +| --- | --- | +|1.3.3|`R/4.2.2-foss-2022b`| + +### sourcetools + + +|`sourcetools` version|R modules that include it| +| --- | --- | +|0.1.7-1|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### sp + + +|`sp` version|R modules that include it| +| --- | --- | +|1.6-0|`R/4.2.2-foss-2022b`| + +### spaa + + +|`spaa` version|R modules that include it| +| --- | --- | +|0.2.2|`R/4.2.2-foss-2022b`| + +### spam + + +|`spam` version|R modules that include it| +| --- | --- | +|2.9-1|`R/4.2.2-foss-2022b`| + +### spaMM + + +|`spaMM` version|R modules that include it| +| --- | --- | +|4.2.1|`R/4.2.2-foss-2022b`| + +### SparseM + + +|`SparseM` version|R modules that include it| +| --- | --- | +|1.81|`R/4.2.2-foss-2022b`| + +### SPAtest + + +|`SPAtest` version|R modules that include it| +| --- | --- | +|3.1.2|`R/4.2.2-foss-2022b`| + +### spatial + + +|`spatial` version|R modules that include it| +| --- | --- | +|7.3-16|`R/4.2.2-foss-2022b`| + +### spatstat + + +|`spatstat` version|R modules that include it| +| --- | --- | +|3.0-3|`R/4.2.2-foss-2022b`| + +### spatstat.core + + +|`spatstat.core` version|R modules that include it| +| --- | --- | +|2.4-4|`R/4.2.2-foss-2022b`| + +### spatstat.data + + +|`spatstat.data` version|R modules that include it| +| --- | --- | +|3.0-1|`R/4.2.2-foss-2022b`| + +### spatstat.explore + + +|`spatstat.explore` version|R modules that include it| +| --- | --- | +|3.1-0|`R/4.2.2-foss-2022b`| + +### spatstat.geom + + +|`spatstat.geom` version|R modules that include it| +| --- | --- | +|3.1-0|`R/4.2.2-foss-2022b`| + +### spatstat.linnet + + +|`spatstat.linnet` version|R modules that include it| +| --- | --- | +|3.0-6|`R/4.2.2-foss-2022b`| + +### spatstat.model + + +|`spatstat.model` version|R modules that include it| +| --- | --- | +|3.2-1|`R/4.2.2-foss-2022b`| + +### spatstat.random + + +|`spatstat.random` version|R modules that include it| +| --- | --- | +|3.1-4|`R/4.2.2-foss-2022b`| + +### spatstat.sparse + + +|`spatstat.sparse` version|R modules that include it| +| --- | --- | +|3.0-1|`R/4.2.2-foss-2022b`| + +### spatstat.utils + + +|`spatstat.utils` version|R modules that include it| +| --- | --- | +|3.0-2|`R/4.2.2-foss-2022b`| + +### spData + + +|`spData` version|R modules that include it| +| --- | --- | +|2.2.2|`R/4.2.2-foss-2022b`| + +### splitstackshape + + +|`splitstackshape` version|R modules that include it| +| --- | --- | +|1.4.8|`R/4.2.2-foss-2022b`| + +### spls + + +|`spls` version|R modules that include it| +| --- | --- | +|2.2-3|`R/4.2.2-foss-2022b`| + +### spocc + + +|`spocc` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.2.2-foss-2022b`| + +### spThin + + +|`spThin` version|R modules that include it| +| --- | --- | +|0.2.0|`R/4.2.2-foss-2022b`| + +### SQUAREM + + +|`SQUAREM` version|R modules that include it| +| --- | --- | +|2021.1|`R/4.2.2-foss-2022b`| + +### stabledist + + +|`stabledist` version|R modules that include it| +| --- | --- | +|0.7-1|`R/4.2.2-foss-2022b`| + +### stabs + + +|`stabs` version|R modules that include it| +| --- | --- | +|0.6-4|`R/4.2.2-foss-2022b`| + +### StanHeaders + + +|`StanHeaders` version|R modules that include it| +| --- | --- | +|2.21.0-7|`R/4.2.2-foss-2022b`| + +### stargazer + + +|`stargazer` version|R modules that include it| +| --- | --- | +|5.2.3|`R/4.2.2-foss-2022b`| + +### stars + + +|`stars` version|R modules that include it| +| --- | --- | +|0.6-0|`R/4.2.2-foss-2022b`| + +### startupmsg + + +|`startupmsg` version|R modules that include it| +| --- | --- | +|0.9.6|`R/4.2.2-foss-2022b`| + +### StatMatch + + +|`StatMatch` version|R modules that include it| +| --- | --- | +|1.4.1|`R/4.2.2-foss-2022b`| + +### statmod + + +|`statmod` version|R modules that include it| +| --- | --- | +|1.5.0|`R/4.2.2-foss-2022b`| + +### statnet + + +|`statnet` version|R modules that include it| +| --- | --- | +|2019.6|`R/4.2.2-foss-2022b`| + +### statnet.common + + +|`statnet.common` version|R modules that include it| +| --- | --- | +|4.8.0|`R/4.2.2-foss-2022b`| + +### stdReg + + +|`stdReg` version|R modules that include it| +| --- | --- | +|3.4.1|`R/4.2.2-foss-2022b`| + +### stopwords + + +|`stopwords` version|R modules that include it| +| --- | --- | +|2.3|`R/4.2.2-foss-2022b`| + +### stringdist + + +|`stringdist` version|R modules that include it| +| --- | --- | +|0.9.10|`R/4.2.2-foss-2022b`| + +### stringi + + +|`stringi` version|R modules that include it| +| --- | --- | +|1.8.7|`R/4.5.1-gfbf-2025a`| +|1.8.4|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.7.12|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### stringr + + +|`stringr` version|R modules that include it| +| --- | --- | +|1.5.2|`R/4.5.1-gfbf-2025a`| +|1.5.1|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.5.0|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### strucchange + + +|`strucchange` version|R modules that include it| +| --- | --- | +|1.5-3|`R/4.2.2-foss-2022b`| + +### styler + + +|`styler` version|R modules that include it| +| --- | --- | +|1.9.1|`R/4.2.2-foss-2022b`| + +### subplex + + +|`subplex` version|R modules that include it| +| --- | --- | +|1.8|`R/4.2.2-foss-2022b`| + +### SuperLearner + + +|`SuperLearner` version|R modules that include it| +| --- | --- | +|2.0-28|`R/4.2.2-foss-2022b`| + +### SuppDists + + +|`SuppDists` version|R modules that include it| +| --- | --- | +|1.1-9.7|`R/4.2.2-foss-2022b`| + +### survey + + +|`survey` version|R modules that include it| +| --- | --- | +|4.1-1|`R/4.2.2-foss-2022b`| + +### survival + + +|`survival` version|R modules that include it| +| --- | --- | +|3.5-5|`R/4.2.2-foss-2022b`| + +### survivalROC + + +|`survivalROC` version|R modules that include it| +| --- | --- | +|1.0.3.1|`R/4.2.2-foss-2022b`| + +### svd + + +|`svd` version|R modules that include it| +| --- | --- | +|0.5.3|`R/4.2.2-foss-2022b`| + +### svglite + + +|`svglite` version|R modules that include it| +| --- | --- | +|2.1.1|`R/4.2.2-foss-2022b`| + +### swagger + + +|`swagger` version|R modules that include it| +| --- | --- | +|3.33.1|`R/4.2.2-foss-2022b`| + +### symmoments + + +|`symmoments` version|R modules that include it| +| --- | --- | +|1.2.1|`R/4.2.2-foss-2022b`| + +### sys + + +|`sys` version|R modules that include it| +| --- | --- | +|3.4.3|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`| +|3.4.2|`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|3.4.1|`R/4.2.2-foss-2022b`| + +### systemfonts + + +|`systemfonts` version|R modules that include it| +| --- | --- | +|1.3.1|`R/4.5.1-gfbf-2025a`| +|1.1.0|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.0.5|`R/4.3.2-gfbf-2023a`| +|1.0.4|`R/4.2.2-foss-2022b`| + +### t + + +|`t` version|R modules that include it| +| --- | --- | +|o|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| +|c|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### tableone + + +|`tableone` version|R modules that include it| +| --- | --- | +|0.13.2|`R/4.2.2-foss-2022b`| + +### tabletools + + +|`tabletools` version|R modules that include it| +| --- | --- | +|0.1.0|`R/4.2.2-foss-2022b`| + +### tau + + +|`tau` version|R modules that include it| +| --- | --- | +|0.0-24|`R/4.2.2-foss-2022b`| + +### taxize + + +|`taxize` version|R modules that include it| +| --- | --- | +|0.9.100|`R/4.2.2-foss-2022b`| + +### tcltk2 + + +|`tcltk2` version|R modules that include it| +| --- | --- | +|1.2-11|`R/4.2.2-foss-2022b`| + +### tclust + + +|`tclust` version|R modules that include it| +| --- | --- | +|1.5-2|`R/4.2.2-foss-2022b`| + +### TeachingDemos + + +|`TeachingDemos` version|R modules that include it| +| --- | --- | +|2.12|`R/4.2.2-foss-2022b`| + +### tensor + + +|`tensor` version|R modules that include it| +| --- | --- | +|1.5|`R/4.2.2-foss-2022b`| + +### tensorA + + +|`tensorA` version|R modules that include it| +| --- | --- | +|0.36.2|`R/4.2.2-foss-2022b`| + +### tergm + + +|`tergm` version|R modules that include it| +| --- | --- | +|4.1.1|`R/4.2.2-foss-2022b`| + +### terra + + +|`terra` version|R modules that include it| +| --- | --- | +|1.7-18|`R/4.2.2-foss-2022b`| + +### testit + + +|`testit` version|R modules that include it| +| --- | --- | +|0.13|`R/4.2.2-foss-2022b`| + +### testthat + + +|`testthat` version|R modules that include it| +| --- | --- | +|3.2.3|`R/4.5.1-gfbf-2025a`| +|3.2.1.1|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|3.2.0|`R/4.3.2-gfbf-2023a`| +|3.1.7|`R/4.2.2-foss-2022b`| + +### textcat + + +|`textcat` version|R modules that include it| +| --- | --- | +|1.0-8|`R/4.2.2-foss-2022b`| + +### textplot + + +|`textplot` version|R modules that include it| +| --- | --- | +|0.2.2|`R/4.2.2-foss-2022b`| + +### textshaping + + +|`textshaping` version|R modules that include it| +| --- | --- | +|1.0.3|`R/4.5.1-gfbf-2025a`| +|0.4.0|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|0.3.7|`R/4.3.2-gfbf-2023a`| +|0.3.6|`R/4.2.2-foss-2022b`| + +### TFisher + + +|`TFisher` version|R modules that include it| +| --- | --- | +|0.2.0|`R/4.2.2-foss-2022b`| + +### TH.data + + +|`TH.data` version|R modules that include it| +| --- | --- | +|1.1-1|`R/4.2.2-foss-2022b`| + +### threejs + + +|`threejs` version|R modules that include it| +| --- | --- | +|0.3.3|`R/4.2.2-foss-2022b`| + +### tibble + + +|`tibble` version|R modules that include it| +| --- | --- | +|3.3.0|`R/4.5.1-gfbf-2025a`| +|3.2.1|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|3.2.0|`R/4.2.2-foss-2022b`| + +### tictoc + + +|`tictoc` version|R modules that include it| +| --- | --- | +|1.1|`R/4.2.2-foss-2022b`| + +### tidygraph + + +|`tidygraph` version|R modules that include it| +| --- | --- | +|1.2.3|`R/4.2.2-foss-2022b`| + +### tidyr + + +|`tidyr` version|R modules that include it| +| --- | --- | +|1.3.0|`R/4.2.2-foss-2022b`| + +### tidyselect + + +|`tidyselect` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### tidytext + + +|`tidytext` version|R modules that include it| +| --- | --- | +|0.4.1|`R/4.2.2-foss-2022b`| + +### tidytree + + +|`tidytree` version|R modules that include it| +| --- | --- | +|0.4.2|`R/4.2.2-foss-2022b`| + +### tidyverse + + +|`tidyverse` version|R modules that include it| +| --- | --- | +|2.0.0|`R/4.2.2-foss-2022b`| + +### tiff + + +|`tiff` version|R modules that include it| +| --- | --- | +|0.1-11|`R/4.2.2-foss-2022b`| + +### timechange + + +|`timechange` version|R modules that include it| +| --- | --- | +|0.2.0|`R/4.2.2-foss-2022b`| + +### timeDate + + +|`timeDate` version|R modules that include it| +| --- | --- | +|4022.108|`R/4.2.2-foss-2022b`| + +### timereg + + +|`timereg` version|R modules that include it| +| --- | --- | +|2.0.5|`R/4.2.2-foss-2022b`| + +### tinytex + + +|`tinytex` version|R modules that include it| +| --- | --- | +|0.57|`R/4.5.1-gfbf-2025a`| +|0.54|`R/4.4.2-gfbf-2024a`| +|0.51|`R/4.4.1-gfbf-2023b`| +|0.48|`R/4.3.2-gfbf-2023a`| +|0.44|`R/4.2.2-foss-2022b`| + +### tkrplot + + +|`tkrplot` version|R modules that include it| +| --- | --- | +|0.0-27|`R/4.2.2-foss-2022b`| + +### tm + + +|`tm` version|R modules that include it| +| --- | --- | +|0.7-11|`R/4.2.2-foss-2022b`| + +### tmap + + +|`tmap` version|R modules that include it| +| --- | --- | +|3.3-3|`R/4.2.2-foss-2022b`| + +### tmaptools + + +|`tmaptools` version|R modules that include it| +| --- | --- | +|3.1-1|`R/4.2.2-foss-2022b`| + +### TMB + + +|`TMB` version|R modules that include it| +| --- | --- | +|1.9.2|`R/4.2.2-foss-2022b`| + +### tmle + + +|`tmle` version|R modules that include it| +| --- | --- | +|1.5.0.2|`R/4.2.2-foss-2022b`| + +### tmvnsim + + +|`tmvnsim` version|R modules that include it| +| --- | --- | +|1.0-2|`R/4.2.2-foss-2022b`| + +### tmvtnorm + + +|`tmvtnorm` version|R modules that include it| +| --- | --- | +|1.5|`R/4.2.2-foss-2022b`| + +### tokenizers + + +|`tokenizers` version|R modules that include it| +| --- | --- | +|0.3.0|`R/4.2.2-foss-2022b`| + +### topicmodels + + +|`topicmodels` version|R modules that include it| +| --- | --- | +|0.2-13|`R/4.2.2-foss-2022b`| + +### TraMineR + + +|`TraMineR` version|R modules that include it| +| --- | --- | +|2.2-6|`R/4.2.2-foss-2022b`| + +### tree + + +|`tree` version|R modules that include it| +| --- | --- | +|1.0-43|`R/4.2.2-foss-2022b`| + +### triebeard + + +|`triebeard` version|R modules that include it| +| --- | --- | +|0.4.1|`R/4.2.2-foss-2022b`| + +### trimcluster + + +|`trimcluster` version|R modules that include it| +| --- | --- | +|0.1-5|`R/4.2.2-foss-2022b`| + +### tripack + + +|`tripack` version|R modules that include it| +| --- | --- | +|1.3-9.1|`R/4.2.2-foss-2022b`| + +### TruncatedNormal + + +|`TruncatedNormal` version|R modules that include it| +| --- | --- | +|2.2.2|`R/4.2.2-foss-2022b`| + +### truncnorm + + +|`truncnorm` version|R modules that include it| +| --- | --- | +|1.0-8|`R/4.2.2-foss-2022b`| + +### trust + + +|`trust` version|R modules that include it| +| --- | --- | +|0.1-8|`R/4.2.2-foss-2022b`| + +### tseries + + +|`tseries` version|R modules that include it| +| --- | --- | +|0.10-53|`R/4.2.2-foss-2022b`| + +### tseriesChaos + + +|`tseriesChaos` version|R modules that include it| +| --- | --- | +|0.1-13.1|`R/4.2.2-foss-2022b`| + +### tsna + + +|`tsna` version|R modules that include it| +| --- | --- | +|0.3.5|`R/4.2.2-foss-2022b`| + +### tsne + + +|`tsne` version|R modules that include it| +| --- | --- | +|0.1-3.1|`R/4.2.2-foss-2022b`| + +### TTR + + +|`TTR` version|R modules that include it| +| --- | --- | +|0.24.3|`R/4.2.2-foss-2022b`| + +### tuneR + + +|`tuneR` version|R modules that include it| +| --- | --- | +|1.4.3|`R/4.2.2-foss-2022b`| + +### twang + + +|`twang` version|R modules that include it| +| --- | --- | +|2.5|`R/4.2.2-foss-2022b`| + +### tweedie + + +|`tweedie` version|R modules that include it| +| --- | --- | +|2.3.5|`R/4.2.2-foss-2022b`| + +### tweenr + + +|`tweenr` version|R modules that include it| +| --- | --- | +|2.0.2|`R/4.2.2-foss-2022b`| + +### tzdb + + +|`tzdb` version|R modules that include it| +| --- | --- | +|0.3.0|`R/4.2.2-foss-2022b`| + +### u + + +|`u` version|R modules that include it| +| --- | --- | +|t|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### ucminf + + +|`ucminf` version|R modules that include it| +| --- | --- | +|1.1-4.1|`R/4.2.2-foss-2022b`| + +### udpipe + + +|`udpipe` version|R modules that include it| +| --- | --- | +|0.8.11|`R/4.2.2-foss-2022b`| + +### umap + + +|`umap` version|R modules that include it| +| --- | --- | +|0.2.10.0|`R/4.2.2-foss-2022b`| + +### unbalanced + + +|`unbalanced` version|R modules that include it| +| --- | --- | +|2.0|`R/4.2.2-foss-2022b`| + +### unikn + + +|`unikn` version|R modules that include it| +| --- | --- | +|0.8.0|`R/4.2.2-foss-2022b`| + +### uniqueAtomMat + + +|`uniqueAtomMat` version|R modules that include it| +| --- | --- | +|0.1-3-2|`R/4.2.2-foss-2022b`| + +### units + + +|`units` version|R modules that include it| +| --- | --- | +|0.8-1|`R/4.2.2-foss-2022b`| + +### unmarked + + +|`unmarked` version|R modules that include it| +| --- | --- | +|1.2.5|`R/4.2.2-foss-2022b`| + +### UpSetR + + +|`UpSetR` version|R modules that include it| +| --- | --- | +|1.4.0|`R/4.2.2-foss-2022b`| + +### urca + + +|`urca` version|R modules that include it| +| --- | --- | +|1.3-3|`R/4.2.2-foss-2022b`| + +### urlchecker + + +|`urlchecker` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### urltools + + +|`urltools` version|R modules that include it| +| --- | --- | +|1.7.3|`R/4.2.2-foss-2022b`| + +### uroot + + +|`uroot` version|R modules that include it| +| --- | --- | +|2.1-2|`R/4.2.2-foss-2022b`| + +### usethis + + +|`usethis` version|R modules that include it| +| --- | --- | +|3.2.1|`R/4.5.1-gfbf-2025a`| +|3.0.0|`R/4.4.2-gfbf-2024a`| +|2.2.3|`R/4.4.1-gfbf-2023b`| +|2.2.2|`R/4.3.2-gfbf-2023a`| +|2.1.6|`R/4.2.2-foss-2022b`| + +### utf8 + + +|`utf8` version|R modules that include it| +| --- | --- | +|1.2.6|`R/4.5.1-gfbf-2025a`| +|1.2.4|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|1.2.3|`R/4.2.2-foss-2022b`| + +### uuid + + +|`uuid` version|R modules that include it| +| --- | --- | +|1.1-0|`R/4.2.2-foss-2022b`| + +### V8 + + +|`V8` version|R modules that include it| +| --- | --- | +|4.2.2|`R/4.2.2-foss-2022b`| + +### varhandle + + +|`varhandle` version|R modules that include it| +| --- | --- | +|2.0.5|`R/4.2.2-foss-2022b`| + +### vcd + + +|`vcd` version|R modules that include it| +| --- | --- | +|1.4-11|`R/4.2.2-foss-2022b`| + +### vcfR + + +|`vcfR` version|R modules that include it| +| --- | --- | +|1.14.0|`R/4.2.2-foss-2022b`| + +### vctrs + + +|`vctrs` version|R modules that include it| +| --- | --- | +|0.6.5|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|0.6.4|`R/4.3.2-gfbf-2023a`| +|0.6.0|`R/4.2.2-foss-2022b`| + +### vegan + + +|`vegan` version|R modules that include it| +| --- | --- | +|2.6-4|`R/4.2.2-foss-2022b`| + +### VennDiagram + + +|`VennDiagram` version|R modules that include it| +| --- | --- | +|1.7.3|`R/4.2.2-foss-2022b`| + +### VGAM + + +|`VGAM` version|R modules that include it| +| --- | --- | +|1.1-8|`R/4.2.2-foss-2022b`| + +### VIM + + +|`VIM` version|R modules that include it| +| --- | --- | +|6.2.2|`R/4.2.2-foss-2022b`| + +### VineCopula + + +|`VineCopula` version|R modules that include it| +| --- | --- | +|2.4.5|`R/4.2.2-foss-2022b`| + +### vioplot + + +|`vioplot` version|R modules that include it| +| --- | --- | +|0.4.0|`R/4.2.2-foss-2022b`| + +### vipor + + +|`vipor` version|R modules that include it| +| --- | --- | +|0.4.5|`R/4.2.2-foss-2022b`| + +### viridis + + +|`viridis` version|R modules that include it| +| --- | --- | +|0.6.2|`R/4.2.2-foss-2022b`| + +### viridisLite + + +|`viridisLite` version|R modules that include it| +| --- | --- | +|0.4.1|`R/4.2.2-foss-2022b`| + +### visdat + + +|`visdat` version|R modules that include it| +| --- | --- | +|0.6.0|`R/4.2.2-foss-2022b`| + +### visNetwork + + +|`visNetwork` version|R modules that include it| +| --- | --- | +|2.1.2|`R/4.2.2-foss-2022b`| + +### vroom + + +|`vroom` version|R modules that include it| +| --- | --- | +|1.6.1|`R/4.2.2-foss-2022b`| + +### VSURF + + +|`VSURF` version|R modules that include it| +| --- | --- | +|1.2.0|`R/4.2.2-foss-2022b`| + +### waldo + + +|`waldo` version|R modules that include it| +| --- | --- | +|0.6.2|`R/4.5.1-gfbf-2025a`| +|0.6.1|`R/4.4.2-gfbf-2024a`| +|0.5.2|`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`| +|0.4.0|`R/4.2.2-foss-2022b`| + +### warp + + +|`warp` version|R modules that include it| +| --- | --- | +|0.2.0|`R/4.2.2-foss-2022b`| + +### waveslim + + +|`waveslim` version|R modules that include it| +| --- | --- | +|1.8.4|`R/4.2.2-foss-2022b`| + +### wdm + + +|`wdm` version|R modules that include it| +| --- | --- | +|0.2.3|`R/4.2.2-foss-2022b`| + +### webshot + + +|`webshot` version|R modules that include it| +| --- | --- | +|0.5.4|`R/4.2.2-foss-2022b`| + +### webutils + + +|`webutils` version|R modules that include it| +| --- | --- | +|1.1|`R/4.2.2-foss-2022b`| + +### weights + + +|`weights` version|R modules that include it| +| --- | --- | +|1.0.4|`R/4.2.2-foss-2022b`| + +### WeightSVM + + +|`WeightSVM` version|R modules that include it| +| --- | --- | +|1.7-11|`R/4.2.2-foss-2022b`| + +### wellknown + + +|`wellknown` version|R modules that include it| +| --- | --- | +|0.7.4|`R/4.2.2-foss-2022b`| + +### whisker + + +|`whisker` version|R modules that include it| +| --- | --- | +|0.4.1|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### widgetframe + + +|`widgetframe` version|R modules that include it| +| --- | --- | +|0.3.1|`R/4.2.2-foss-2022b`| + +### WikidataQueryServiceR + + +|`WikidataQueryServiceR` version|R modules that include it| +| --- | --- | +|1.0.0|`R/4.2.2-foss-2022b`| + +### WikidataR + + +|`WikidataR` version|R modules that include it| +| --- | --- | +|2.3.3|`R/4.2.2-foss-2022b`| + +### WikipediR + + +|`WikipediR` version|R modules that include it| +| --- | --- | +|1.5.0|`R/4.2.2-foss-2022b`| + +### wikitaxa + + +|`wikitaxa` version|R modules that include it| +| --- | --- | +|0.4.0|`R/4.2.2-foss-2022b`| + +### withr + + +|`withr` version|R modules that include it| +| --- | --- | +|3.0.2|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`| +|3.0.0|`R/4.4.1-gfbf-2023b`| +|2.5.2|`R/4.3.2-gfbf-2023a`| +|2.5.0|`R/4.2.2-foss-2022b`| + +### wk + + +|`wk` version|R modules that include it| +| --- | --- | +|0.7.1|`R/4.2.2-foss-2022b`| + +### word2vec + + +|`word2vec` version|R modules that include it| +| --- | --- | +|0.3.4|`R/4.2.2-foss-2022b`| + +### wordcloud + + +|`wordcloud` version|R modules that include it| +| --- | --- | +|2.6|`R/4.2.2-foss-2022b`| + +### worrms + + +|`worrms` version|R modules that include it| +| --- | --- | +|0.4.2|`R/4.2.2-foss-2022b`| + +### WriteXLS + + +|`WriteXLS` version|R modules that include it| +| --- | --- | +|6.4.0|`R/4.2.2-foss-2022b`| + +### xfun + + +|`xfun` version|R modules that include it| +| --- | --- | +|0.53|`R/4.5.1-gfbf-2025a`| +|0.49|`R/4.4.2-gfbf-2024a`| +|0.45|`R/4.4.1-gfbf-2023b`| +|0.41|`R/4.3.2-gfbf-2023a`| +|0.37|`R/4.2.2-foss-2022b`| + +### xgboost + + +|`xgboost` version|R modules that include it| +| --- | --- | +|1.7.3.1|`R/4.2.2-foss-2022b`| + +### xlsx + + +|`xlsx` version|R modules that include it| +| --- | --- | +|0.6.5|`R/4.2.2-foss-2022b`| + +### xlsxjars + + +|`xlsxjars` version|R modules that include it| +| --- | --- | +|0.6.1|`R/4.2.2-foss-2022b`| + +### XML + + +|`XML` version|R modules that include it| +| --- | --- | +|3.99-0.13|`R/4.2.2-foss-2022b`| + +### xml2 + + +|`xml2` version|R modules that include it| +| --- | --- | +|1.4.0|`R/4.5.1-gfbf-2025a`| +|1.3.6|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.3.5|`R/4.3.2-gfbf-2023a`| +|1.3.3|`R/4.2.2-foss-2022b`| + +### xopen + + +|`xopen` version|R modules that include it| +| --- | --- | +|1.0.1|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|1.0.0|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### xtable + + +|`xtable` version|R modules that include it| +| --- | --- | +|1.8-4|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`
`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### xts + + +|`xts` version|R modules that include it| +| --- | --- | +|0.13.0|`R/4.2.2-foss-2022b`| + +### yaImpute + + +|`yaImpute` version|R modules that include it| +| --- | --- | +|1.0-33|`R/4.2.2-foss-2022b`| + +### yaml + + +|`yaml` version|R modules that include it| +| --- | --- | +|2.3.10|`R/4.5.1-gfbf-2025a`
`R/4.4.2-gfbf-2024a`| +|2.3.8|`R/4.4.1-gfbf-2023b`| +|2.3.7|`R/4.3.2-gfbf-2023a`
`R/4.2.2-foss-2022b`| + +### yulab.utils + + +|`yulab.utils` version|R modules that include it| +| --- | --- | +|0.0.6|`R/4.2.2-foss-2022b`| + +### zeallot + + +|`zeallot` version|R modules that include it| +| --- | --- | +|0.1.0|`R/4.2.2-foss-2022b`| + +### zip + + +|`zip` version|R modules that include it| +| --- | --- | +|2.3.3|`R/4.5.1-gfbf-2025a`| +|2.3.1|`R/4.4.2-gfbf-2024a`
`R/4.4.1-gfbf-2023b`| +|2.3.0|`R/4.3.2-gfbf-2023a`| +|2.2.2|`R/4.2.2-foss-2022b`| + +### zoo + + +|`zoo` version|R modules that include it| +| --- | --- | +|1.8-11|`R/4.2.2-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/RAxML.md b/docs/available_software/detail/RAxML.md index f6cdb1be29..e17c128aa8 100644 --- a/docs/available_software/detail/RAxML.md +++ b/docs/available_software/detail/RAxML.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''RAxML/8.2.13-gompi-2023a-avx2'', ''RAxML/8.2.13-gompi-2023a-standard'', - ''RAxML/8.2.13-gompi-2023b'']' + softwareVersion: '[''8.2.13'']' url: https://github.com/stamatak/standard-RAxML --- - -RAxML -===== +# RAxML RAxML search algorithm for maximum likelihood based inference of phylogenetic trees. -https://github.com/stamatak/standard-RAxML -# Available modules - - -The overview below shows which RAxML installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using RAxML, load one of these modules using a `module load` command like: +homepage: [https://github.com/stamatak/standard-RAxML](https://github.com/stamatak/standard-RAxML) -```shell -module load RAxML/8.2.13-gompi-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|RAxML/8.2.13-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|RAxML/8.2.13-gompi-2023a-standard|x|x|x|x|x|-|-|-|-|-|-|-|-|-| -|RAxML/8.2.13-gompi-2023a-avx2|-|-|-|-|-|x|x|x|x|x|x|x|x|x| +|RAxML version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.2.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RAxML/8.2.13-gompi-2023b`| +|8.2.13|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RAxML/8.2.13-gompi-2023a-avx2`| \ No newline at end of file diff --git a/docs/available_software/detail/RDFlib.md b/docs/available_software/detail/RDFlib.md index d6832efdc7..1481c94b19 100644 --- a/docs/available_software/detail/RDFlib.md +++ b/docs/available_software/detail/RDFlib.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: RDFLib is a Python library for working with RDF, a simple yet powerful - language for representing information. + description: "RDFLib is a Python library for working with RDF, a simple yet powerful\ + \ language\n for representing information." license: Not confirmed name: RDFlib offers: @@ -25,37 +23,32 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''RDFlib/7.1.4-GCCcore-13.2.0'']' + softwareVersion: '[''7.1.4'']' url: https://github.com/RDFLib/rdflib --- +# RDFlib -RDFlib -====== +RDFLib is a Python library for working with RDF, a simple yet powerful language + for representing information. -RDFLib is a Python library for working with RDF, a simple yet powerful language for representing information. +homepage: [https://github.com/RDFLib/rdflib](https://github.com/RDFLib/rdflib) -https://github.com/RDFLib/rdflib -# Available modules +## Available installations -The overview below shows which RDFlib installations are available per target architecture in EESSI, ordered based on software version (new to old). +|RDFlib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.1.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RDFlib/7.1.4-GCCcore-13.2.0`| -To start using RDFlib, load one of these modules using a `module load` command like: +## Extensions -```shell -module load RDFlib/7.1.4-GCCcore-13.2.0 -``` +Overview of extensions included in RDFlib installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|RDFlib/7.1.4-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### rdflib -### RDFlib/7.1.4-GCCcore-13.2.0 - -This is a list of extensions included in the module: - -rdflib-7.1.4 \ No newline at end of file +|`rdflib` version|RDFlib modules that include it| +| --- | --- | +|7.1.4|`RDFlib/7.1.4-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/RDKit.md b/docs/available_software/detail/RDKit.md index f3d93a8d38..e98f0e3878 100644 --- a/docs/available_software/detail/RDKit.md +++ b/docs/available_software/detail/RDKit.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''RDKit/2024.03.3-foss-2023a'']' + softwareVersion: '[''2025.03.4'', ''2024.03.3'']' url: https://www.rdkit.org --- - -RDKit -===== +# RDKit RDKit is a collection of cheminformatics and machine-learning software written in C++ and Python. -https://www.rdkit.org -# Available modules - - -The overview below shows which RDKit installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using RDKit, load one of these modules using a `module load` command like: +homepage: [https://www.rdkit.org](https://www.rdkit.org) -```shell -module load RDKit/2024.03.3-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|RDKit/2024.03.3-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|RDKit version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025.03.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`RDKit/2025.03.4-foss-2025a`| +|2024.03.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RDKit/2024.03.3-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/RE2.md b/docs/available_software/detail/RE2.md index 380cc39353..671adfec98 100644 --- a/docs/available_software/detail/RE2.md +++ b/docs/available_software/detail/RE2.md @@ -1,12 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: RE2 is a fast, safe, thread-friendly alternative to backtracking regularexpression - engines like those used in PCRE, Perl, and Python. It is a C++library. + description: ' + + RE2 is a fast, safe, thread-friendly alternative to backtracking regular + + expression engines like those used in PCRE, Perl, and Python. It is a C++ + + library. ' license: Not confirmed name: RE2 offers: @@ -25,33 +28,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''RE2/2023-03-01-GCCcore-12.2.0'', ''RE2/2023-08-01-GCCcore-12.3.0'', - ''RE2/2024-03-01-GCCcore-13.2.0'']' + softwareVersion: '[''2024-07-02'', ''2024-03-01'', ''2023-08-01'', ''2023-03-01'']' url: https://github.com/google/re2 --- +# RE2 -RE2 -=== - - -RE2 is a fast, safe, thread-friendly alternative to backtracking regularexpression engines like those used in PCRE, Perl, and Python. It is a C++library. - -https://github.com/google/re2 -# Available modules -The overview below shows which RE2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +RE2 is a fast, safe, thread-friendly alternative to backtracking regular +expression engines like those used in PCRE, Perl, and Python. It is a C++ +library. -To start using RE2, load one of these modules using a `module load` command like: +homepage: [https://github.com/google/re2](https://github.com/google/re2) -```shell -module load RE2/2024-03-01-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|RE2/2024-03-01-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|RE2/2023-08-01-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|RE2/2023-03-01-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|RE2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2024-07-02|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`RE2/2024-07-02-GCCcore-13.3.0`| +|2024-03-01|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RE2/2024-03-01-GCCcore-13.2.0`| +|2023-08-01|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RE2/2023-08-01-GCCcore-12.3.0`| +|2023-03-01|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RE2/2023-03-01-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/RMextract.md b/docs/available_software/detail/RMextract.md index 3b7f24a0d0..9e55612b70 100644 --- a/docs/available_software/detail/RMextract.md +++ b/docs/available_software/detail/RMextract.md @@ -1,12 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Extract TEC, vTEC, Earthmagnetic field and Rotation Measures from GPS - and WMM data for radio interferometry observations + description: ' + + Extract TEC, vTEC, Earthmagnetic field and Rotation Measures from GPS and WMM + data for radio interferometry observations + + ' license: Not confirmed name: RMextract offers: @@ -25,37 +27,40 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''RMextract/0.5.1-foss-2023b'']' + softwareVersion: '[''0.5.1'']' url: https://github.com/lofar-astron/RMextract --- +# RMextract -RMextract -========= Extract TEC, vTEC, Earthmagnetic field and Rotation Measures from GPS and WMM data for radio interferometry observations -https://github.com/lofar-astron/RMextract -# Available modules +homepage: [https://github.com/lofar-astron/RMextract](https://github.com/lofar-astron/RMextract) + +## Available installations + + +|RMextract version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RMextract/0.5.1-foss-2023b`| -The overview below shows which RMextract installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using RMextract, load one of these modules using a `module load` command like: +Overview of extensions included in RMextract installations -```shell -module load RMextract/0.5.1-foss-2023b -``` -*(This data was automatically generated on {{ generated_time }})* +### PySocks -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|RMextract/0.5.1-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`PySocks` version|RMextract modules that include it| +| --- | --- | +|1.7.1|`RMextract/0.5.1-foss-2023b`| -### RMextract/0.5.1-foss-2023b +### rmextract -This is a list of extensions included in the module: -PySocks-1.7.1, rmextract-0.5.1 \ No newline at end of file +|`rmextract` version|RMextract modules that include it| +| --- | --- | +|0.5.1|`RMextract/0.5.1-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/ROOT.md b/docs/available_software/detail/ROOT.md index 0f0a16a732..5ce13ff88b 100644 --- a/docs/available_software/detail/ROOT.md +++ b/docs/available_software/detail/ROOT.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The ROOT system provides a set of OO frameworks with all the functionality needed - to handle and analyze large amounts of data in a very efficient way. + description: "The ROOT system provides a set of OO frameworks with all the functionality\n\ + \ needed to handle and analyze large amounts of data in a very efficient way." license: Not confirmed name: ROOT offers: @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ROOT/6.26.10-foss-2022b'', ''ROOT/6.30.06-foss-2023a'']' - url: https://root.cern.ch + softwareVersion: '[''6.30.06'', ''6.26.10'']' + url: https://root.cern.ch/drupal/ --- +# ROOT -ROOT -==== +The ROOT system provides a set of OO frameworks with all the functionality + needed to handle and analyze large amounts of data in a very efficient way. -The ROOT system provides a set of OO frameworks with all the functionality needed to handle and analyze large amounts of data in a very efficient way. +homepage: [https://root.cern.ch/drupal/](https://root.cern.ch/drupal/) -https://root.cern.ch -# Available modules +## Available installations -The overview below shows which ROOT installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ROOT, load one of these modules using a `module load` command like: - -```shell -module load ROOT/6.30.06-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ROOT/6.30.06-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ROOT/6.26.10-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ROOT version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.30.06|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ROOT/6.30.06-foss-2023a`| +|6.26.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ROOT/6.26.10-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/RStudio-Server.md b/docs/available_software/detail/RStudio-Server.md index 153f7e1bf7..df40b8c0b9 100644 --- a/docs/available_software/detail/RStudio-Server.md +++ b/docs/available_software/detail/RStudio-Server.md @@ -1,15 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'This is the RStudio Server version.RStudio is a set of integrated - tools designed to help you be more productive with R.The server can be started - with: rserver --server-daemonize=0 --www-port=8787If you need a database config - one can be created with: MYTMP=`mktemp -d` && echo -e "provider=sqlite\ndirectory=${MYTMP}/sqlite" - > "${MYTMP}/db.conf"and then used with: rserver ... --database-config-file="${MYTMP}/db.conf' + description: "This is the RStudio Server version.\nRStudio is a set of integrated\ + \ tools designed to help you be more productive with R.\n\nThe server can be started\ + \ with:\n rserver --server-daemonize=0 --www-port=8787\n\nIf you need a database\ + \ config one can be created with:\n MYTMP=`mktemp -d` && echo -e \"provider=sqlite\\\ + ndirectory=${MYTMP}/sqlite\" > \"${MYTMP}/db.conf\"\nand then used with:\n rserver\ + \ ... --database-config-file=\"${MYTMP}/db.conf\"\n" license: Not confirmed name: RStudio-Server offers: @@ -28,30 +27,30 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''RStudio-Server/2024.09.0+375-foss-2023b-Java-11-R-4.4.1'']' + softwareVersion: '[''2024.12.0+467'', ''2024.09.0+375'']' url: https://www.rstudio.com/ --- +# RStudio-Server -RStudio-Server -============== +This is the RStudio Server version. +RStudio is a set of integrated tools designed to help you be more productive with R. -This is the RStudio Server version.RStudio is a set of integrated tools designed to help you be more productive with R.The server can be started with: rserver --server-daemonize=0 --www-port=8787If you need a database config one can be created with: MYTMP=`mktemp -d` && echo -e "provider=sqlite\ndirectory=${MYTMP}/sqlite" > "${MYTMP}/db.conf"and then used with: rserver ... --database-config-file="${MYTMP}/db.conf +The server can be started with: + rserver --server-daemonize=0 --www-port=8787 -https://www.rstudio.com/ -# Available modules +If you need a database config one can be created with: + MYTMP=`mktemp -d` && echo -e "provider=sqlite\ndirectory=${MYTMP}/sqlite" > "${MYTMP}/db.conf" +and then used with: + rserver ... --database-config-file="${MYTMP}/db.conf" -The overview below shows which RStudio-Server installations are available per target architecture in EESSI, ordered based on software version (new to old). +homepage: [https://www.rstudio.com/](https://www.rstudio.com/) -To start using RStudio-Server, load one of these modules using a `module load` command like: +## Available installations -```shell -module load RStudio-Server/2024.09.0+375-foss-2023b-Java-11-R-4.4.1 -``` -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|RStudio-Server/2024.09.0+375-foss-2023b-Java-11-R-4.4.1|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|RStudio-Server version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2024.12.0+467|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`RStudio-Server/2024.12.0+467-foss-2024a-R-4.4.2`| +|2024.09.0+375|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RStudio-Server/2024.09.0+375-foss-2023b-Java-11-R-4.4.1`| \ No newline at end of file diff --git a/docs/available_software/detail/RapidJSON.md b/docs/available_software/detail/RapidJSON.md index c3c5822b70..3c45ff6399 100644 --- a/docs/available_software/detail/RapidJSON.md +++ b/docs/available_software/detail/RapidJSON.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''RapidJSON/1.1.0-20230928-GCCcore-12.3.0'', ''RapidJSON/1.1.0-20240409-GCCcore-13.2.0'', - ''RapidJSON/1.1.0-GCCcore-12.2.0'']' + softwareVersion: '[''1.1.0-20240815'', ''1.1.0-20240409'', ''1.1.0-20230928'', ''1.1.0'']' url: https://rapidjson.org --- - -RapidJSON -========= +# RapidJSON A fast JSON parser/generator for C++ with both SAX/DOM style API -https://rapidjson.org -# Available modules - - -The overview below shows which RapidJSON installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using RapidJSON, load one of these modules using a `module load` command like: +homepage: [https://rapidjson.org](https://rapidjson.org) -```shell -module load RapidJSON/1.1.0-GCCcore-12.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|RapidJSON/1.1.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|RapidJSON/1.1.0-20240409-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|RapidJSON/1.1.0-20230928-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|RapidJSON version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RapidJSON/1.1.0-GCCcore-12.2.0`| +|1.1.0-20240815|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`RapidJSON/1.1.0-20240815-GCCcore-13.3.0`| +|1.1.0-20240409|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RapidJSON/1.1.0-20240409-GCCcore-13.2.0`| +|1.1.0-20230928|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`RapidJSON/1.1.0-20230928-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Raptor.md b/docs/available_software/detail/Raptor.md index 2255eb390f..c3af3d2ccc 100644 --- a/docs/available_software/detail/Raptor.md +++ b/docs/available_software/detail/Raptor.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Set of parsers and serializers that generate Resource Description Framework(RDF) - triples by parsing syntaxes or serialize the triples into a syntax. + description: 'Set of parsers and serializers that generate Resource Description + Framework + + (RDF) triples by parsing syntaxes or serialize the triples into a syntax.' license: Not confirmed name: Raptor offers: @@ -25,30 +25,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Raptor/2.0.16-GCCcore-12.3.0'']' + softwareVersion: '[''2.0.16'']' url: https://librdf.org/raptor/ --- - -Raptor -====== - - -Set of parsers and serializers that generate Resource Description Framework(RDF) triples by parsing syntaxes or serialize the triples into a syntax. - -https://librdf.org/raptor/ -# Available modules +# Raptor -The overview below shows which Raptor installations are available per target architecture in EESSI, ordered based on software version (new to old). +Set of parsers and serializers that generate Resource Description Framework +(RDF) triples by parsing syntaxes or serialize the triples into a syntax. -To start using Raptor, load one of these modules using a `module load` command like: +homepage: [https://librdf.org/raptor/](https://librdf.org/raptor/) -```shell -module load Raptor/2.0.16-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Raptor/2.0.16-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Raptor version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Raptor/2.0.16-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Rasqal.md b/docs/available_software/detail/Rasqal.md index 09ef4d3056..9405f7b019 100644 --- a/docs/available_software/detail/Rasqal.md +++ b/docs/available_software/detail/Rasqal.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Rasqal/0.9.33-GCCcore-12.3.0'']' + softwareVersion: '[''0.9.33'']' url: hhttps://librdf.org/rasqal --- - -Rasqal -====== +# Rasqal A library handling RDF query syntaxes, construction and execution -hhttps://librdf.org/rasqal -# Available modules - - -The overview below shows which Rasqal installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Rasqal, load one of these modules using a `module load` command like: +homepage: [hhttps://librdf.org/rasqal](hhttps://librdf.org/rasqal) -```shell -module load Rasqal/0.9.33-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Rasqal/0.9.33-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Rasqal version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.33|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Rasqal/0.9.33-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ReFrame.md b/docs/available_software/detail/ReFrame.md index 02c89ebb9d..3ca4457c54 100644 --- a/docs/available_software/detail/ReFrame.md +++ b/docs/available_software/detail/ReFrame.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,44 +22,58 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ReFrame/4.3.3'', ''ReFrame/4.6.2'']' + softwareVersion: '[''4.7.4'', ''4.6.2'', ''4.3.3'']' url: https://github.com/reframe-hpc/reframe --- - -ReFrame -======= +# ReFrame ReFrame is a framework for writing regression tests for HPC systems. -https://github.com/reframe-hpc/reframe -# Available modules +homepage: [https://github.com/reframe-hpc/reframe](https://github.com/reframe-hpc/reframe) + +## Available installations + + +|ReFrame version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.7.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ReFrame/4.7.4`| +|4.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ReFrame/4.6.2`| +|4.3.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ReFrame/4.3.3`| + +## Extensions + +Overview of extensions included in ReFrame installations -The overview below shows which ReFrame installations are available per target architecture in EESSI, ordered based on software version (new to old). +### pip -To start using ReFrame, load one of these modules using a `module load` command like: -```shell -module load ReFrame/4.6.2 -``` +|`pip` version|ReFrame modules that include it| +| --- | --- | +|24.0|`ReFrame/4.7.4`
`ReFrame/4.6.2`| +|21.3.1|`ReFrame/4.3.3`| -*(This data was automatically generated on {{ generated_time }})* +### reframe -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ReFrame/4.6.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ReFrame/4.3.3|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`reframe` version|ReFrame modules that include it| +| --- | --- | +|4.7.4|`ReFrame/4.7.4`| +|4.6.2|`ReFrame/4.6.2`| +|4.3.3|`ReFrame/4.3.3`| -### ReFrame/4.6.2 +### setuptools -This is a list of extensions included in the module: -pip-24.0, reframe-4.6.2, setuptools-68.0.0, wheel-0.42.0 +|`setuptools` version|ReFrame modules that include it| +| --- | --- | +|68.0.0|`ReFrame/4.7.4`
`ReFrame/4.6.2`| -### ReFrame/4.3.3 +### wheel -This is a list of extensions included in the module: -pip-21.3.1, reframe-4.3.3, wheel-0.37.1 \ No newline at end of file +|`wheel` version|ReFrame modules that include it| +| --- | --- | +|0.42.0|`ReFrame/4.7.4`
`ReFrame/4.6.2`| +|0.37.1|`ReFrame/4.3.3`| \ No newline at end of file diff --git a/docs/available_software/detail/Redis.md b/docs/available_software/detail/Redis.md index 4093cdd0cb..dada913294 100644 --- a/docs/available_software/detail/Redis.md +++ b/docs/available_software/detail/Redis.md @@ -1,16 +1,22 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Redis is an open source (BSD licensed), in-memory data structure store, - used asa database, cache, and message broker. Redis provides data structures such - asstrings, hashes, lists, sets, sorted sets with range queries, bitmaps,hyperloglogs, - geospatial indexes, and streams. Redis has built-in replication,Lua scripting, - LRU eviction, transactions, and different levels of on-diskpersistence, and provides - high availability via Redis Sentinel and automaticpartitioning with Redis Cluster. + description: 'Redis is an open source (BSD licensed), in-memory data structure store, + used as + + a database, cache, and message broker. Redis provides data structures such as + + strings, hashes, lists, sets, sorted sets with range queries, bitmaps, + + hyperloglogs, geospatial indexes, and streams. Redis has built-in replication, + + Lua scripting, LRU eviction, transactions, and different levels of on-disk + + persistence, and provides high availability via Redis Sentinel and automatic + + partitioning with Redis Cluster.' license: Not confirmed name: Redis offers: @@ -29,30 +35,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Redis/7.2.3-GCCcore-12.3.0'']' + softwareVersion: '[''7.4.1'', ''7.2.3'']' url: https://redis.io --- - -Redis -===== - - -Redis is an open source (BSD licensed), in-memory data structure store, used asa database, cache, and message broker. Redis provides data structures such asstrings, hashes, lists, sets, sorted sets with range queries, bitmaps,hyperloglogs, geospatial indexes, and streams. Redis has built-in replication,Lua scripting, LRU eviction, transactions, and different levels of on-diskpersistence, and provides high availability via Redis Sentinel and automaticpartitioning with Redis Cluster. - -https://redis.io -# Available modules +# Redis -The overview below shows which Redis installations are available per target architecture in EESSI, ordered based on software version (new to old). +Redis is an open source (BSD licensed), in-memory data structure store, used as +a database, cache, and message broker. Redis provides data structures such as +strings, hashes, lists, sets, sorted sets with range queries, bitmaps, +hyperloglogs, geospatial indexes, and streams. Redis has built-in replication, +Lua scripting, LRU eviction, transactions, and different levels of on-disk +persistence, and provides high availability via Redis Sentinel and automatic +partitioning with Redis Cluster. -To start using Redis, load one of these modules using a `module load` command like: +homepage: [https://redis.io](https://redis.io) -```shell -module load Redis/7.2.3-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Redis/7.2.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Redis version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Redis/7.4.1-GCCcore-13.3.0`| +|7.2.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Redis/7.2.3-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Redland.md b/docs/available_software/detail/Redland.md index c851ee1c39..6fe6654a98 100644 --- a/docs/available_software/detail/Redland.md +++ b/docs/available_software/detail/Redland.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Redland is a set of free software C libraries that provide support - for the Resource Description Framework (RDF). + description: "Redland is a set of free software C libraries that\n provide support\ + \ for the Resource Description Framework (RDF)." license: Not confirmed name: Redland offers: @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Redland/1.0.17-GCC-12.3.0'']' + softwareVersion: '[''1.0.17'']' url: https://librdf.org/raptor --- +# Redland -Redland -======= +Redland is a set of free software C libraries that + provide support for the Resource Description Framework (RDF). -Redland is a set of free software C libraries that provide support for the Resource Description Framework (RDF). +homepage: [https://librdf.org/raptor](https://librdf.org/raptor) -https://librdf.org/raptor -# Available modules +## Available installations -The overview below shows which Redland installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Redland, load one of these modules using a `module load` command like: - -```shell -module load Redland/1.0.17-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Redland/1.0.17-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Redland version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Redland/1.0.17-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Rivet.md b/docs/available_software/detail/Rivet.md index b0ae3c783a..2d625937e9 100644 --- a/docs/available_software/detail/Rivet.md +++ b/docs/available_software/detail/Rivet.md @@ -1,12 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Rivet toolkit (Robust Independent Validation of Experiment and Theory)To - use your own analysis you must append the path to `RIVET_ANALYSIS_PATH`. + description: ' + + Rivet toolkit (Robust Independent Validation of Experiment and Theory) + + + To use your own analysis you must append the path to `RIVET_ANALYSIS_PATH`. + + ' license: Not confirmed name: Rivet offers: @@ -25,30 +29,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Rivet/3.1.9-gompi-2023a-HepMC3-3.2.6'']' + softwareVersion: '[''3.1.9'']' url: https://gitlab.com/hepcedar/rivet --- - -Rivet -===== +# Rivet -Rivet toolkit (Robust Independent Validation of Experiment and Theory)To use your own analysis you must append the path to `RIVET_ANALYSIS_PATH`. -https://gitlab.com/hepcedar/rivet -# Available modules +Rivet toolkit (Robust Independent Validation of Experiment and Theory) +To use your own analysis you must append the path to `RIVET_ANALYSIS_PATH`. -The overview below shows which Rivet installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using Rivet, load one of these modules using a `module load` command like: +homepage: [https://gitlab.com/hepcedar/rivet](https://gitlab.com/hepcedar/rivet) -```shell -module load Rivet/3.1.9-gompi-2023a-HepMC3-3.2.6 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Rivet/3.1.9-gompi-2023a-HepMC3-3.2.6|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Rivet version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Rivet/3.1.9-gompi-2023a-HepMC3-3.2.6`| \ No newline at end of file diff --git a/docs/available_software/detail/Ruby.md b/docs/available_software/detail/Ruby.md index 2a2c6743e6..76eb3db81a 100644 --- a/docs/available_software/detail/Ruby.md +++ b/docs/available_software/detail/Ruby.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Ruby is a dynamic, open source programming language with a focus on - simplicity and productivity. It has an elegant syntax that is natural to read - and easy to write. + description: "Ruby is a dynamic, open source programming language with\n a focus\ + \ on simplicity and productivity. It has an elegant syntax that is\n natural to\ + \ read and easy to write." license: Not confirmed name: Ruby offers: @@ -26,40 +24,343 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Ruby/3.2.2-GCCcore-12.2.0'', ''Ruby/3.3.0-GCCcore-12.3.0'', - ''Ruby/3.4.2-GCCcore-13.2.0'']' + softwareVersion: '[''3.4.2'', ''3.3.0'', ''3.2.2'']' url: https://www.ruby-lang.org --- +# Ruby -Ruby -==== +Ruby is a dynamic, open source programming language with + a focus on simplicity and productivity. It has an elegant syntax that is + natural to read and easy to write. -Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. +homepage: [https://www.ruby-lang.org](https://www.ruby-lang.org) -https://www.ruby-lang.org -# Available modules +## Available installations -The overview below shows which Ruby installations are available per target architecture in EESSI, ordered based on software version (new to old). +|Ruby version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Ruby/3.4.2-GCCcore-13.2.0`| +|3.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Ruby/3.3.0-GCCcore-12.3.0`| +|3.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Ruby/3.2.2-GCCcore-12.2.0`| -To start using Ruby, load one of these modules using a `module load` command like: +## Extensions -```shell -module load Ruby/3.4.2-GCCcore-13.2.0 -``` +Overview of extensions included in Ruby installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Ruby/3.4.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Ruby/3.3.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Ruby/3.2.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### activesupport -### Ruby/3.2.2-GCCcore-12.2.0 +|`activesupport` version|Ruby modules that include it| +| --- | --- | +|5.2.8.1|`Ruby/3.2.2-GCCcore-12.2.0`| -This is a list of extensions included in the module: +### addressable -activesupport-5.2.8.1, addressable-2.8.4, arr-pm-0.0.12, backports-3.24.1, bundler-2.4.14, cabin-0.9.0, childprocess-4.1.0, clamp-1.3.2, concurrent-ruby-1.2.2, connection_pool-2.4.1, diff-lcs-1.5.0, ethon-0.16.0, faraday-1.2.0, faraday-net_http-3.0.2, faraday_middleware-1.2.0, ffi-1.15.5, gh-0.18.0, highline-2.1.0, i18n-1.14.1, json-2.6.3, launchy-2.5.2, minitest-5.18.0, multi_json-1.15.0, multipart-post-2.3.0, mustermann-3.0.0, net-http-persistent-2.9.4, net-http-pipeline-1.0.1, public_suffix-5.0.1, pusher-client-0.6.2, rack-2.2.4, rack-protection-3.0.6, rack-test-2.1.0, rspec-3.12.0, rspec-core-3.12.2, rspec-expectations-3.12.3, rspec-mocks-3.12.5, rspec-support-3.12.0, ruby2_keywords-0.0.5, sinatra-3.0.6, thread_safe-0.3.6, tilt-2.2.0, typhoeus-1.4.0, tzinfo-1.1.0, websocket-1.2.9, zeitwerk-2.6.8 \ No newline at end of file + +|`addressable` version|Ruby modules that include it| +| --- | --- | +|2.8.4|`Ruby/3.2.2-GCCcore-12.2.0`| + +### arr-pm + + +|`arr-pm` version|Ruby modules that include it| +| --- | --- | +|0.0.12|`Ruby/3.2.2-GCCcore-12.2.0`| + +### backports + + +|`backports` version|Ruby modules that include it| +| --- | --- | +|3.24.1|`Ruby/3.2.2-GCCcore-12.2.0`| + +### bundler + + +|`bundler` version|Ruby modules that include it| +| --- | --- | +|2.4.14|`Ruby/3.2.2-GCCcore-12.2.0`| + +### cabin + + +|`cabin` version|Ruby modules that include it| +| --- | --- | +|0.9.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### childprocess + + +|`childprocess` version|Ruby modules that include it| +| --- | --- | +|4.1.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### clamp + + +|`clamp` version|Ruby modules that include it| +| --- | --- | +|1.3.2|`Ruby/3.2.2-GCCcore-12.2.0`| + +### concurrent-ruby + + +|`concurrent-ruby` version|Ruby modules that include it| +| --- | --- | +|1.2.2|`Ruby/3.2.2-GCCcore-12.2.0`| + +### connection_pool + + +|`connection_pool` version|Ruby modules that include it| +| --- | --- | +|2.4.1|`Ruby/3.2.2-GCCcore-12.2.0`| + +### diff-lcs + + +|`diff-lcs` version|Ruby modules that include it| +| --- | --- | +|1.5.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### ethon + + +|`ethon` version|Ruby modules that include it| +| --- | --- | +|0.16.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### faraday + + +|`faraday` version|Ruby modules that include it| +| --- | --- | +|1.2.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### faraday-net_http + + +|`faraday-net_http` version|Ruby modules that include it| +| --- | --- | +|3.0.2|`Ruby/3.2.2-GCCcore-12.2.0`| + +### faraday_middleware + + +|`faraday_middleware` version|Ruby modules that include it| +| --- | --- | +|1.2.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### ffi + + +|`ffi` version|Ruby modules that include it| +| --- | --- | +|1.15.5|`Ruby/3.2.2-GCCcore-12.2.0`| + +### gh + + +|`gh` version|Ruby modules that include it| +| --- | --- | +|0.18.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### highline + + +|`highline` version|Ruby modules that include it| +| --- | --- | +|2.1.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### i18n + + +|`i18n` version|Ruby modules that include it| +| --- | --- | +|1.14.1|`Ruby/3.2.2-GCCcore-12.2.0`| + +### json + + +|`json` version|Ruby modules that include it| +| --- | --- | +|2.6.3|`Ruby/3.2.2-GCCcore-12.2.0`| + +### launchy + + +|`launchy` version|Ruby modules that include it| +| --- | --- | +|2.5.2|`Ruby/3.2.2-GCCcore-12.2.0`| + +### minitest + + +|`minitest` version|Ruby modules that include it| +| --- | --- | +|5.18.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### multi_json + + +|`multi_json` version|Ruby modules that include it| +| --- | --- | +|1.15.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### multipart-post + + +|`multipart-post` version|Ruby modules that include it| +| --- | --- | +|2.3.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### mustermann + + +|`mustermann` version|Ruby modules that include it| +| --- | --- | +|3.0.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### net-http-persistent + + +|`net-http-persistent` version|Ruby modules that include it| +| --- | --- | +|2.9.4|`Ruby/3.2.2-GCCcore-12.2.0`| + +### net-http-pipeline + + +|`net-http-pipeline` version|Ruby modules that include it| +| --- | --- | +|1.0.1|`Ruby/3.2.2-GCCcore-12.2.0`| + +### public_suffix + + +|`public_suffix` version|Ruby modules that include it| +| --- | --- | +|5.0.1|`Ruby/3.2.2-GCCcore-12.2.0`| + +### pusher-client + + +|`pusher-client` version|Ruby modules that include it| +| --- | --- | +|0.6.2|`Ruby/3.2.2-GCCcore-12.2.0`| + +### rack + + +|`rack` version|Ruby modules that include it| +| --- | --- | +|2.2.4|`Ruby/3.2.2-GCCcore-12.2.0`| + +### rack-protection + + +|`rack-protection` version|Ruby modules that include it| +| --- | --- | +|3.0.6|`Ruby/3.2.2-GCCcore-12.2.0`| + +### rack-test + + +|`rack-test` version|Ruby modules that include it| +| --- | --- | +|2.1.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### rspec + + +|`rspec` version|Ruby modules that include it| +| --- | --- | +|3.12.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### rspec-core + + +|`rspec-core` version|Ruby modules that include it| +| --- | --- | +|3.12.2|`Ruby/3.2.2-GCCcore-12.2.0`| + +### rspec-expectations + + +|`rspec-expectations` version|Ruby modules that include it| +| --- | --- | +|3.12.3|`Ruby/3.2.2-GCCcore-12.2.0`| + +### rspec-mocks + + +|`rspec-mocks` version|Ruby modules that include it| +| --- | --- | +|3.12.5|`Ruby/3.2.2-GCCcore-12.2.0`| + +### rspec-support + + +|`rspec-support` version|Ruby modules that include it| +| --- | --- | +|3.12.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### ruby2_keywords + + +|`ruby2_keywords` version|Ruby modules that include it| +| --- | --- | +|0.0.5|`Ruby/3.2.2-GCCcore-12.2.0`| + +### sinatra + + +|`sinatra` version|Ruby modules that include it| +| --- | --- | +|3.0.6|`Ruby/3.2.2-GCCcore-12.2.0`| + +### thread_safe + + +|`thread_safe` version|Ruby modules that include it| +| --- | --- | +|0.3.6|`Ruby/3.2.2-GCCcore-12.2.0`| + +### tilt + + +|`tilt` version|Ruby modules that include it| +| --- | --- | +|2.2.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### typhoeus + + +|`typhoeus` version|Ruby modules that include it| +| --- | --- | +|1.4.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### tzinfo + + +|`tzinfo` version|Ruby modules that include it| +| --- | --- | +|1.1.0|`Ruby/3.2.2-GCCcore-12.2.0`| + +### websocket + + +|`websocket` version|Ruby modules that include it| +| --- | --- | +|1.2.9|`Ruby/3.2.2-GCCcore-12.2.0`| + +### zeitwerk + + +|`zeitwerk` version|Ruby modules that include it| +| --- | --- | +|2.6.8|`Ruby/3.2.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Rust.md b/docs/available_software/detail/Rust.md index f9f8b7b4fa..6cf18515a1 100644 --- a/docs/available_software/detail/Rust.md +++ b/docs/available_software/detail/Rust.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Rust is a systems programming language that runs blazingly fast, prevents - segfaults, and guarantees thread safety. + description: "Rust is a systems programming language that runs blazingly fast, prevents\ + \ segfaults,\n and guarantees thread safety." license: Not confirmed name: Rust offers: @@ -25,37 +23,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Rust/1.65.0-GCCcore-12.2.0'', ''Rust/1.70.0-GCCcore-12.3.0'', - ''Rust/1.73.0-GCCcore-13.2.0'', ''Rust/1.75.0-GCCcore-12.2.0'', ''Rust/1.75.0-GCCcore-12.3.0'', - ''Rust/1.76.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.91.1'', ''1.88.0'', ''1.85.1'', ''1.83.0'', ''1.78.0'', ''1.76.0'', + ''1.75.0'', ''1.73.0'', ''1.70.0'', ''1.65.0'']' url: https://www.rust-lang.org --- +# Rust -Rust -==== +Rust is a systems programming language that runs blazingly fast, prevents segfaults, + and guarantees thread safety. -Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety. +homepage: [https://www.rust-lang.org](https://www.rust-lang.org) -https://www.rust-lang.org -# Available modules +## Available installations -The overview below shows which Rust installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Rust, load one of these modules using a `module load` command like: - -```shell -module load Rust/1.76.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Rust/1.76.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Rust/1.75.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Rust/1.75.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Rust/1.73.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Rust/1.70.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Rust/1.65.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Rust version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.91.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Rust/1.91.1-GCCcore-14.3.0`| +|1.88.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Rust/1.88.0-GCCcore-14.3.0`| +|1.85.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Rust/1.85.1-GCCcore-14.2.0`| +|1.83.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Rust/1.83.0-GCCcore-13.3.0`| +|1.78.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Rust/1.78.0-GCCcore-13.3.0`| +|1.76.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Rust/1.76.0-GCCcore-13.2.0`| +|1.75.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Rust/1.75.0-GCCcore-12.3.0`| +|1.75.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Rust/1.75.0-GCCcore-12.2.0`| +|1.73.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Rust/1.73.0-GCCcore-13.2.0`| +|1.70.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Rust/1.70.0-GCCcore-12.3.0`| +|1.65.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Rust/1.65.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/SAGECal.md b/docs/available_software/detail/SAGECal.md index 11b9661610..759fe89a6c 100644 --- a/docs/available_software/detail/SAGECal.md +++ b/docs/available_software/detail/SAGECal.md @@ -1,13 +1,19 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SAGECal is a fast, distributed and GPU accelerated radio astronomialcalibration - package. The many optimization algorithms in SAGECal areimplemented in a computationally - efficient way and can be used in manyother applications. + description: ' + + SAGECal is a fast, distributed and GPU accelerated radio astronomial + + calibration package. The many optimization algorithms in SAGECal are + + implemented in a computationally efficient way and can be used in many + + other applications. + + ' license: Not confirmed name: SAGECal offers: @@ -26,30 +32,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SAGECal/0.8.4-foss-2023b'']' + softwareVersion: '[''0.8.4'']' url: https://sagecal.sourceforge.net/ --- +# SAGECal -SAGECal -======= - - -SAGECal is a fast, distributed and GPU accelerated radio astronomialcalibration package. The many optimization algorithms in SAGECal areimplemented in a computationally efficient way and can be used in manyother applications. -https://sagecal.sourceforge.net/ -# Available modules +SAGECal is a fast, distributed and GPU accelerated radio astronomial +calibration package. The many optimization algorithms in SAGECal are +implemented in a computationally efficient way and can be used in many +other applications. -The overview below shows which SAGECal installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using SAGECal, load one of these modules using a `module load` command like: +homepage: [https://sagecal.sourceforge.net/](https://sagecal.sourceforge.net/) -```shell -module load SAGECal/0.8.4-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SAGECal/0.8.4-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SAGECal version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.8.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SAGECal/0.8.4-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/SAMtools.md b/docs/available_software/detail/SAMtools.md index 85948632f2..e68def5492 100644 --- a/docs/available_software/detail/SAMtools.md +++ b/docs/available_software/detail/SAMtools.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SAM Tools provide various utilities for manipulating alignments in - the SAM format, including sorting, merging, indexing and generating alignments - in a per-position format. + description: "SAM Tools provide various utilities for manipulating alignments in\ + \ the SAM format, \n including sorting, merging, indexing and generating alignments\ + \ in a per-position format." license: Not confirmed name: SAMtools offers: @@ -26,31 +24,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SAMtools/1.17-GCC-12.2.0'', ''SAMtools/1.18-GCC-12.3.0'']' + softwareVersion: '[''1.18'', ''1.17'']' url: https://www.htslib.org/ --- +# SAMtools -SAMtools -======== +SAM Tools provide various utilities for manipulating alignments in the SAM format, + including sorting, merging, indexing and generating alignments in a per-position format. -SAM Tools provide various utilities for manipulating alignments in the SAM format, including sorting, merging, indexing and generating alignments in a per-position format. +homepage: [https://www.htslib.org/](https://www.htslib.org/) -https://www.htslib.org/ -# Available modules +## Available installations -The overview below shows which SAMtools installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using SAMtools, load one of these modules using a `module load` command like: - -```shell -module load SAMtools/1.18-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SAMtools/1.18-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SAMtools/1.17-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SAMtools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SAMtools/1.18-GCC-12.3.0`| +|1.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SAMtools/1.17-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/SCOTCH.md b/docs/available_software/detail/SCOTCH.md index d902088f87..c087dd0c99 100644 --- a/docs/available_software/detail/SCOTCH.md +++ b/docs/available_software/detail/SCOTCH.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Software package and libraries for sequential and parallel graph partitioning,static - mapping, and sparse matrix block ordering, and sequential mesh and hypergraph - partitioning. + description: 'Software package and libraries for sequential and parallel graph partitioning, + + static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph + partitioning.' license: Not confirmed name: SCOTCH offers: @@ -26,32 +25,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SCOTCH/7.0.3-gompi-2022b'', ''SCOTCH/7.0.3-gompi-2023a'', ''SCOTCH/7.0.4-gompi-2023b'']' + softwareVersion: '[''7.0.8'', ''7.0.6'', ''7.0.4'', ''7.0.3'']' url: https://www.labri.fr/perso/pelegrin/scotch/ --- - -SCOTCH -====== - - -Software package and libraries for sequential and parallel graph partitioning,static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph partitioning. - -https://www.labri.fr/perso/pelegrin/scotch/ -# Available modules +# SCOTCH -The overview below shows which SCOTCH installations are available per target architecture in EESSI, ordered based on software version (new to old). +Software package and libraries for sequential and parallel graph partitioning, +static mapping, and sparse matrix block ordering, and sequential mesh and hypergraph partitioning. -To start using SCOTCH, load one of these modules using a `module load` command like: +homepage: [https://www.labri.fr/perso/pelegrin/scotch/](https://www.labri.fr/perso/pelegrin/scotch/) -```shell -module load SCOTCH/7.0.4-gompi-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SCOTCH/7.0.4-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SCOTCH/7.0.3-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SCOTCH/7.0.3-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SCOTCH version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SCOTCH/7.0.8-gompi-2025a`| +|7.0.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SCOTCH/7.0.6-gompi-2024a`| +|7.0.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SCOTCH/7.0.4-gompi-2023b`| +|7.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SCOTCH/7.0.3-gompi-2023a`| +|7.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SCOTCH/7.0.3-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/SDL2.md b/docs/available_software/detail/SDL2.md index b0f1e00438..eec5539434 100644 --- a/docs/available_software/detail/SDL2.md +++ b/docs/available_software/detail/SDL2.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SDL2/2.26.3-GCCcore-12.2.0'', ''SDL2/2.28.2-GCCcore-12.3.0'', - ''SDL2/2.28.5-GCCcore-13.2.0'']' + softwareVersion: '[''2.32.10'', ''2.32.8'', ''2.30.6'', ''2.28.5'', ''2.28.2'', + ''2.26.3'']' url: https://www.libsdl.org/ --- - -SDL2 -==== +# SDL2 SDL: Simple DirectMedia Layer, a cross-platform multimedia library -https://www.libsdl.org/ -# Available modules - - -The overview below shows which SDL2 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using SDL2, load one of these modules using a `module load` command like: +homepage: [https://www.libsdl.org/](https://www.libsdl.org/) -```shell -module load SDL2/2.28.5-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SDL2/2.28.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SDL2/2.28.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SDL2/2.26.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SDL2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.32.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SDL2/2.32.10-GCCcore-14.3.0`| +|2.32.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SDL2/2.32.8-GCCcore-14.2.0`| +|2.30.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SDL2/2.30.6-GCCcore-13.3.0`| +|2.28.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SDL2/2.28.5-GCCcore-13.2.0`| +|2.28.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SDL2/2.28.2-GCCcore-12.3.0`| +|2.26.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SDL2/2.26.3-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/SEPP.md b/docs/available_software/detail/SEPP.md index 0c51f6df88..ba482ec9fa 100644 --- a/docs/available_software/detail/SEPP.md +++ b/docs/available_software/detail/SEPP.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SATe-enabled Phylogenetic Placement - addresses the problem of phylogeneticplacement - of short reads into reference alignments and trees. + description: 'SATe-enabled Phylogenetic Placement - addresses the problem of phylogenetic + + placement of short reads into reference alignments and trees.' license: Not confirmed name: SEPP offers: @@ -25,30 +24,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SEPP/4.5.1-foss-2022b'']' + softwareVersion: '[''4.5.1'']' url: https://github.com/smirarab/sepp --- - -SEPP -==== - - -SATe-enabled Phylogenetic Placement - addresses the problem of phylogeneticplacement of short reads into reference alignments and trees. - -https://github.com/smirarab/sepp -# Available modules +# SEPP -The overview below shows which SEPP installations are available per target architecture in EESSI, ordered based on software version (new to old). +SATe-enabled Phylogenetic Placement - addresses the problem of phylogenetic +placement of short reads into reference alignments and trees. -To start using SEPP, load one of these modules using a `module load` command like: +homepage: [https://github.com/smirarab/sepp](https://github.com/smirarab/sepp) -```shell -module load SEPP/4.5.1-foss-2022b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SEPP/4.5.1-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SEPP version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SEPP/4.5.1-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/SIONlib.md b/docs/available_software/detail/SIONlib.md index 26f55fb92f..070aaeb75f 100644 --- a/docs/available_software/detail/SIONlib.md +++ b/docs/available_software/detail/SIONlib.md @@ -1,17 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SIONlib is a scalable I/O library for parallel access to task-local - files. The library not only supports writing and reading binary data to or from - several thousands of processors into a single or a small number of physical files, - but also provides global open and close functions to access SIONlib files in parallel. - This package provides a stripped-down installation of SIONlib for use with performance - tools (e.g., Score-P), with renamed symbols to avoid conflicts when an application - using SIONlib itself is linked against a tool requiring a different SIONlib version. + description: "\n SIONlib is a scalable I/O library for parallel access to task-local\ + \ files.\n The library not only supports writing and reading binary data to or\ + \ from\n several thousands of processors into a single or a small number of physical\n\ + \ files, but also provides global open and close functions to access SIONlib\n\ + \ files in parallel. This package provides a stripped-down installation of\n SIONlib\ + \ for use with performance tools (e.g., Score-P), with renamed symbols\n to avoid\ + \ conflicts when an application using SIONlib itself is linked against\n a tool\ + \ requiring a different SIONlib version.\n" license: Not confirmed name: SIONlib offers: @@ -30,30 +29,30 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SIONlib/1.7.7-GCCcore-13.2.0-tools'']' + softwareVersion: '[''1.7.7'']' url: https://www.fz-juelich.de/ias/jsc/EN/Expertise/Support/Software/SIONlib/_node.html --- +# SIONlib -SIONlib -======= -SIONlib is a scalable I/O library for parallel access to task-local files. The library not only supports writing and reading binary data to or from several thousands of processors into a single or a small number of physical files, but also provides global open and close functions to access SIONlib files in parallel. This package provides a stripped-down installation of SIONlib for use with performance tools (e.g., Score-P), with renamed symbols to avoid conflicts when an application using SIONlib itself is linked against a tool requiring a different SIONlib version. + SIONlib is a scalable I/O library for parallel access to task-local files. + The library not only supports writing and reading binary data to or from + several thousands of processors into a single or a small number of physical + files, but also provides global open and close functions to access SIONlib + files in parallel. This package provides a stripped-down installation of + SIONlib for use with performance tools (e.g., Score-P), with renamed symbols + to avoid conflicts when an application using SIONlib itself is linked against + a tool requiring a different SIONlib version. -https://www.fz-juelich.de/ias/jsc/EN/Expertise/Support/Software/SIONlib/_node.html -# Available modules +homepage: [https://www.fz-juelich.de/ias/jsc/EN/Expertise/Support/Software/SIONlib/_node.html](https://www.fz-juelich.de/ias/jsc/EN/Expertise/Support/Software/SIONlib/_node.html) -The overview below shows which SIONlib installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using SIONlib, load one of these modules using a `module load` command like: -```shell -module load SIONlib/1.7.7-GCCcore-13.2.0-tools -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SIONlib/1.7.7-GCCcore-13.2.0-tools|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SIONlib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SIONlib/1.7.7-GCCcore-14.3.0-tools`| +|1.7.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SIONlib/1.7.7-GCCcore-14.2.0-tools`| +|1.7.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SIONlib/1.7.7-GCCcore-13.2.0-tools`| \ No newline at end of file diff --git a/docs/available_software/detail/SIP.md b/docs/available_software/detail/SIP.md index 64c9187898..093f6c3254 100644 --- a/docs/available_software/detail/SIP.md +++ b/docs/available_software/detail/SIP.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SIP/6.8.1-GCCcore-12.3.0'']' + softwareVersion: '[''6.13.1'', ''6.8.1'']' url: http://www.riverbankcomputing.com/software/sip/ --- - -SIP -=== +# SIP SIP is a tool that makes it very easy to create Python bindings for C and C++ libraries. -http://www.riverbankcomputing.com/software/sip/ -# Available modules - - -The overview below shows which SIP installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using SIP, load one of these modules using a `module load` command like: +homepage: [http://www.riverbankcomputing.com/software/sip/](http://www.riverbankcomputing.com/software/sip/) -```shell -module load SIP/6.8.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SIP/6.8.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SIP version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.13.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SIP/6.13.1-GCCcore-14.2.0`| +|6.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SIP/6.8.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/SLEPc.md b/docs/available_software/detail/SLEPc.md index 9e72984242..86bc87b870 100644 --- a/docs/available_software/detail/SLEPc.md +++ b/docs/available_software/detail/SLEPc.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SLEPc (Scalable Library for Eigenvalue Problem Computations) is a software - library for the solution of large scale sparse eigenvalue problems on parallel - computers. It is an extension of PETSc and can be used for either standard or - generalized eigenproblems, with real or complex arithmetic. It can also be used - for computing a partial SVD of a large, sparse, rectangular matrix, and to solve - quadratic eigenvalue problems. + description: "SLEPc (Scalable Library for Eigenvalue Problem Computations) is a\ + \ software library for the solution\n of large scale sparse eigenvalue problems\ + \ on parallel computers. It is an extension of PETSc and can be used for\n either\ + \ standard or generalized eigenproblems, with real or complex arithmetic. It can\ + \ also be used for computing a\n partial SVD of a large, sparse, rectangular matrix,\ + \ and to solve quadratic eigenvalue problems." license: Not confirmed name: SLEPc offers: @@ -29,30 +27,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SLEPc/3.20.1-foss-2023a'']' + softwareVersion: '[''3.23.3'', ''3.22.2'', ''3.20.1'']' url: https://slepc.upv.es --- +# SLEPc -SLEPc -===== +SLEPc (Scalable Library for Eigenvalue Problem Computations) is a software library for the solution + of large scale sparse eigenvalue problems on parallel computers. It is an extension of PETSc and can be used for + either standard or generalized eigenproblems, with real or complex arithmetic. It can also be used for computing a + partial SVD of a large, sparse, rectangular matrix, and to solve quadratic eigenvalue problems. -SLEPc (Scalable Library for Eigenvalue Problem Computations) is a software library for the solution of large scale sparse eigenvalue problems on parallel computers. It is an extension of PETSc and can be used for either standard or generalized eigenproblems, with real or complex arithmetic. It can also be used for computing a partial SVD of a large, sparse, rectangular matrix, and to solve quadratic eigenvalue problems. +homepage: [https://slepc.upv.es](https://slepc.upv.es) -https://slepc.upv.es -# Available modules +## Available installations -The overview below shows which SLEPc installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using SLEPc, load one of these modules using a `module load` command like: - -```shell -module load SLEPc/3.20.1-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SLEPc/3.20.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SLEPc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.23.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SLEPc/3.23.3-foss-2025a`| +|3.22.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SLEPc/3.22.2-foss-2023b`| +|3.20.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SLEPc/3.20.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/SOCI.md b/docs/available_software/detail/SOCI.md index a863654d28..ba7826a17c 100644 --- a/docs/available_software/detail/SOCI.md +++ b/docs/available_software/detail/SOCI.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SOCI is a database access library for C++ that makes the illusion of - embedding SQL queries in the regular C++ code, staying entirely within the Standard - C++. + description: "SOCI is a database access library for C++ that makes the illusion\ + \ of embedding SQL queries in the\n regular C++ code, staying entirely within\ + \ the Standard C++." license: Not confirmed name: SOCI offers: @@ -26,30 +24,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SOCI/4.0.3-GCC-13.2.0'']' + softwareVersion: '[''4.0.3'']' url: http://soci.sourceforge.net/ --- +# SOCI -SOCI -==== +SOCI is a database access library for C++ that makes the illusion of embedding SQL queries in the + regular C++ code, staying entirely within the Standard C++. -SOCI is a database access library for C++ that makes the illusion of embedding SQL queries in the regular C++ code, staying entirely within the Standard C++. +homepage: [http://soci.sourceforge.net/](http://soci.sourceforge.net/) -http://soci.sourceforge.net/ -# Available modules +## Available installations -The overview below shows which SOCI installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using SOCI, load one of these modules using a `module load` command like: - -```shell -module load SOCI/4.0.3-GCC-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SOCI/4.0.3-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SOCI version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SOCI/4.0.3-GCC-13.3.0`| +|4.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SOCI/4.0.3-GCC-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/SPH-EXA.md b/docs/available_software/detail/SPH-EXA.md new file mode 100644 index 0000000000..b1eed3d52f --- /dev/null +++ b/docs/available_software/detail/SPH-EXA.md @@ -0,0 +1,43 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' SPH-EXA is a C++20 simulation code for hydrodynamics simulations + + (with gravity and other physics), parallelized with MPI, OpenMP, CUDA, and HIP.' + license: Not confirmed + name: SPH-EXA + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.96.2'']' + url: https://github.com/sphexa-org/sphexa +--- +# SPH-EXA + + + SPH-EXA is a C++20 simulation code for hydrodynamics simulations +(with gravity and other physics), parallelized with MPI, OpenMP, CUDA, and HIP. + +homepage: [https://github.com/sphexa-org/sphexa](https://github.com/sphexa-org/sphexa) + +## Available installations + + +|SPH-EXA version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.96.2|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`SPH-EXA/0.96.2-foss-2025b-CUDA-12.9.1`| \ No newline at end of file diff --git a/docs/available_software/detail/SQLAlchemy.md b/docs/available_software/detail/SQLAlchemy.md index c446706ad8..e588b50570 100644 --- a/docs/available_software/detail/SQLAlchemy.md +++ b/docs/available_software/detail/SQLAlchemy.md @@ -1,15 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that - givesapplication developers the full power and flexibility of SQL. SQLAlchemyprovides - a full suite of well known enterprise-level persistence patterns,designed for - efficient and high-performing database access, adapted into asimple and Pythonic - domain language. + description: 'SQLAlchemy is the Python SQL toolkit and Object Relational Mapper + that gives + + application developers the full power and flexibility of SQL. SQLAlchemy + + provides a full suite of well known enterprise-level persistence patterns, + + designed for efficient and high-performing database access, adapted into a + + simple and Pythonic domain language.' license: Not confirmed name: SQLAlchemy offers: @@ -28,44 +31,76 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SQLAlchemy/2.0.25-GCCcore-12.3.0'', ''SQLAlchemy/2.0.29-GCCcore-13.2.0'']' + softwareVersion: '[''2.0.36'', ''2.0.29'', ''2.0.25'']' url: https://www.sqlalchemy.org/ --- +# SQLAlchemy + + +SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives +application developers the full power and flexibility of SQL. SQLAlchemy +provides a full suite of well known enterprise-level persistence patterns, +designed for efficient and high-performing database access, adapted into a +simple and Pythonic domain language. + +homepage: [https://www.sqlalchemy.org/](https://www.sqlalchemy.org/) + +## Available installations + + +|SQLAlchemy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.36|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SQLAlchemy/2.0.36-GCCcore-13.3.0`| +|2.0.29|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SQLAlchemy/2.0.29-GCCcore-13.2.0`| +|2.0.25|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SQLAlchemy/2.0.25-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in SQLAlchemy installations + + +### alembic -SQLAlchemy -========== +|`alembic` version|SQLAlchemy modules that include it| +| --- | --- | +|1.14.0|`SQLAlchemy/2.0.36-GCCcore-13.3.0`| +|1.13.1|`SQLAlchemy/2.0.29-GCCcore-13.2.0`
`SQLAlchemy/2.0.25-GCCcore-12.3.0`| -SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that givesapplication developers the full power and flexibility of SQL. SQLAlchemyprovides a full suite of well known enterprise-level persistence patterns,designed for efficient and high-performing database access, adapted into asimple and Pythonic domain language. +### async-timeout -https://www.sqlalchemy.org/ -# Available modules +|`async-timeout` version|SQLAlchemy modules that include it| +| --- | --- | +|5.0.1|`SQLAlchemy/2.0.36-GCCcore-13.3.0`| +|4.0.3|`SQLAlchemy/2.0.29-GCCcore-13.2.0`
`SQLAlchemy/2.0.25-GCCcore-12.3.0`| -The overview below shows which SQLAlchemy installations are available per target architecture in EESSI, ordered based on software version (new to old). +### asyncpg -To start using SQLAlchemy, load one of these modules using a `module load` command like: -```shell -module load SQLAlchemy/2.0.29-GCCcore-13.2.0 -``` +|`asyncpg` version|SQLAlchemy modules that include it| +| --- | --- | +|0.30.0|`SQLAlchemy/2.0.36-GCCcore-13.3.0`| +|0.29.0|`SQLAlchemy/2.0.29-GCCcore-13.2.0`
`SQLAlchemy/2.0.25-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### greenlet -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SQLAlchemy/2.0.29-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SQLAlchemy/2.0.25-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`greenlet` version|SQLAlchemy modules that include it| +| --- | --- | +|3.0.3|`SQLAlchemy/2.0.25-GCCcore-12.3.0`| -### SQLAlchemy/2.0.29-GCCcore-13.2.0 +### SQLAlchemy -This is a list of extensions included in the module: -alembic-1.13.1, async-timeout-4.0.3, asyncpg-0.29.0, SQLAlchemy-2.0.29 +|`SQLAlchemy` version|SQLAlchemy modules that include it| +| --- | --- | +|2.0.29|`SQLAlchemy/2.0.29-GCCcore-13.2.0`| +|2.0.25|`SQLAlchemy/2.0.25-GCCcore-12.3.0`| -### SQLAlchemy/2.0.25-GCCcore-12.3.0 +### sqlalchemy -This is a list of extensions included in the module: -alembic-1.13.1, async-timeout-4.0.3, asyncpg-0.29.0, greenlet-3.0.3, SQLAlchemy-2.0.25 \ No newline at end of file +|`sqlalchemy` version|SQLAlchemy modules that include it| +| --- | --- | +|2.0.36|`SQLAlchemy/2.0.36-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/SQLite.md b/docs/available_software/detail/SQLite.md index 6ff8881ea2..22cbad3e7f 100644 --- a/docs/available_software/detail/SQLite.md +++ b/docs/available_software/detail/SQLite.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SQLite/3.39.4-GCCcore-12.2.0'', ''SQLite/3.42.0-GCCcore-12.3.0'', - ''SQLite/3.43.1-GCCcore-13.2.0'']' + softwareVersion: '[''3.50.1'', ''3.47.2'', ''3.45.3'', ''3.43.1'', ''3.42.0'', ''3.39.4'']' url: https://www.sqlite.org/ --- - -SQLite -====== +# SQLite SQLite: SQL Database Engine in a C Library -https://www.sqlite.org/ -# Available modules - - -The overview below shows which SQLite installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using SQLite, load one of these modules using a `module load` command like: +homepage: [https://www.sqlite.org/](https://www.sqlite.org/) -```shell -module load SQLite/3.43.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SQLite/3.43.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SQLite/3.42.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SQLite/3.39.4-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SQLite version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.50.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SQLite/3.50.1-GCCcore-14.3.0`| +|3.47.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SQLite/3.47.2-GCCcore-14.2.0`| +|3.45.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SQLite/3.45.3-GCCcore-13.3.0`| +|3.43.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SQLite/3.43.1-GCCcore-13.2.0`| +|3.42.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SQLite/3.42.0-GCCcore-12.3.0`| +|3.39.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SQLite/3.39.4-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/STAR.md b/docs/available_software/detail/STAR.md index e9e14eb0e9..68fa80f7ed 100644 --- a/docs/available_software/detail/STAR.md +++ b/docs/available_software/detail/STAR.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''STAR/2.7.11b-GCC-13.2.0'']' + softwareVersion: '[''2.7.11b'']' url: https://github.com/alexdobin/STAR --- - -STAR -==== +# STAR STAR aligns RNA-seq reads to a reference genome using uncompressed suffix arrays. -https://github.com/alexdobin/STAR -# Available modules - - -The overview below shows which STAR installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using STAR, load one of these modules using a `module load` command like: +homepage: [https://github.com/alexdobin/STAR](https://github.com/alexdobin/STAR) -```shell -module load STAR/2.7.11b-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|STAR/2.7.11b-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|STAR version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.7.11b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`STAR/2.7.11b-GCC-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/STREAmS.md b/docs/available_software/detail/STREAmS.md new file mode 100644 index 0000000000..713b4fccdb --- /dev/null +++ b/docs/available_software/detail/STREAmS.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: High-order solver for compressible turbulent flows + license: Not confirmed + name: STREAmS + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.1.0'']' + url: https://github.com/STREAmS-CFD/STREAmS-2 +--- +# STREAmS + + +High-order solver for compressible turbulent flows + +homepage: [https://github.com/STREAmS-CFD/STREAmS-2](https://github.com/STREAmS-CFD/STREAmS-2) + +## Available installations + + +|STREAmS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`STREAmS/2.1.0-foss-2025b`| \ No newline at end of file diff --git a/docs/available_software/detail/SUNDIALS.md b/docs/available_software/detail/SUNDIALS.md index 60a198c040..11886b036d 100644 --- a/docs/available_software/detail/SUNDIALS.md +++ b/docs/available_software/detail/SUNDIALS.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SUNDIALS/6.6.0-foss-2023a'']' + softwareVersion: '[''6.6.0'']' url: https://computing.llnl.gov/projects/sundials --- - -SUNDIALS -======== +# SUNDIALS SUNDIALS: SUite of Nonlinear and DIfferential/ALgebraic Equation Solvers -https://computing.llnl.gov/projects/sundials -# Available modules - - -The overview below shows which SUNDIALS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using SUNDIALS, load one of these modules using a `module load` command like: +homepage: [https://computing.llnl.gov/projects/sundials](https://computing.llnl.gov/projects/sundials) -```shell -module load SUNDIALS/6.6.0-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SUNDIALS/6.6.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SUNDIALS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SUNDIALS/6.6.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/SVT-AV1.md b/docs/available_software/detail/SVT-AV1.md new file mode 100644 index 0000000000..a043ace353 --- /dev/null +++ b/docs/available_software/detail/SVT-AV1.md @@ -0,0 +1,52 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'The Scalable Video Technology for AV1 (SVT-AV1 Encoder) is an AV1-compliant + software encoder library. + + The work on the SVT-AV1 encoder targets the development of a production-quality + AV1-encoder with performance levels + + applicable to a wide range of applications, from premium VOD to real-time and + live encoding/transcoding.' + license: Not confirmed + name: SVT-AV1 + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''3.1.2'']' + url: https://gitlab.com/AOMediaCodec/SVT-AV1 +--- +# SVT-AV1 + + +The Scalable Video Technology for AV1 (SVT-AV1 Encoder) is an AV1-compliant software encoder library. +The work on the SVT-AV1 encoder targets the development of a production-quality AV1-encoder with performance levels +applicable to a wide range of applications, from premium VOD to real-time and live encoding/transcoding. + +homepage: [https://gitlab.com/AOMediaCodec/SVT-AV1](https://gitlab.com/AOMediaCodec/SVT-AV1) + +## Available installations + + +|SVT-AV1 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SVT-AV1/3.1.2-GCCcore-14.3.0`| +|3.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SVT-AV1/3.1.2-GCCcore-14.2.0`| +|3.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SVT-AV1/3.1.2-GCCcore-13.3.0`| +|3.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SVT-AV1/3.1.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/SWIG.md b/docs/available_software/detail/SWIG.md index 756aafecca..e94ccfbd48 100644 --- a/docs/available_software/detail/SWIG.md +++ b/docs/available_software/detail/SWIG.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SWIG is a software development tool that connects programs written - in C and C++ with a variety of high-level programming languages. + description: "SWIG is a software development tool that connects programs written\ + \ in C and C++ with\n a variety of high-level programming languages." license: Not confirmed name: SWIG offers: @@ -25,31 +23,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SWIG/4.1.1-GCCcore-12.3.0'', ''SWIG/4.1.1-GCCcore-13.2.0'']' + softwareVersion: '[''4.3.1'', ''4.2.1'', ''4.1.1'']' url: http://www.swig.org/ --- +# SWIG -SWIG -==== +SWIG is a software development tool that connects programs written in C and C++ with + a variety of high-level programming languages. -SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. +homepage: [http://www.swig.org/](http://www.swig.org/) -http://www.swig.org/ -# Available modules +## Available installations -The overview below shows which SWIG installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using SWIG, load one of these modules using a `module load` command like: - -```shell -module load SWIG/4.1.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SWIG/4.1.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SWIG/4.1.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SWIG version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SWIG/4.3.1-GCCcore-14.3.0`| +|4.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SWIG/4.3.1-GCCcore-14.2.0`| +|4.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SWIG/4.2.1-GCCcore-13.3.0`| +|4.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SWIG/4.1.1-GCCcore-13.2.0`| +|4.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SWIG/4.1.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Salmon.md b/docs/available_software/detail/Salmon.md index 4d02059cb7..997718ee1a 100644 --- a/docs/available_software/detail/Salmon.md +++ b/docs/available_software/detail/Salmon.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Salmon is a wicked-fast program to produce a highly-accurate, transcript-level - quantification estimate from RNA-seq data. + description: "Salmon is a wicked-fast program to produce a highly-accurate,\n transcript-level\ + \ quantification estimate from RNA-seq data." license: Not confirmed name: Salmon offers: @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Salmon/1.10.3-GCC-12.3.0'']' + softwareVersion: '[''1.10.3'']' url: https://github.com/COMBINE-lab/salmon --- +# Salmon -Salmon -====== +Salmon is a wicked-fast program to produce a highly-accurate, + transcript-level quantification estimate from RNA-seq data. -Salmon is a wicked-fast program to produce a highly-accurate, transcript-level quantification estimate from RNA-seq data. +homepage: [https://github.com/COMBINE-lab/salmon](https://github.com/COMBINE-lab/salmon) -https://github.com/COMBINE-lab/salmon -# Available modules +## Available installations -The overview below shows which Salmon installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Salmon, load one of these modules using a `module load` command like: - -```shell -module load Salmon/1.10.3-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Salmon/1.10.3-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Salmon version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.10.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Salmon/1.10.3-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ScaFaCoS.md b/docs/available_software/detail/ScaFaCoS.md index f21d0f5e84..c24869736e 100644 --- a/docs/available_software/detail/ScaFaCoS.md +++ b/docs/available_software/detail/ScaFaCoS.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ScaFaCoS/1.0.4-foss-2023a'', ''ScaFaCoS/1.0.4-foss-2023b'']' + softwareVersion: '[''1.0.4'']' url: http://www.scafacos.de/ --- - -ScaFaCoS -======== +# ScaFaCoS ScaFaCoS is a library of scalable fast coulomb solvers. -http://www.scafacos.de/ -# Available modules - - -The overview below shows which ScaFaCoS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ScaFaCoS, load one of these modules using a `module load` command like: +homepage: [http://www.scafacos.de/](http://www.scafacos.de/) -```shell -module load ScaFaCoS/1.0.4-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ScaFaCoS/1.0.4-foss-2023b|-|-|-|-|-|x|x|x|x|x|x|x|x|x| -|ScaFaCoS/1.0.4-foss-2023a|-|-|-|-|-|x|x|x|x|x|x|x|x|x| +|ScaFaCoS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.4|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ScaFaCoS/1.0.4-foss-2024a`| +|1.0.4|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ScaFaCoS/1.0.4-foss-2023b`| +|1.0.4|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ScaFaCoS/1.0.4-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ScaLAPACK.md b/docs/available_software/detail/ScaLAPACK.md index aaf78000b6..5eb00aaee8 100644 --- a/docs/available_software/detail/ScaLAPACK.md +++ b/docs/available_software/detail/ScaLAPACK.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK - routines redesigned for distributed memory MIMD parallel computers. + description: "The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK\ + \ routines\n redesigned for distributed memory MIMD parallel computers." license: Not confirmed name: ScaLAPACK offers: @@ -25,33 +23,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ScaLAPACK/2.2.0-gompi-2022b-fb'', ''ScaLAPACK/2.2.0-gompi-2023a-fb'', - ''ScaLAPACK/2.2.0-gompi-2023b-fb'']' + softwareVersion: '[''2.2.2'', ''2.2.0'']' url: https://www.netlib.org/scalapack/ --- +# ScaLAPACK -ScaLAPACK -========= +The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines + redesigned for distributed memory MIMD parallel computers. -The ScaLAPACK (or Scalable LAPACK) library includes a subset of LAPACK routines redesigned for distributed memory MIMD parallel computers. +homepage: [https://www.netlib.org/scalapack/](https://www.netlib.org/scalapack/) -https://www.netlib.org/scalapack/ -# Available modules +## Available installations -The overview below shows which ScaLAPACK installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ScaLAPACK, load one of these modules using a `module load` command like: - -```shell -module load ScaLAPACK/2.2.0-gompi-2023b-fb -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ScaLAPACK/2.2.0-gompi-2023b-fb|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ScaLAPACK/2.2.0-gompi-2023a-fb|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ScaLAPACK/2.2.0-gompi-2022b-fb|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ScaLAPACK version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ScaLAPACK/2.2.2-lompi-2025b-fb`| +|2.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ScaLAPACK/2.2.2-gompi-2025b-fb`| +|2.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ScaLAPACK/2.2.2-gompi-2025a-fb`| +|2.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ScaLAPACK/2.2.0-gompi-2024a-fb`| +|2.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ScaLAPACK/2.2.0-gompi-2023b-fb`| +|2.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ScaLAPACK/2.2.0-gompi-2023a-fb`| +|2.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ScaLAPACK/2.2.0-gompi-2022b-fb`| \ No newline at end of file diff --git a/docs/available_software/detail/Scalasca.md b/docs/available_software/detail/Scalasca.md new file mode 100644 index 0000000000..a0ef544e84 --- /dev/null +++ b/docs/available_software/detail/Scalasca.md @@ -0,0 +1,51 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "\n Scalasca is a software tool that supports the performance optimization\ + \ of\n parallel programs by measuring and analyzing their runtime behavior. The\n\ + \ analysis identifies potential performance bottlenecks -- in particular\n those\ + \ concerning communication and synchronization -- and offers guidance\n in exploring\ + \ their causes.\n" + license: Not confirmed + name: Scalasca + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.6.2'']' + url: https://www.scalasca.org/ +--- +# Scalasca + + + + Scalasca is a software tool that supports the performance optimization of + parallel programs by measuring and analyzing their runtime behavior. The + analysis identifies potential performance bottlenecks -- in particular + those concerning communication and synchronization -- and offers guidance + in exploring their causes. + + +homepage: [https://www.scalasca.org/](https://www.scalasca.org/) + +## Available installations + + +|Scalasca version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Scalasca/2.6.2-lompi-2025b`| +|2.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Scalasca/2.6.2-gompi-2025b`| \ No newline at end of file diff --git a/docs/available_software/detail/SciPy-bundle.md b/docs/available_software/detail/SciPy-bundle.md index 5ce42074d0..d54fed4e4e 100644 --- a/docs/available_software/detail/SciPy-bundle.md +++ b/docs/available_software/detail/SciPy-bundle.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,52 +22,161 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SciPy-bundle/2023.02-gfbf-2022b'', ''SciPy-bundle/2023.07-gfbf-2023a'', - ''SciPy-bundle/2023.11-gfbf-2023b'']' + softwareVersion: '[''2025.07'', ''2025.06'', ''2024.05'', ''2023.11'', ''2023.07'', + ''2023.02'']' url: https://python.org/ --- - -SciPy-bundle -============ +# SciPy-bundle Bundle of Python packages for scientific software -https://python.org/ -# Available modules +homepage: [https://python.org/](https://python.org/) + +## Available installations + + +|SciPy-bundle version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025.07|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SciPy-bundle/2025.07-gfbf-2025b`| +|2025.06|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SciPy-bundle/2025.06-gfbf-2025a`| +|2024.05|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SciPy-bundle/2024.05-gfbf-2024a`| +|2023.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SciPy-bundle/2023.11-gfbf-2023b`| +|2023.07|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SciPy-bundle/2023.07-gfbf-2023a`| +|2023.02|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SciPy-bundle/2023.02-gfbf-2022b`| + +## Extensions + +Overview of extensions included in SciPy-bundle installations + + +### beniget + + +|`beniget` version|SciPy-bundle modules that include it| +| --- | --- | +|0.4.2.post1|`SciPy-bundle/2025.07-gfbf-2025b`
`SciPy-bundle/2025.06-gfbf-2025a`| +|0.4.1|`SciPy-bundle/2024.05-gfbf-2024a`
`SciPy-bundle/2023.11-gfbf-2023b`
`SciPy-bundle/2023.07-gfbf-2023a`
`SciPy-bundle/2023.02-gfbf-2022b`| + +### Bottleneck + + +|`Bottleneck` version|SciPy-bundle modules that include it| +| --- | --- | +|1.3.8|`SciPy-bundle/2024.05-gfbf-2024a`| +|1.3.7|`SciPy-bundle/2023.11-gfbf-2023b`
`SciPy-bundle/2023.07-gfbf-2023a`| +|1.3.5|`SciPy-bundle/2023.02-gfbf-2022b`| + +### bottleneck + + +|`bottleneck` version|SciPy-bundle modules that include it| +| --- | --- | +|1.5.0|`SciPy-bundle/2025.07-gfbf-2025b`
`SciPy-bundle/2025.06-gfbf-2025a`| + +### deap + + +|`deap` version|SciPy-bundle modules that include it| +| --- | --- | +|1.4.3|`SciPy-bundle/2025.07-gfbf-2025b`
`SciPy-bundle/2025.06-gfbf-2025a`| +|1.4.1|`SciPy-bundle/2024.05-gfbf-2024a`
`SciPy-bundle/2023.11-gfbf-2023b`| +|1.4.0|`SciPy-bundle/2023.07-gfbf-2023a`| +|1.3.3|`SciPy-bundle/2023.02-gfbf-2022b`| + +### gast + + +|`gast` version|SciPy-bundle modules that include it| +| --- | --- | +|0.6.0|`SciPy-bundle/2025.07-gfbf-2025b`
`SciPy-bundle/2025.06-gfbf-2025a`| +|0.5.4|`SciPy-bundle/2024.05-gfbf-2024a`
`SciPy-bundle/2023.11-gfbf-2023b`
`SciPy-bundle/2023.07-gfbf-2023a`| +|0.5.3|`SciPy-bundle/2023.02-gfbf-2022b`| + +### mpmath + + +|`mpmath` version|SciPy-bundle modules that include it| +| --- | --- | +|1.3.0|`SciPy-bundle/2025.07-gfbf-2025b`
`SciPy-bundle/2025.06-gfbf-2025a`
`SciPy-bundle/2024.05-gfbf-2024a`
`SciPy-bundle/2023.11-gfbf-2023b`
`SciPy-bundle/2023.07-gfbf-2023a`| +|1.2.1|`SciPy-bundle/2023.02-gfbf-2022b`| + +### numexpr + + +|`numexpr` version|SciPy-bundle modules that include it| +| --- | --- | +|2.11.0|`SciPy-bundle/2025.07-gfbf-2025b`
`SciPy-bundle/2025.06-gfbf-2025a`| +|2.10.0|`SciPy-bundle/2024.05-gfbf-2024a`| +|2.8.7|`SciPy-bundle/2023.11-gfbf-2023b`| +|2.8.4|`SciPy-bundle/2023.07-gfbf-2023a`
`SciPy-bundle/2023.02-gfbf-2022b`| + +### numpy + + +|`numpy` version|SciPy-bundle modules that include it| +| --- | --- | +|2.3.2|`SciPy-bundle/2025.07-gfbf-2025b`| +|2.3.1|`SciPy-bundle/2025.06-gfbf-2025a`| +|1.26.4|`SciPy-bundle/2024.05-gfbf-2024a`| +|1.26.2|`SciPy-bundle/2023.11-gfbf-2023b`| +|1.25.1|`SciPy-bundle/2023.07-gfbf-2023a`| +|1.24.2|`SciPy-bundle/2023.02-gfbf-2022b`| + +### pandas + +|`pandas` version|SciPy-bundle modules that include it| +| --- | --- | +|2.3.1|`SciPy-bundle/2025.07-gfbf-2025b`| +|2.3.0|`SciPy-bundle/2025.06-gfbf-2025a`| +|2.2.2|`SciPy-bundle/2024.05-gfbf-2024a`| +|2.1.3|`SciPy-bundle/2023.11-gfbf-2023b`| +|2.0.3|`SciPy-bundle/2023.07-gfbf-2023a`| +|1.5.3|`SciPy-bundle/2023.02-gfbf-2022b`| -The overview below shows which SciPy-bundle installations are available per target architecture in EESSI, ordered based on software version (new to old). +### ply -To start using SciPy-bundle, load one of these modules using a `module load` command like: -```shell -module load SciPy-bundle/2023.11-gfbf-2023b -``` +|`ply` version|SciPy-bundle modules that include it| +| --- | --- | +|3.11|`SciPy-bundle/2025.07-gfbf-2025b`
`SciPy-bundle/2025.06-gfbf-2025a`
`SciPy-bundle/2024.05-gfbf-2024a`
`SciPy-bundle/2023.11-gfbf-2023b`
`SciPy-bundle/2023.07-gfbf-2023a`
`SciPy-bundle/2023.02-gfbf-2022b`| -*(This data was automatically generated on {{ generated_time }})* +### pythran -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SciPy-bundle/2023.11-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SciPy-bundle/2023.07-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SciPy-bundle/2023.02-gfbf-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`pythran` version|SciPy-bundle modules that include it| +| --- | --- | +|0.18.0|`SciPy-bundle/2025.07-gfbf-2025b`
`SciPy-bundle/2025.06-gfbf-2025a`| +|0.16.1|`SciPy-bundle/2024.05-gfbf-2024a`| +|0.14.0|`SciPy-bundle/2023.11-gfbf-2023b`| +|0.13.1|`SciPy-bundle/2023.07-gfbf-2023a`| +|0.12.1|`SciPy-bundle/2023.02-gfbf-2022b`| -### SciPy-bundle/2023.11-gfbf-2023b +### scipy -This is a list of extensions included in the module: -beniget-0.4.1, Bottleneck-1.3.7, deap-1.4.1, gast-0.5.4, mpmath-1.3.0, numexpr-2.8.7, numpy-1.26.2, pandas-2.1.3, ply-3.11, pythran-0.14.0, scipy-1.11.4, tzdata-2023.3, versioneer-0.29 +|`scipy` version|SciPy-bundle modules that include it| +| --- | --- | +|1.16.1|`SciPy-bundle/2025.07-gfbf-2025b`| +|1.16.0|`SciPy-bundle/2025.06-gfbf-2025a`| +|1.13.1|`SciPy-bundle/2024.05-gfbf-2024a`| +|1.11.4|`SciPy-bundle/2023.11-gfbf-2023b`| +|1.11.1|`SciPy-bundle/2023.07-gfbf-2023a`| +|1.10.1|`SciPy-bundle/2023.02-gfbf-2022b`| -### SciPy-bundle/2023.07-gfbf-2023a +### tzdata -This is a list of extensions included in the module: -beniget-0.4.1, Bottleneck-1.3.7, deap-1.4.0, gast-0.5.4, mpmath-1.3.0, numexpr-2.8.4, numpy-1.25.1, pandas-2.0.3, ply-3.11, pythran-0.13.1, scipy-1.11.1, tzdata-2023.3, versioneer-0.29 +|`tzdata` version|SciPy-bundle modules that include it| +| --- | --- | +|2025.2|`SciPy-bundle/2025.07-gfbf-2025b`
`SciPy-bundle/2025.06-gfbf-2025a`| +|2024.1|`SciPy-bundle/2024.05-gfbf-2024a`| +|2023.3|`SciPy-bundle/2023.11-gfbf-2023b`
`SciPy-bundle/2023.07-gfbf-2023a`| -### SciPy-bundle/2023.02-gfbf-2022b +### versioneer -This is a list of extensions included in the module: -beniget-0.4.1, Bottleneck-1.3.5, deap-1.3.3, gast-0.5.3, mpmath-1.2.1, numexpr-2.8.4, numpy-1.24.2, pandas-1.5.3, ply-3.11, pythran-0.12.1, scipy-1.10.1 \ No newline at end of file +|`versioneer` version|SciPy-bundle modules that include it| +| --- | --- | +|0.29|`SciPy-bundle/2025.07-gfbf-2025b`
`SciPy-bundle/2025.06-gfbf-2025a`
`SciPy-bundle/2024.05-gfbf-2024a`
`SciPy-bundle/2023.11-gfbf-2023b`
`SciPy-bundle/2023.07-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/SciTools-Iris.md b/docs/available_software/detail/SciTools-Iris.md index d6aa65958d..3ff5f2c56c 100644 --- a/docs/available_software/detail/SciTools-Iris.md +++ b/docs/available_software/detail/SciTools-Iris.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A powerful, format-agnostic, community-driven Python package for analysing - andvisualising Earth science data. + description: 'A powerful, format-agnostic, community-driven Python package for analysing + and + + visualising Earth science data.' license: Not confirmed name: SciTools-Iris offers: @@ -25,37 +25,46 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SciTools-Iris/3.9.0-foss-2023a'']' + softwareVersion: '[''3.9.0'']' url: https://scitools-iris.readthedocs.io --- +# SciTools-Iris + + +A powerful, format-agnostic, community-driven Python package for analysing and +visualising Earth science data. + +homepage: [https://scitools-iris.readthedocs.io](https://scitools-iris.readthedocs.io) + +## Available installations -SciTools-Iris -============= +|SciTools-Iris version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SciTools-Iris/3.9.0-foss-2023a`| -A powerful, format-agnostic, community-driven Python package for analysing andvisualising Earth science data. +## Extensions -https://scitools-iris.readthedocs.io -# Available modules +Overview of extensions included in SciTools-Iris installations -The overview below shows which SciTools-Iris installations are available per target architecture in EESSI, ordered based on software version (new to old). +### antlr4-python3-runtime -To start using SciTools-Iris, load one of these modules using a `module load` command like: -```shell -module load SciTools-Iris/3.9.0-foss-2023a -``` +|`antlr4-python3-runtime` version|SciTools-Iris modules that include it| +| --- | --- | +|4.7.2|`SciTools-Iris/3.9.0-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### cf-units -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SciTools-Iris/3.9.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`cf-units` version|SciTools-Iris modules that include it| +| --- | --- | +|3.2.0|`SciTools-Iris/3.9.0-foss-2023a`| -### SciTools-Iris/3.9.0-foss-2023a +### scitools_iris -This is a list of extensions included in the module: -antlr4-python3-runtime-4.7.2, cf-units-3.2.0, scitools_iris-3.9.0 \ No newline at end of file +|`scitools_iris` version|SciTools-Iris modules that include it| +| --- | --- | +|3.9.0|`SciTools-Iris/3.9.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Score-P.md b/docs/available_software/detail/Score-P.md index 893fd54529..7395320f14 100644 --- a/docs/available_software/detail/Score-P.md +++ b/docs/available_software/detail/Score-P.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Score-P measurement infrastructure is a highly scalable and easy-to-use - tool suite for profiling, event tracing, and online analysis of HPC applications. + description: "\n The Score-P measurement infrastructure is a highly scalable and\ + \ easy-to-use\n tool suite for profiling, event tracing, and online analysis of\ + \ HPC\n applications.\n" license: Not confirmed name: Score-P offers: @@ -25,30 +24,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Score-P/8.4-gompi-2023b'']' + softwareVersion: '[''9.4'', ''9.3'', ''8.4'']' url: https://www.score-p.org --- +# Score-P -Score-P -======= -The Score-P measurement infrastructure is a highly scalable and easy-to-use tool suite for profiling, event tracing, and online analysis of HPC applications. + The Score-P measurement infrastructure is a highly scalable and easy-to-use + tool suite for profiling, event tracing, and online analysis of HPC + applications. -https://www.score-p.org -# Available modules +homepage: [https://www.score-p.org](https://www.score-p.org) -The overview below shows which Score-P installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using Score-P, load one of these modules using a `module load` command like: -```shell -module load Score-P/8.4-gompi-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Score-P/8.4-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Score-P version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Score-P/9.4-lompi-2025b`| +|9.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Score-P/9.4-gompi-2025b`| +|9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Score-P/9.3-gompi-2025a`| +|8.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Score-P/8.4-gompi-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/Seaborn.md b/docs/available_software/detail/Seaborn.md index 83241f6b90..4d173653ea 100644 --- a/docs/available_software/detail/Seaborn.md +++ b/docs/available_software/detail/Seaborn.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Seaborn is a Python visualization library based on matplotlib. It provides - a high-level interface for drawing attractive statistical graphics. + description: " Seaborn is a Python visualization library based on matplotlib.\n\ + \ It provides a high-level interface for drawing attractive statistical graphics. " license: Not confirmed name: Seaborn offers: @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Seaborn/0.13.2-gfbf-2023a'']' + softwareVersion: '[''0.13.2'']' url: https://seaborn.pydata.org/ --- +# Seaborn -Seaborn -======= + Seaborn is a Python visualization library based on matplotlib. + It provides a high-level interface for drawing attractive statistical graphics. -Seaborn is a Python visualization library based on matplotlib. It provides a high-level interface for drawing attractive statistical graphics. +homepage: [https://seaborn.pydata.org/](https://seaborn.pydata.org/) -https://seaborn.pydata.org/ -# Available modules +## Available installations -The overview below shows which Seaborn installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Seaborn, load one of these modules using a `module load` command like: - -```shell -module load Seaborn/0.13.2-gfbf-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Seaborn/0.13.2-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Seaborn version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.13.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Seaborn/0.13.2-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Shapely.md b/docs/available_software/detail/Shapely.md index 7dc5583d74..e7aa55db5a 100644 --- a/docs/available_software/detail/Shapely.md +++ b/docs/available_software/detail/Shapely.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Shapely is a BSD-licensed Python package for manipulation and analysis - of planar geometric objects.It is based on the widely deployed GEOS (the engine - of PostGIS) and JTS (from which GEOS is ported) libraries. + description: 'Shapely is a BSD-licensed Python package for manipulation and analysis + of planar geometric objects. + + It is based on the widely deployed GEOS (the engine of PostGIS) and JTS (from + which GEOS is ported) libraries.' license: Not confirmed name: Shapely offers: @@ -26,30 +26,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Shapely/2.0.1-gfbf-2023a'']' + softwareVersion: '[''2.0.1'']' url: https://github.com/Toblerity/Shapely --- - -Shapely -======= - - -Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects.It is based on the widely deployed GEOS (the engine of PostGIS) and JTS (from which GEOS is ported) libraries. - -https://github.com/Toblerity/Shapely -# Available modules +# Shapely -The overview below shows which Shapely installations are available per target architecture in EESSI, ordered based on software version (new to old). +Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects. +It is based on the widely deployed GEOS (the engine of PostGIS) and JTS (from which GEOS is ported) libraries. -To start using Shapely, load one of these modules using a `module load` command like: +homepage: [https://github.com/Toblerity/Shapely](https://github.com/Toblerity/Shapely) -```shell -module load Shapely/2.0.1-gfbf-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Shapely/2.0.1-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Shapely version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Shapely/2.0.1-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Siesta.md b/docs/available_software/detail/Siesta.md index afd566cd98..bbc908c09f 100644 --- a/docs/available_software/detail/Siesta.md +++ b/docs/available_software/detail/Siesta.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SIESTA is both a method and its computer program implementation, to - perform efficient electronicstructure calculations and ab initio molecular dynamics - simulations of molecules and solids. + description: 'SIESTA is both a method and its computer program implementation, to + perform efficient electronic + + structure calculations and ab initio molecular dynamics simulations of molecules + and solids.' license: Not confirmed name: Siesta offers: @@ -26,30 +26,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Siesta/5.2.2-foss-2023a'']' + softwareVersion: '[''5.4.2'', ''5.2.2'']' url: https://siesta-project.org/siesta/About/overview.html --- - -Siesta -====== - - -SIESTA is both a method and its computer program implementation, to perform efficient electronicstructure calculations and ab initio molecular dynamics simulations of molecules and solids. - -https://siesta-project.org/siesta/About/overview.html -# Available modules +# Siesta -The overview below shows which Siesta installations are available per target architecture in EESSI, ordered based on software version (new to old). +SIESTA is both a method and its computer program implementation, to perform efficient electronic +structure calculations and ab initio molecular dynamics simulations of molecules and solids. -To start using Siesta, load one of these modules using a `module load` command like: +homepage: [https://siesta-project.org/siesta/About/overview.html](https://siesta-project.org/siesta/About/overview.html) -```shell -module load Siesta/5.2.2-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Siesta/5.2.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Siesta version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Siesta/5.4.2-foss-2024a`| +|5.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Siesta/5.2.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Simple-DFTD3.md b/docs/available_software/detail/Simple-DFTD3.md index 11be227108..d4ede134d9 100644 --- a/docs/available_software/detail/Simple-DFTD3.md +++ b/docs/available_software/detail/Simple-DFTD3.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Reimplementation of the D3 dispersion correction. The s-dftd3 project - aims toprovide a user-friendly and uniform interface to the D3 dispersion model - andfor the calculation of DFT-D3 dispersion corrections. + description: 'Reimplementation of the D3 dispersion correction. The s-dftd3 project + aims to + + provide a user-friendly and uniform interface to the D3 dispersion model and + + for the calculation of DFT-D3 dispersion corrections.' license: Not confirmed name: Simple-DFTD3 offers: @@ -26,31 +27,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Simple-DFTD3/1.2.1-gfbf-2023a'', ''Simple-DFTD3/1.2.1-gfbf-2023b'']' + softwareVersion: '[''1.2.1'']' url: https://dftd3.readthedocs.io --- - -Simple-DFTD3 -============ - - -Reimplementation of the D3 dispersion correction. The s-dftd3 project aims toprovide a user-friendly and uniform interface to the D3 dispersion model andfor the calculation of DFT-D3 dispersion corrections. - -https://dftd3.readthedocs.io -# Available modules +# Simple-DFTD3 -The overview below shows which Simple-DFTD3 installations are available per target architecture in EESSI, ordered based on software version (new to old). +Reimplementation of the D3 dispersion correction. The s-dftd3 project aims to +provide a user-friendly and uniform interface to the D3 dispersion model and +for the calculation of DFT-D3 dispersion corrections. -To start using Simple-DFTD3, load one of these modules using a `module load` command like: +homepage: [https://dftd3.readthedocs.io](https://dftd3.readthedocs.io) -```shell -module load Simple-DFTD3/1.2.1-gfbf-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Simple-DFTD3/1.2.1-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Simple-DFTD3/1.2.1-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Simple-DFTD3 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Simple-DFTD3/1.2.1-gfbf-2024a`| +|1.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Simple-DFTD3/1.2.1-gfbf-2023b`| +|1.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Simple-DFTD3/1.2.1-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/SlurmViewer.md b/docs/available_software/detail/SlurmViewer.md index aecaa4f0a5..761dd9c488 100644 --- a/docs/available_software/detail/SlurmViewer.md +++ b/docs/available_software/detail/SlurmViewer.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,59 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SlurmViewer/1.0.1-GCCcore-13.2.0'']' + softwareVersion: '[''1.0.1'']' url: https://gitlab.com/lkeb/slurm_viewer --- - -SlurmViewer -=========== +# SlurmViewer View the status of a Slurm cluster, including nodes and queue. -https://gitlab.com/lkeb/slurm_viewer -# Available modules +homepage: [https://gitlab.com/lkeb/slurm_viewer](https://gitlab.com/lkeb/slurm_viewer) + +## Available installations + + +|SlurmViewer version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SlurmViewer/1.0.1-GCCcore-13.2.0`| + +## Extensions + +Overview of extensions included in SlurmViewer installations + + +### asyncssh + + +|`asyncssh` version|SlurmViewer modules that include it| +| --- | --- | +|2.18.0|`SlurmViewer/1.0.1-GCCcore-13.2.0`| + +### plotext + +|`plotext` version|SlurmViewer modules that include it| +| --- | --- | +|5.2.8|`SlurmViewer/1.0.1-GCCcore-13.2.0`| -The overview below shows which SlurmViewer installations are available per target architecture in EESSI, ordered based on software version (new to old). +### slurm-viewer -To start using SlurmViewer, load one of these modules using a `module load` command like: -```shell -module load SlurmViewer/1.0.1-GCCcore-13.2.0 -``` +|`slurm-viewer` version|SlurmViewer modules that include it| +| --- | --- | +|1.0.1|`SlurmViewer/1.0.1-GCCcore-13.2.0`| -*(This data was automatically generated on {{ generated_time }})* +### textual -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SlurmViewer/1.0.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`textual` version|SlurmViewer modules that include it| +| --- | --- | +|0.85.2|`SlurmViewer/1.0.1-GCCcore-13.2.0`| -### SlurmViewer/1.0.1-GCCcore-13.2.0 +### textual-plotext -This is a list of extensions included in the module: -asyncssh-2.18.0, plotext-5.2.8, slurm-viewer-1.0.1, textual-0.85.2, textual-plotext-0.2.1 \ No newline at end of file +|`textual-plotext` version|SlurmViewer modules that include it| +| --- | --- | +|0.2.1|`SlurmViewer/1.0.1-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Solids4foam.md b/docs/available_software/detail/Solids4foam.md index 248fd2b1a3..0cd1abe042 100644 --- a/docs/available_software/detail/Solids4foam.md +++ b/docs/available_software/detail/Solids4foam.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Solids4foam/2.1-foss-2023a'']' + softwareVersion: '[''2.1'']' url: https://www.solids4foam.com/ --- - -Solids4foam -=========== +# Solids4foam A toolbox for performing solid mechanics and fluid-solid interactions in OpenFOAM. -https://www.solids4foam.com/ -# Available modules - - -The overview below shows which Solids4foam installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Solids4foam, load one of these modules using a `module load` command like: +homepage: [https://www.solids4foam.com/](https://www.solids4foam.com/) -```shell -module load Solids4foam/2.1-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Solids4foam/2.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Solids4foam version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Solids4foam/2.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Subread.md b/docs/available_software/detail/Subread.md index c4161a154d..d4daafbddd 100644 --- a/docs/available_software/detail/Subread.md +++ b/docs/available_software/detail/Subread.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Subread/2.1.1-GCC-13.2.0'']' + softwareVersion: '[''2.1.1'']' url: https://subread.sourceforge.net/ --- - -Subread -======= +# Subread High performance read alignment, quantification and mutation discovery -https://subread.sourceforge.net/ -# Available modules - - -The overview below shows which Subread installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Subread, load one of these modules using a `module load` command like: +homepage: [https://subread.sourceforge.net/](https://subread.sourceforge.net/) -```shell -module load Subread/2.1.1-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Subread/2.1.1-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Subread version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Subread/2.1.1-GCC-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/SuiteSparse.md b/docs/available_software/detail/SuiteSparse.md index e40699617c..191c07dcf4 100644 --- a/docs/available_software/detail/SuiteSparse.md +++ b/docs/available_software/detail/SuiteSparse.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SuiteSparse/7.1.0-foss-2023a'', ''SuiteSparse/7.7.0-foss-2023b'']' + softwareVersion: '[''7.10.3'', ''7.7.0'', ''7.1.0'']' url: https://faculty.cse.tamu.edu/davis/suitesparse.html --- - -SuiteSparse -=========== +# SuiteSparse SuiteSparse is a collection of libraries to manipulate sparse matrices. -https://faculty.cse.tamu.edu/davis/suitesparse.html -# Available modules - - -The overview below shows which SuiteSparse installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using SuiteSparse, load one of these modules using a `module load` command like: +homepage: [https://faculty.cse.tamu.edu/davis/suitesparse.html](https://faculty.cse.tamu.edu/davis/suitesparse.html) -```shell -module load SuiteSparse/7.7.0-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SuiteSparse/7.7.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SuiteSparse/7.1.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SuiteSparse version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.10.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SuiteSparse/7.10.3-foss-2025a`| +|7.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SuiteSparse/7.7.0-foss-2023b`| +|7.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SuiteSparse/7.1.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/SuperLU_DIST.md b/docs/available_software/detail/SuperLU_DIST.md index b2d9d69e08..49d095ee8c 100644 --- a/docs/available_software/detail/SuperLU_DIST.md +++ b/docs/available_software/detail/SuperLU_DIST.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SuperLU is a general purpose library for the direct solution of large, - sparse, nonsymmetric systems of linear equations on high performance machines. + description: "SuperLU is a general purpose library for the direct solution of large,\ + \ sparse, nonsymmetric systems\n of linear equations on high performance machines." license: Not confirmed name: SuperLU_DIST offers: @@ -25,31 +23,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''SuperLU_DIST/8.1.2-foss-2023a'', ''SuperLU_DIST/8.2.1-foss-2023b'']' + softwareVersion: '[''9.1.0'', ''8.2.1'', ''8.1.2'']' url: https://crd-legacy.lbl.gov/~xiaoye/SuperLU/ --- +# SuperLU_DIST -SuperLU_DIST -============ +SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems + of linear equations on high performance machines. -SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations on high performance machines. +homepage: [https://crd-legacy.lbl.gov/~xiaoye/SuperLU/](https://crd-legacy.lbl.gov/~xiaoye/SuperLU/) -https://crd-legacy.lbl.gov/~xiaoye/SuperLU/ -# Available modules +## Available installations -The overview below shows which SuperLU_DIST installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using SuperLU_DIST, load one of these modules using a `module load` command like: - -```shell -module load SuperLU_DIST/8.2.1-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|SuperLU_DIST/8.2.1-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|SuperLU_DIST/8.1.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|SuperLU_DIST version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`SuperLU_DIST/9.1.0-foss-2025a`| +|8.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SuperLU_DIST/8.2.1-foss-2023b`| +|8.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`SuperLU_DIST/8.1.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Szip.md b/docs/available_software/detail/Szip.md index ba214ee398..17b1039f2a 100644 --- a/docs/available_software/detail/Szip.md +++ b/docs/available_software/detail/Szip.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Szip compression software, providing lossless compression of scientific - data + description: "\n Szip compression software, providing lossless compression of scientific\ + \ data\n" license: Not confirmed name: Szip offers: @@ -25,33 +23,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Szip/2.1.1-GCCcore-12.2.0'', ''Szip/2.1.1-GCCcore-12.3.0'', - ''Szip/2.1.1-GCCcore-13.2.0'']' + softwareVersion: '[''2.1.1'']' url: https://www.hdfgroup.org/doc_resource/SZIP/ --- +# Szip -Szip -==== -Szip compression software, providing lossless compression of scientific data + Szip compression software, providing lossless compression of scientific data -https://www.hdfgroup.org/doc_resource/SZIP/ -# Available modules +homepage: [https://www.hdfgroup.org/doc_resource/SZIP/](https://www.hdfgroup.org/doc_resource/SZIP/) -The overview below shows which Szip installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using Szip, load one of these modules using a `module load` command like: -```shell -module load Szip/2.1.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Szip/2.1.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Szip/2.1.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Szip/2.1.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Szip version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Szip/2.1.1-GCCcore-14.3.0`| +|2.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Szip/2.1.1-GCCcore-14.2.0`| +|2.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Szip/2.1.1-GCCcore-13.3.0`| +|2.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Szip/2.1.1-GCCcore-13.2.0`| +|2.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Szip/2.1.1-GCCcore-12.3.0`| +|2.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Szip/2.1.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/TOML-Fortran.md b/docs/available_software/detail/TOML-Fortran.md index c686187b96..798a7b08af 100644 --- a/docs/available_software/detail/TOML-Fortran.md +++ b/docs/available_software/detail/TOML-Fortran.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''TOML-Fortran/0.4.2-GCC-12.3.0'', ''TOML-Fortran/0.4.2-GCC-13.2.0'']' + softwareVersion: '[''0.4.2'']' url: https://github.com/toml-f/toml-f --- - -TOML-Fortran -============ +# TOML-Fortran TOML parser for Fortran projects -https://github.com/toml-f/toml-f -# Available modules - - -The overview below shows which TOML-Fortran installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using TOML-Fortran, load one of these modules using a `module load` command like: +homepage: [https://github.com/toml-f/toml-f](https://github.com/toml-f/toml-f) -```shell -module load TOML-Fortran/0.4.2-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|TOML-Fortran/0.4.2-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|TOML-Fortran/0.4.2-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|TOML-Fortran version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`TOML-Fortran/0.4.2-GCC-13.3.0`| +|0.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`TOML-Fortran/0.4.2-GCC-13.2.0`| +|0.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`TOML-Fortran/0.4.2-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Tcl.md b/docs/available_software/detail/Tcl.md index f0795f4ba1..eac5599f1f 100644 --- a/docs/available_software/detail/Tcl.md +++ b/docs/available_software/detail/Tcl.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Tcl (Tool Command Language) is a very powerful but easy to learn dynamic - programming language, suitable for a very wide range of uses, including web and - desktop applications, networking, administration, testing and many more. + description: "\n Tcl (Tool Command Language) is a very powerful but easy to learn\ + \ dynamic\n programming language, suitable for a very wide range of uses, including\ + \ web\n and desktop applications, networking, administration, testing and many\ + \ more.\n" license: Not confirmed name: Tcl offers: @@ -26,33 +25,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Tcl/8.6.12-GCCcore-12.2.0'', ''Tcl/8.6.13-GCCcore-12.3.0'', - ''Tcl/8.6.13-GCCcore-13.2.0'']' + softwareVersion: '[''9.0.1'', ''8.6.16'', ''8.6.14'', ''8.6.13'', ''8.6.12'']' url: https://www.tcl.tk/ --- +# Tcl -Tcl -=== -Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. + Tcl (Tool Command Language) is a very powerful but easy to learn dynamic + programming language, suitable for a very wide range of uses, including web + and desktop applications, networking, administration, testing and many more. -https://www.tcl.tk/ -# Available modules +homepage: [https://www.tcl.tk/](https://www.tcl.tk/) -The overview below shows which Tcl installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using Tcl, load one of these modules using a `module load` command like: -```shell -module load Tcl/8.6.13-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Tcl/8.6.13-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Tcl/8.6.13-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Tcl/8.6.12-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Tcl version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Tcl/9.0.1-GCCcore-14.3.0`| +|8.6.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Tcl/8.6.16-GCCcore-14.2.0`| +|8.6.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Tcl/8.6.14-GCCcore-13.3.0`| +|8.6.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Tcl/8.6.13-GCCcore-13.2.0`| +|8.6.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Tcl/8.6.13-GCCcore-12.3.0`| +|8.6.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Tcl/8.6.12-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/TensorFlow.md b/docs/available_software/detail/TensorFlow.md index 5e2088fd82..136755ceb8 100644 --- a/docs/available_software/detail/TensorFlow.md +++ b/docs/available_software/detail/TensorFlow.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,213 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''TensorFlow/2.13.0-foss-2023a'']' + softwareVersion: '[''2.13.0'']' url: https://www.tensorflow.org/ --- - -TensorFlow -========== +# TensorFlow An open-source software library for Machine Intelligence -https://www.tensorflow.org/ -# Available modules +homepage: [https://www.tensorflow.org/](https://www.tensorflow.org/) + +## Available installations + + +|TensorFlow version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.13.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`TensorFlow/2.13.0-foss-2023a`| + +## Extensions + +Overview of extensions included in TensorFlow installations + + +### absl-py + + +|`absl-py` version|TensorFlow modules that include it| +| --- | --- | +|1.4.0|`TensorFlow/2.13.0-foss-2023a`| + +### astor + + +|`astor` version|TensorFlow modules that include it| +| --- | --- | +|0.8.1|`TensorFlow/2.13.0-foss-2023a`| + +### astunparse + + +|`astunparse` version|TensorFlow modules that include it| +| --- | --- | +|1.6.3|`TensorFlow/2.13.0-foss-2023a`| + +### cachetools + + +|`cachetools` version|TensorFlow modules that include it| +| --- | --- | +|5.3.1|`TensorFlow/2.13.0-foss-2023a`| + +### google-auth + + +|`google-auth` version|TensorFlow modules that include it| +| --- | --- | +|2.22.0|`TensorFlow/2.13.0-foss-2023a`| + +### google-auth-oauthlib + + +|`google-auth-oauthlib` version|TensorFlow modules that include it| +| --- | --- | +|1.0.0|`TensorFlow/2.13.0-foss-2023a`| + +### google-pasta + + +|`google-pasta` version|TensorFlow modules that include it| +| --- | --- | +|0.2.0|`TensorFlow/2.13.0-foss-2023a`| + +### grpcio + + +|`grpcio` version|TensorFlow modules that include it| +| --- | --- | +|1.57.0|`TensorFlow/2.13.0-foss-2023a`| + +### gviz-api + + +|`gviz-api` version|TensorFlow modules that include it| +| --- | --- | +|1.10.0|`TensorFlow/2.13.0-foss-2023a`| + +### keras + + +|`keras` version|TensorFlow modules that include it| +| --- | --- | +|2.13.1|`TensorFlow/2.13.0-foss-2023a`| + +### Markdown + + +|`Markdown` version|TensorFlow modules that include it| +| --- | --- | +|3.4.4|`TensorFlow/2.13.0-foss-2023a`| + +### oauthlib + + +|`oauthlib` version|TensorFlow modules that include it| +| --- | --- | +|3.2.2|`TensorFlow/2.13.0-foss-2023a`| + +### opt-einsum + + +|`opt-einsum` version|TensorFlow modules that include it| +| --- | --- | +|3.3.0|`TensorFlow/2.13.0-foss-2023a`| + +### portpicker + + +|`portpicker` version|TensorFlow modules that include it| +| --- | --- | +|1.5.2|`TensorFlow/2.13.0-foss-2023a`| + +### pyasn1-modules + + +|`pyasn1-modules` version|TensorFlow modules that include it| +| --- | --- | +|0.3.0|`TensorFlow/2.13.0-foss-2023a`| + +### requests-oauthlib + + +|`requests-oauthlib` version|TensorFlow modules that include it| +| --- | --- | +|1.3.1|`TensorFlow/2.13.0-foss-2023a`| + +### rsa + + +|`rsa` version|TensorFlow modules that include it| +| --- | --- | +|4.9|`TensorFlow/2.13.0-foss-2023a`| + +### tblib + + +|`tblib` version|TensorFlow modules that include it| +| --- | --- | +|2.0.0|`TensorFlow/2.13.0-foss-2023a`| + +### tensorboard + + +|`tensorboard` version|TensorFlow modules that include it| +| --- | --- | +|2.13.0|`TensorFlow/2.13.0-foss-2023a`| + +### tensorboard-data-server + + +|`tensorboard-data-server` version|TensorFlow modules that include it| +| --- | --- | +|0.7.1|`TensorFlow/2.13.0-foss-2023a`| + +### tensorboard-plugin-profile + + +|`tensorboard-plugin-profile` version|TensorFlow modules that include it| +| --- | --- | +|2.13.1|`TensorFlow/2.13.0-foss-2023a`| + +### tensorboard-plugin-wit + + +|`tensorboard-plugin-wit` version|TensorFlow modules that include it| +| --- | --- | +|1.8.1|`TensorFlow/2.13.0-foss-2023a`| + +### TensorFlow + + +|`TensorFlow` version|TensorFlow modules that include it| +| --- | --- | +|2.13.0|`TensorFlow/2.13.0-foss-2023a`| + +### tensorflow-estimator + +|`tensorflow-estimator` version|TensorFlow modules that include it| +| --- | --- | +|2.13.0|`TensorFlow/2.13.0-foss-2023a`| -The overview below shows which TensorFlow installations are available per target architecture in EESSI, ordered based on software version (new to old). +### termcolor -To start using TensorFlow, load one of these modules using a `module load` command like: -```shell -module load TensorFlow/2.13.0-foss-2023a -``` +|`termcolor` version|TensorFlow modules that include it| +| --- | --- | +|2.3.0|`TensorFlow/2.13.0-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### Werkzeug -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|TensorFlow/2.13.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`Werkzeug` version|TensorFlow modules that include it| +| --- | --- | +|2.3.7|`TensorFlow/2.13.0-foss-2023a`| -### TensorFlow/2.13.0-foss-2023a +### wrapt -This is a list of extensions included in the module: -absl-py-1.4.0, astor-0.8.1, astunparse-1.6.3, cachetools-5.3.1, google-auth-2.22.0, google-auth-oauthlib-1.0.0, google-pasta-0.2.0, grpcio-1.57.0, gviz-api-1.10.0, keras-2.13.1, Markdown-3.4.4, oauthlib-3.2.2, opt-einsum-3.3.0, portpicker-1.5.2, pyasn1-modules-0.3.0, requests-oauthlib-1.3.1, rsa-4.9, tblib-2.0.0, tensorboard-2.13.0, tensorboard-data-server-0.7.1, tensorboard-plugin-profile-2.13.1, tensorboard-plugin-wit-1.8.1, TensorFlow-2.13.0, tensorflow-estimator-2.13.0, termcolor-2.3.0, Werkzeug-2.3.7, wrapt-1.15.0 \ No newline at end of file +|`wrapt` version|TensorFlow modules that include it| +| --- | --- | +|1.15.0|`TensorFlow/2.13.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Tk.md b/docs/available_software/detail/Tk.md index 3eb5e63286..1a383547bf 100644 --- a/docs/available_software/detail/Tk.md +++ b/docs/available_software/detail/Tk.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Tk is an open source, cross-platform widget toolchain that provides - a library of basic elements for building a graphical user interface (GUI) in many - different programming languages. + description: "Tk is an open source, cross-platform widget toolchain that provides\ + \ a library of basic elements for\n building a graphical user interface (GUI)\ + \ in many different programming languages." license: Not confirmed name: Tk offers: @@ -26,32 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Tk/8.6.12-GCCcore-12.2.0'', ''Tk/8.6.13-GCCcore-12.3.0'', ''Tk/8.6.13-GCCcore-13.2.0'']' + softwareVersion: '[''9.0.1'', ''8.6.16'', ''8.6.14'', ''8.6.13'', ''8.6.12'']' url: https://www.tcl.tk/ --- +# Tk -Tk -== +Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for + building a graphical user interface (GUI) in many different programming languages. -Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for building a graphical user interface (GUI) in many different programming languages. +homepage: [https://www.tcl.tk/](https://www.tcl.tk/) -https://www.tcl.tk/ -# Available modules +## Available installations -The overview below shows which Tk installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Tk, load one of these modules using a `module load` command like: - -```shell -module load Tk/8.6.13-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Tk/8.6.13-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Tk/8.6.13-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Tk/8.6.12-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Tk version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Tk/9.0.1-GCCcore-14.3.0`| +|8.6.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Tk/8.6.16-GCCcore-14.2.0`| +|8.6.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Tk/8.6.14-GCCcore-13.3.0`| +|8.6.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Tk/8.6.13-GCCcore-13.2.0`| +|8.6.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Tk/8.6.13-GCCcore-12.3.0`| +|8.6.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Tk/8.6.12-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Tkinter.md b/docs/available_software/detail/Tkinter.md index 7ffd3f35f5..55e326ab10 100644 --- a/docs/available_software/detail/Tkinter.md +++ b/docs/available_software/detail/Tkinter.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Tkinter/3.10.8-GCCcore-12.2.0'', ''Tkinter/3.11.3-GCCcore-12.3.0'', - ''Tkinter/3.11.5-GCCcore-13.2.0'']' + softwareVersion: '[''3.13.5'', ''3.13.1'', ''3.12.3'', ''3.11.5'', ''3.11.3'', ''3.10.8'']' url: https://python.org/ --- - -Tkinter -======= +# Tkinter Tkinter module, built with the Python buildsystem -https://python.org/ -# Available modules - - -The overview below shows which Tkinter installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Tkinter, load one of these modules using a `module load` command like: +homepage: [https://python.org/](https://python.org/) -```shell -module load Tkinter/3.11.5-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Tkinter/3.11.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Tkinter/3.11.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Tkinter/3.10.8-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Tkinter version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.13.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Tkinter/3.13.5-GCCcore-14.3.0`| +|3.13.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Tkinter/3.13.1-GCCcore-14.2.0`| +|3.12.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Tkinter/3.12.3-GCCcore-13.3.0`| +|3.11.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Tkinter/3.11.5-GCCcore-13.2.0`| +|3.11.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Tkinter/3.11.3-GCCcore-12.3.0`| +|3.10.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Tkinter/3.10.8-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Tombo.md b/docs/available_software/detail/Tombo.md index b537c3900f..d72d51474e 100644 --- a/docs/available_software/detail/Tombo.md +++ b/docs/available_software/detail/Tombo.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Tombo is a suite of tools primarily for the identification of modified - nucleotides from raw nanopore sequencing data. + description: "Tombo is a suite of tools primarily for the identification of modified\ + \ nucleotides\n from raw nanopore sequencing data." license: Not confirmed name: Tombo offers: @@ -25,37 +23,46 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Tombo/1.5.1-foss-2023a'']' + softwareVersion: '[''1.5.1'']' url: https://github.com/nanoporetech/tombo --- +# Tombo -Tombo -===== +Tombo is a suite of tools primarily for the identification of modified nucleotides + from raw nanopore sequencing data. -Tombo is a suite of tools primarily for the identification of modified nucleotides from raw nanopore sequencing data. +homepage: [https://github.com/nanoporetech/tombo](https://github.com/nanoporetech/tombo) -https://github.com/nanoporetech/tombo -# Available modules +## Available installations -The overview below shows which Tombo installations are available per target architecture in EESSI, ordered based on software version (new to old). +|Tombo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Tombo/1.5.1-foss-2023a`| -To start using Tombo, load one of these modules using a `module load` command like: +## Extensions -```shell -module load Tombo/1.5.1-foss-2023a -``` +Overview of extensions included in Tombo installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Tombo/1.5.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### mappy -### Tombo/1.5.1-foss-2023a +|`mappy` version|Tombo modules that include it| +| --- | --- | +|2.28|`Tombo/1.5.1-foss-2023a`| -This is a list of extensions included in the module: +### ont-tombo -mappy-2.28, ont-tombo-1.5.1, pyfaidx-0.5.8 \ No newline at end of file + +|`ont-tombo` version|Tombo modules that include it| +| --- | --- | +|1.5.1|`Tombo/1.5.1-foss-2023a`| + +### pyfaidx + + +|`pyfaidx` version|Tombo modules that include it| +| --- | --- | +|0.5.8|`Tombo/1.5.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Transrate.md b/docs/available_software/detail/Transrate.md index eb006ba42c..bd5270dd26 100644 --- a/docs/available_software/detail/Transrate.md +++ b/docs/available_software/detail/Transrate.md @@ -1,15 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Transrate is software for de-novo transcriptome assembly quality analysis. - It examines your assembly in detail and compares it to experimental evidence such - as the sequencing reads, reporting quality scores for contigs and assemblies. - This allows you to choose between assemblers and parameters, filter out the bad - contigs from an assembly, and help decide when to stop trying to improve the assembly. + description: "Transrate is software for de-novo transcriptome assembly quality analysis.\n\ + \ It examines your assembly in detail and compares it to experimental evidence\ + \ such as the sequencing reads,\n reporting quality scores for contigs and assemblies.\ + \ This allows you to choose between assemblers and parameters,\n filter out the\ + \ bad contigs from an assembly, and help decide when to stop trying to improve\ + \ the assembly." license: Not confirmed name: Transrate offers: @@ -28,30 +27,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Transrate/1.0.3-GCC-12.3.0'']' + softwareVersion: '[''1.0.3'']' url: https://hibberdlab.com/transrate --- +# Transrate -Transrate -========= +Transrate is software for de-novo transcriptome assembly quality analysis. + It examines your assembly in detail and compares it to experimental evidence such as the sequencing reads, + reporting quality scores for contigs and assemblies. This allows you to choose between assemblers and parameters, + filter out the bad contigs from an assembly, and help decide when to stop trying to improve the assembly. -Transrate is software for de-novo transcriptome assembly quality analysis. It examines your assembly in detail and compares it to experimental evidence such as the sequencing reads, reporting quality scores for contigs and assemblies. This allows you to choose between assemblers and parameters, filter out the bad contigs from an assembly, and help decide when to stop trying to improve the assembly. +homepage: [https://hibberdlab.com/transrate](https://hibberdlab.com/transrate) -https://hibberdlab.com/transrate -# Available modules +## Available installations -The overview below shows which Transrate installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Transrate, load one of these modules using a `module load` command like: - -```shell -module load Transrate/1.0.3-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Transrate/1.0.3-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Transrate version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Transrate/1.0.3-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Trimmomatic.md b/docs/available_software/detail/Trimmomatic.md index 1fa8349b09..08aedfd725 100644 --- a/docs/available_software/detail/Trimmomatic.md +++ b/docs/available_software/detail/Trimmomatic.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Trimmomatic performs a variety of useful trimming tasks for illumina - paired-end and single ended data.The selection of trimming steps and their associated - parameters are supplied on the command line. + description: "Trimmomatic performs a variety of useful trimming tasks for illumina\n\ + \ paired-end and single ended data.The selection of trimming steps and their associated\n\ + \ parameters are supplied on the command line. " license: Not confirmed name: Trimmomatic offers: @@ -26,30 +24,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Trimmomatic/0.39-Java-11'']' + softwareVersion: '[''0.39'']' url: http://www.usadellab.org/cms/?page=trimmomatic --- +# Trimmomatic -Trimmomatic -=========== +Trimmomatic performs a variety of useful trimming tasks for illumina + paired-end and single ended data.The selection of trimming steps and their associated + parameters are supplied on the command line. -Trimmomatic performs a variety of useful trimming tasks for illumina paired-end and single ended data.The selection of trimming steps and their associated parameters are supplied on the command line. +homepage: [http://www.usadellab.org/cms/?page=trimmomatic](http://www.usadellab.org/cms/?page=trimmomatic) -http://www.usadellab.org/cms/?page=trimmomatic -# Available modules +## Available installations -The overview below shows which Trimmomatic installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Trimmomatic, load one of these modules using a `module load` command like: - -```shell -module load Trimmomatic/0.39-Java-11 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Trimmomatic/0.39-Java-11|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Trimmomatic version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.39|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Trimmomatic/0.39-Java-11`| \ No newline at end of file diff --git a/docs/available_software/detail/TurboVNC.md b/docs/available_software/detail/TurboVNC.md new file mode 100644 index 0000000000..103ff1e532 --- /dev/null +++ b/docs/available_software/detail/TurboVNC.md @@ -0,0 +1,42 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "TurboVNC is a derivative of VNC (Virtual Network Computing) that is\ + \ tuned to provide\n peak performance for 3D and video workloads." + license: Not confirmed + name: TurboVNC + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''3.1.2'']' + url: https://www.turbovnc.org +--- +# TurboVNC + + +TurboVNC is a derivative of VNC (Virtual Network Computing) that is tuned to provide + peak performance for 3D and video workloads. + +homepage: [https://www.turbovnc.org](https://www.turbovnc.org) + +## Available installations + + +|TurboVNC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`TurboVNC/3.1.2-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/UCC-CUDA.md b/docs/available_software/detail/UCC-CUDA.md new file mode 100644 index 0000000000..8a4c035736 --- /dev/null +++ b/docs/available_software/detail/UCC-CUDA.md @@ -0,0 +1,58 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'UCC (Unified Collective Communication) is a collective + + communication operations API and library that is flexible, complete, and + + feature-rich for current and emerging programming models and runtimes. + + + This module adds the UCC CUDA support. + + ' + license: Not confirmed + name: UCC-CUDA + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.4.4'', ''1.3.0'', ''1.2.0'']' + url: https://www.openucx.org/ +--- +# UCC-CUDA + + +UCC (Unified Collective Communication) is a collective +communication operations API and library that is flexible, complete, and +feature-rich for current and emerging programming models and runtimes. + +This module adds the UCC CUDA support. + + +homepage: [https://www.openucx.org/](https://www.openucx.org/) + +## Available installations + + +|UCC-CUDA version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.4.4|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`UCC-CUDA/1.4.4-GCCcore-14.3.0-CUDA-12.9.1`| +|1.3.0|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`UCC-CUDA/1.3.0-GCCcore-14.2.0-CUDA-12.8.0`| +|1.3.0|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`UCC-CUDA/1.3.0-GCCcore-13.3.0-CUDA-12.6.0`| +|1.2.0|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`UCC-CUDA/1.2.0-GCCcore-13.2.0-CUDA-12.4.0`| +|1.2.0|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`UCC-CUDA/1.2.0-GCCcore-12.3.0-CUDA-12.1.1`| \ No newline at end of file diff --git a/docs/available_software/detail/UCC.md b/docs/available_software/detail/UCC.md index 49e4102671..79c5e7c1ab 100644 --- a/docs/available_software/detail/UCC.md +++ b/docs/available_software/detail/UCC.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: UCC (Unified Collective Communication) is a collectivecommunication - operations API and library that is flexible, complete, and feature-rich for current - and emerging programming models and runtimes. + description: "UCC (Unified Collective Communication) is a collective\ncommunication\ + \ operations API and library that is flexible, complete, and \nfeature-rich for\ + \ current and emerging programming models and runtimes.\n" license: Not confirmed name: UCC offers: @@ -26,32 +24,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''UCC/1.1.0-GCCcore-12.2.0'', ''UCC/1.2.0-GCCcore-12.3.0'', ''UCC/1.2.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.4.4'', ''1.3.0'', ''1.2.0'', ''1.1.0'']' url: https://www.openucx.org/ --- +# UCC -UCC -=== +UCC (Unified Collective Communication) is a collective +communication operations API and library that is flexible, complete, and +feature-rich for current and emerging programming models and runtimes. -UCC (Unified Collective Communication) is a collectivecommunication operations API and library that is flexible, complete, and feature-rich for current and emerging programming models and runtimes. -https://www.openucx.org/ -# Available modules +homepage: [https://www.openucx.org/](https://www.openucx.org/) +## Available installations -The overview below shows which UCC installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using UCC, load one of these modules using a `module load` command like: - -```shell -module load UCC/1.2.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|UCC/1.2.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|UCC/1.2.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|UCC/1.1.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|UCC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`UCC/1.4.4-GCCcore-14.3.0`| +|1.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`UCC/1.3.0-GCCcore-14.2.0`| +|1.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`UCC/1.3.0-GCCcore-13.3.0`| +|1.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UCC/1.2.0-GCCcore-13.2.0`| +|1.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UCC/1.2.0-GCCcore-12.3.0`| +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UCC/1.1.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/UCX-CUDA.md b/docs/available_software/detail/UCX-CUDA.md new file mode 100644 index 0000000000..31e9c6a8e3 --- /dev/null +++ b/docs/available_software/detail/UCX-CUDA.md @@ -0,0 +1,58 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Unified Communication X + + An open-source production grade communication framework for data centric + + and high-performance applications + + + This module adds the UCX CUDA support. + + ' + license: Not confirmed + name: UCX-CUDA + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.19.0'', ''1.18.0'', ''1.16.0'', ''1.15.0'', ''1.14.1'']' + url: http://www.openucx.org/ +--- +# UCX-CUDA + + +Unified Communication X +An open-source production grade communication framework for data centric +and high-performance applications + +This module adds the UCX CUDA support. + + +homepage: [http://www.openucx.org/](http://www.openucx.org/) + +## Available installations + + +|UCX-CUDA version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.19.0|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`UCX-CUDA/1.19.0-GCCcore-14.3.0-CUDA-12.9.1`| +|1.18.0|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`UCX-CUDA/1.18.0-GCCcore-14.2.0-CUDA-12.8.0`| +|1.16.0|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc100`, `cc120`, `cc70`, `cc80`, `cc90`
|2025.06|`UCX-CUDA/1.16.0-GCCcore-13.3.0-CUDA-12.6.0`| +|1.15.0|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`UCX-CUDA/1.15.0-GCCcore-13.2.0-CUDA-12.4.0`| +|1.14.1|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`UCX-CUDA/1.14.1-GCCcore-12.3.0-CUDA-12.1.1`| \ No newline at end of file diff --git a/docs/available_software/detail/UCX.md b/docs/available_software/detail/UCX.md index 56c3490c0e..61f1815fa1 100644 --- a/docs/available_software/detail/UCX.md +++ b/docs/available_software/detail/UCX.md @@ -1,12 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Unified Communication XAn open-source production grade communication - framework for data centricand high-performance applications + description: 'Unified Communication X + + An open-source production grade communication framework for data centric + + and high-performance applications + + ' license: Not confirmed name: UCX offers: @@ -25,33 +28,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''UCX/1.13.1-GCCcore-12.2.0'', ''UCX/1.14.1-GCCcore-12.3.0'', - ''UCX/1.15.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.19.0'', ''1.18.0'', ''1.16.0'', ''1.15.0'', ''1.14.1'', ''1.13.1'']' url: https://www.openucx.org/ --- +# UCX -UCX -=== - - -Unified Communication XAn open-source production grade communication framework for data centricand high-performance applications - -https://www.openucx.org/ -# Available modules +Unified Communication X +An open-source production grade communication framework for data centric +and high-performance applications -The overview below shows which UCX installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using UCX, load one of these modules using a `module load` command like: +homepage: [https://www.openucx.org/](https://www.openucx.org/) -```shell -module load UCX/1.15.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|UCX/1.15.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|UCX/1.14.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|UCX/1.13.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|UCX version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.19.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`UCX/1.19.0-GCCcore-14.3.0`| +|1.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`UCX/1.18.0-GCCcore-14.2.0`| +|1.16.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`UCX/1.16.0-GCCcore-13.3.0`| +|1.15.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UCX/1.15.0-GCCcore-13.2.0`| +|1.14.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UCX/1.14.1-GCCcore-12.3.0`| +|1.13.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UCX/1.13.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/UDUNITS.md b/docs/available_software/detail/UDUNITS.md index 87ea65f9e8..70189fb1d1 100644 --- a/docs/available_software/detail/UDUNITS.md +++ b/docs/available_software/detail/UDUNITS.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: UDUNITS supports conversion of unit specifications between formatted - and binary forms, arithmetic manipulation of units, and conversion of values between - compatible scales of measurement. + description: "UDUNITS supports conversion of unit specifications between formatted\ + \ and binary forms,\n arithmetic manipulation of units, and conversion of values\ + \ between compatible scales of measurement." license: Not confirmed name: UDUNITS offers: @@ -26,33 +24,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''UDUNITS/2.2.28-GCCcore-12.2.0'', ''UDUNITS/2.2.28-GCCcore-12.3.0'', - ''UDUNITS/2.2.28-GCCcore-13.2.0'']' + softwareVersion: '[''2.2.28'']' url: https://www.unidata.ucar.edu/software/udunits/ --- +# UDUNITS -UDUNITS -======= +UDUNITS supports conversion of unit specifications between formatted and binary forms, + arithmetic manipulation of units, and conversion of values between compatible scales of measurement. -UDUNITS supports conversion of unit specifications between formatted and binary forms, arithmetic manipulation of units, and conversion of values between compatible scales of measurement. +homepage: [https://www.unidata.ucar.edu/software/udunits/](https://www.unidata.ucar.edu/software/udunits/) -https://www.unidata.ucar.edu/software/udunits/ -# Available modules +## Available installations -The overview below shows which UDUNITS installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using UDUNITS, load one of these modules using a `module load` command like: - -```shell -module load UDUNITS/2.2.28-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|UDUNITS/2.2.28-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|UDUNITS/2.2.28-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|UDUNITS/2.2.28-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|UDUNITS version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.2.28|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`UDUNITS/2.2.28-GCCcore-13.3.0`| +|2.2.28|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UDUNITS/2.2.28-GCCcore-13.2.0`| +|2.2.28|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UDUNITS/2.2.28-GCCcore-12.3.0`| +|2.2.28|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UDUNITS/2.2.28-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/UnZip.md b/docs/available_software/detail/UnZip.md index 2361541e95..3d3c8186be 100644 --- a/docs/available_software/detail/UnZip.md +++ b/docs/available_software/detail/UnZip.md @@ -1,14 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: UnZip is an extraction utility for archives compressedin .zip format - (also called "zipfiles"). Although highly compatible bothwith PKWARE's PKZIP and - PKUNZIP utilities for MS-DOS and with Info-ZIP'sown Zip program, our primary objectives - have been portability andnon-MSDOS functionality. + description: 'UnZip is an extraction utility for archives compressed + + in .zip format (also called "zipfiles"). Although highly compatible both + + with PKWARE''s PKZIP and PKUNZIP utilities for MS-DOS and with Info-ZIP''s + + own Zip program, our primary objectives have been portability and + + non-MSDOS functionality.' license: Not confirmed name: UnZip offers: @@ -27,32 +30,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''UnZip/6.0-GCCcore-12.2.0'', ''UnZip/6.0-GCCcore-12.3.0'', ''UnZip/6.0-GCCcore-13.2.0'']' + softwareVersion: '[''6.0'']' url: http://www.info-zip.org/UnZip.html --- - -UnZip -===== - - -UnZip is an extraction utility for archives compressedin .zip format (also called "zipfiles"). Although highly compatible bothwith PKWARE's PKZIP and PKUNZIP utilities for MS-DOS and with Info-ZIP'sown Zip program, our primary objectives have been portability andnon-MSDOS functionality. - -http://www.info-zip.org/UnZip.html -# Available modules +# UnZip -The overview below shows which UnZip installations are available per target architecture in EESSI, ordered based on software version (new to old). +UnZip is an extraction utility for archives compressed +in .zip format (also called "zipfiles"). Although highly compatible both +with PKWARE's PKZIP and PKUNZIP utilities for MS-DOS and with Info-ZIP's +own Zip program, our primary objectives have been portability and +non-MSDOS functionality. -To start using UnZip, load one of these modules using a `module load` command like: +homepage: [http://www.info-zip.org/UnZip.html](http://www.info-zip.org/UnZip.html) -```shell -module load UnZip/6.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|UnZip/6.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|UnZip/6.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|UnZip/6.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|UnZip version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`UnZip/6.0-GCCcore-14.3.0`| +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`UnZip/6.0-GCCcore-14.2.0`| +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`UnZip/6.0-GCCcore-13.3.0`| +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UnZip/6.0-GCCcore-13.2.0`| +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UnZip/6.0-GCCcore-12.3.0`| +|6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`UnZip/6.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Underworld.md b/docs/available_software/detail/Underworld.md new file mode 100644 index 0000000000..9921f15f1b --- /dev/null +++ b/docs/available_software/detail/Underworld.md @@ -0,0 +1,89 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' + + Underworld is a Python API (Application Programming Interface) which provides + + functionality for the modelling of geodynamics processes, and is designed to + + work (almost) seamlessly across PC, cloud and HPC infrastructure. Primarily + + the API consists of a set of Python classes from which numerical geodynamics + + models may be constructed. The API also provides the tools required for inline + + analysis and data management. For scalability across multiprocessor platforms, + + MPI (Message Passing Interface) is leveraged, and for performant operation all + + heavy computations are executed within a statically typed layer. + + Note: This version does not come with badlands. + + ' + license: Not confirmed + name: Underworld + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.16.4'']' + url: https://www.underworldcode.org +--- +# Underworld + + + +Underworld is a Python API (Application Programming Interface) which provides +functionality for the modelling of geodynamics processes, and is designed to +work (almost) seamlessly across PC, cloud and HPC infrastructure. Primarily +the API consists of a set of Python classes from which numerical geodynamics +models may be constructed. The API also provides the tools required for inline +analysis and data management. For scalability across multiprocessor platforms, +MPI (Message Passing Interface) is leveraged, and for performant operation all +heavy computations are executed within a statically typed layer. +Note: This version does not come with badlands. + + +homepage: [https://www.underworldcode.org](https://www.underworldcode.org) + +## Available installations + + +|Underworld version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.16.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Underworld/2.16.4-foss-2023b-egl`| + +## Extensions + +Overview of extensions included in Underworld installations + + +### nbmake + + +|`nbmake` version|Underworld modules that include it| +| --- | --- | +|1.5.5|`Underworld/2.16.4-foss-2023b-egl`| + +### underworld + + +|`underworld` version|Underworld modules that include it| +| --- | --- | +|2.16.4|`Underworld/2.16.4-foss-2023b-egl`| \ No newline at end of file diff --git a/docs/available_software/detail/VCFtools.md b/docs/available_software/detail/VCFtools.md index 953f13e756..6d069e8819 100644 --- a/docs/available_software/detail/VCFtools.md +++ b/docs/available_software/detail/VCFtools.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The aim of VCFtools is to provide easily accessible methods for working - with complex genetic variation data in the form of VCF files. + description: "The aim of VCFtools is to provide \n easily accessible methods for\ + \ working with complex \n genetic variation data in the form of VCF files." license: Not confirmed name: VCFtools offers: @@ -25,30 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''VCFtools/0.1.16-GCC-12.2.0'']' + softwareVersion: '[''0.1.16'']' url: https://vcftools.github.io --- +# VCFtools -VCFtools -======== +The aim of VCFtools is to provide + easily accessible methods for working with complex + genetic variation data in the form of VCF files. -The aim of VCFtools is to provide easily accessible methods for working with complex genetic variation data in the form of VCF files. +homepage: [https://vcftools.github.io](https://vcftools.github.io) -https://vcftools.github.io -# Available modules +## Available installations -The overview below shows which VCFtools installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using VCFtools, load one of these modules using a `module load` command like: - -```shell -module load VCFtools/0.1.16-GCC-12.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|VCFtools/0.1.16-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|VCFtools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.1.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`VCFtools/0.1.16-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/VSEARCH.md b/docs/available_software/detail/VSEARCH.md index eb7736e1eb..62a5cffabd 100644 --- a/docs/available_software/detail/VSEARCH.md +++ b/docs/available_software/detail/VSEARCH.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: VSEARCH supports de novo and reference based chimera detection, clustering, - full-length and prefix dereplication, rereplication, reverse complementation, - masking, all-vs-all pairwise global alignment, exact and global alignment searching, - shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering, - conversion and merging of paired-end reads. + description: "VSEARCH supports de novo and reference based chimera detection,\n\ + \ clustering, full-length and prefix dereplication, rereplication,\n reverse complementation,\ + \ masking, all-vs-all pairwise global alignment,\n exact and global alignment\ + \ searching, shuffling, subsampling and sorting.\n It also supports FASTQ file\ + \ analysis, filtering,\n conversion and merging of paired-end reads." license: Not confirmed name: VSEARCH offers: @@ -28,30 +26,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''VSEARCH/2.30.0-GCC-13.2.0'']' + softwareVersion: '[''2.30.0'']' url: https://github.com/torognes/vsearch --- +# VSEARCH -VSEARCH -======= +VSEARCH supports de novo and reference based chimera detection, + clustering, full-length and prefix dereplication, rereplication, + reverse complementation, masking, all-vs-all pairwise global alignment, + exact and global alignment searching, shuffling, subsampling and sorting. + It also supports FASTQ file analysis, filtering, + conversion and merging of paired-end reads. -VSEARCH supports de novo and reference based chimera detection, clustering, full-length and prefix dereplication, rereplication, reverse complementation, masking, all-vs-all pairwise global alignment, exact and global alignment searching, shuffling, subsampling and sorting. It also supports FASTQ file analysis, filtering, conversion and merging of paired-end reads. +homepage: [https://github.com/torognes/vsearch](https://github.com/torognes/vsearch) -https://github.com/torognes/vsearch -# Available modules +## Available installations -The overview below shows which VSEARCH installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using VSEARCH, load one of these modules using a `module load` command like: - -```shell -module load VSEARCH/2.30.0-GCC-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|VSEARCH/2.30.0-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|VSEARCH version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.30.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`VSEARCH/2.30.0-GCC-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/VTE.md b/docs/available_software/detail/VTE.md new file mode 100644 index 0000000000..8bb559a858 --- /dev/null +++ b/docs/available_software/detail/VTE.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Virtual Terminal library + license: Not confirmed + name: VTE + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.82.2'']' + url: https://gitlab.gnome.org/GNOME/vte +--- +# VTE + + +Virtual Terminal library + +homepage: [https://gitlab.gnome.org/GNOME/vte](https://gitlab.gnome.org/GNOME/vte) + +## Available installations + + +|VTE version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.82.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`VTE/0.82.2-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/VTK.md b/docs/available_software/detail/VTK.md index 5f45c8667a..999d26bc49 100644 --- a/docs/available_software/detail/VTK.md +++ b/docs/available_software/detail/VTK.md @@ -1,17 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'The Visualization Toolkit (VTK) is an open-source, freely available - software system for 3D computer graphics, image processing and visualization. - VTK consists of a C++ class library and several interpreted interface layers including - Tcl/Tk, Java, and Python. VTK supports a wide variety of visualization algorithms - including: scalar, vector, tensor, texture, and volumetric methods; and advanced - modeling techniques such as: implicit modeling, polygon reduction, mesh smoothing, - cutting, contouring, and Delaunay triangulation.' + description: "The Visualization Toolkit (VTK) is an open-source, freely available\ + \ software system for\n 3D computer graphics, image processing and visualization.\ + \ VTK consists of a C++ class library and several\n interpreted interface layers\ + \ including Tcl/Tk, Java, and Python. VTK supports a wide variety of visualization\n\ + \ algorithms including: scalar, vector, tensor, texture, and volumetric methods;\ + \ and advanced modeling techniques\n such as: implicit modeling, polygon reduction,\ + \ mesh smoothing, cutting, contouring, and Delaunay triangulation." license: Not confirmed name: VTK offers: @@ -30,31 +28,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''VTK/9.3.0-foss-2023a'', ''VTK/9.3.0-foss-2023b'']' + softwareVersion: '[''9.5.0'', ''9.3.1'', ''9.3.0'']' url: https://www.vtk.org --- +# VTK -VTK -=== +The Visualization Toolkit (VTK) is an open-source, freely available software system for + 3D computer graphics, image processing and visualization. VTK consists of a C++ class library and several + interpreted interface layers including Tcl/Tk, Java, and Python. VTK supports a wide variety of visualization + algorithms including: scalar, vector, tensor, texture, and volumetric methods; and advanced modeling techniques + such as: implicit modeling, polygon reduction, mesh smoothing, cutting, contouring, and Delaunay triangulation. -The Visualization Toolkit (VTK) is an open-source, freely available software system for 3D computer graphics, image processing and visualization. VTK consists of a C++ class library and several interpreted interface layers including Tcl/Tk, Java, and Python. VTK supports a wide variety of visualization algorithms including: scalar, vector, tensor, texture, and volumetric methods; and advanced modeling techniques such as: implicit modeling, polygon reduction, mesh smoothing, cutting, contouring, and Delaunay triangulation. +homepage: [https://www.vtk.org](https://www.vtk.org) -https://www.vtk.org -# Available modules +## Available installations -The overview below shows which VTK installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using VTK, load one of these modules using a `module load` command like: - -```shell -module load VTK/9.3.0-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|VTK/9.3.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|VTK/9.3.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|VTK version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`VTK/9.5.0-foss-2025a`| +|9.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`VTK/9.3.1-foss-2024a`| +|9.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`VTK/9.3.0-foss-2023b`| +|9.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`VTK/9.3.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Vala.md b/docs/available_software/detail/Vala.md new file mode 100644 index 0000000000..1d38fd9a4b --- /dev/null +++ b/docs/available_software/detail/Vala.md @@ -0,0 +1,45 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Vala is a programming language using modern high level abstractions + without imposing additional runtime + + requirements and without using a different ABI compared to applications and libraries + written in C.' + license: Not confirmed + name: Vala + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.56.18'']' + url: https://wiki.gnome.org/Projects/Vala +--- +# Vala + + +Vala is a programming language using modern high level abstractions without imposing additional runtime +requirements and without using a different ABI compared to applications and libraries written in C. + +homepage: [https://wiki.gnome.org/Projects/Vala](https://wiki.gnome.org/Projects/Vala) + +## Available installations + + +|Vala version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.56.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Vala/0.56.18-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Valgrind.md b/docs/available_software/detail/Valgrind.md index 7f11671a2d..ae991b915b 100644 --- a/docs/available_software/detail/Valgrind.md +++ b/docs/available_software/detail/Valgrind.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Valgrind/3.21.0-gompi-2022b'', ''Valgrind/3.21.0-gompi-2023a'', - ''Valgrind/3.23.0-gompi-2023b'']' + softwareVersion: '[''3.23.0'', ''3.21.0'']' url: https://valgrind.org --- - -Valgrind -======== +# Valgrind Valgrind: Debugging and profiling tools -https://valgrind.org -# Available modules - - -The overview below shows which Valgrind installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Valgrind, load one of these modules using a `module load` command like: +homepage: [https://valgrind.org](https://valgrind.org) -```shell -module load Valgrind/3.23.0-gompi-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Valgrind/3.23.0-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Valgrind/3.21.0-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Valgrind/3.21.0-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Valgrind version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.23.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Valgrind/3.23.0-gompi-2023b`| +|3.21.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Valgrind/3.21.0-gompi-2023a`| +|3.21.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Valgrind/3.21.0-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/VeloxChem.md b/docs/available_software/detail/VeloxChem.md index 5cd40f0f3d..2c116d0d93 100644 --- a/docs/available_software/detail/VeloxChem.md +++ b/docs/available_software/detail/VeloxChem.md @@ -1,14 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: VeloxChem [RLV+20] is a Python-based open source quantum chemistry - software forcontemporary and future hardware architectures. It features interactive - program access throughJupyter notebooks as well as massively parallel calculations - in high-performancecomputing (HPC) environments. + description: 'VeloxChem [RLV+20] is a Python-based open source quantum chemistry + software for + + contemporary and future hardware architectures. It features interactive program + access through + + Jupyter notebooks as well as massively parallel calculations in high-performance + + computing (HPC) environments.' license: Not confirmed name: VeloxChem offers: @@ -27,37 +30,41 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''VeloxChem/1.0-rc4-foss-2023a'']' + softwareVersion: '[''1.0-rc4'']' url: https://veloxchem.org/docs/intro.html --- +# VeloxChem + -VeloxChem -========= +VeloxChem [RLV+20] is a Python-based open source quantum chemistry software for +contemporary and future hardware architectures. It features interactive program access through +Jupyter notebooks as well as massively parallel calculations in high-performance +computing (HPC) environments. +homepage: [https://veloxchem.org/docs/intro.html](https://veloxchem.org/docs/intro.html) -VeloxChem [RLV+20] is a Python-based open source quantum chemistry software forcontemporary and future hardware architectures. It features interactive program access throughJupyter notebooks as well as massively parallel calculations in high-performancecomputing (HPC) environments. +## Available installations -https://veloxchem.org/docs/intro.html -# Available modules +|VeloxChem version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0-rc4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`VeloxChem/1.0-rc4-foss-2023a`| -The overview below shows which VeloxChem installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using VeloxChem, load one of these modules using a `module load` command like: +Overview of extensions included in VeloxChem installations -```shell -module load VeloxChem/1.0-rc4-foss-2023a -``` -*(This data was automatically generated on {{ generated_time }})* +### geometric -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|VeloxChem/1.0-rc4-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`geometric` version|VeloxChem modules that include it| +| --- | --- | +|1.1|`VeloxChem/1.0-rc4-foss-2023a`| -### VeloxChem/1.0-rc4-foss-2023a +### VeloxChem -This is a list of extensions included in the module: -geometric-1.1, VeloxChem-1.0-rc4 \ No newline at end of file +|`VeloxChem` version|VeloxChem modules that include it| +| --- | --- | +|1.0-rc4|`VeloxChem/1.0-rc4-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/Vim.md b/docs/available_software/detail/Vim.md index e75dc63644..d5931801f6 100644 --- a/docs/available_software/detail/Vim.md +++ b/docs/available_software/detail/Vim.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Vim is an advanced text editor that seeks to provide the power of - the de-facto Unix editor 'Vi', with a more complete feature set. + description: " Vim is an advanced text editor that seeks to provide the power \n\ + \ of the de-facto Unix editor 'Vi', with a more complete feature set. " license: Not confirmed name: Vim offers: @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Vim/9.1.0004-GCCcore-12.3.0'']' + softwareVersion: '[''9.1.0004'']' url: http://www.vim.org --- +# Vim -Vim -=== + Vim is an advanced text editor that seeks to provide the power + of the de-facto Unix editor 'Vi', with a more complete feature set. -Vim is an advanced text editor that seeks to provide the power of the de-facto Unix editor 'Vi', with a more complete feature set. +homepage: [http://www.vim.org](http://www.vim.org) -http://www.vim.org -# Available modules +## Available installations -The overview below shows which Vim installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Vim, load one of these modules using a `module load` command like: - -```shell -module load Vim/9.1.0004-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Vim/9.1.0004-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Vim version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.1.0004|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Vim/9.1.0004-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/VisPy.md b/docs/available_software/detail/VisPy.md new file mode 100644 index 0000000000..fe1fce4791 --- /dev/null +++ b/docs/available_software/detail/VisPy.md @@ -0,0 +1,70 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "VisPy is a high-performance interactive 2D/3D data visualization library\n\ + \ leveraging the computational power of modern Graphics Processing Units (GPUs)\ + \ through the\n OpenGL library to display very large datasets." + license: Not confirmed + name: VisPy + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.15.2'']' + url: https://vispy.org +--- +# VisPy + + +VisPy is a high-performance interactive 2D/3D data visualization library + leveraging the computational power of modern Graphics Processing Units (GPUs) through the + OpenGL library to display very large datasets. + +homepage: [https://vispy.org](https://vispy.org) + +## Available installations + + +|VisPy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.15.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`VisPy/0.15.2-gfbf-2025a`| + +## Extensions + +Overview of extensions included in VisPy installations + + +### freetype-py + + +|`freetype-py` version|VisPy modules that include it| +| --- | --- | +|2.5.1|`VisPy/0.15.2-gfbf-2025a`| + +### hsluv + + +|`hsluv` version|VisPy modules that include it| +| --- | --- | +|5.0.4|`VisPy/0.15.2-gfbf-2025a`| + +### vispy + + +|`vispy` version|VisPy modules that include it| +| --- | --- | +|0.15.2|`VisPy/0.15.2-gfbf-2025a`| \ No newline at end of file diff --git a/docs/available_software/detail/Voro++.md b/docs/available_software/detail/Voro++.md index 93f2d6f5fc..ab6dc1c0b3 100644 --- a/docs/available_software/detail/Voro++.md +++ b/docs/available_software/detail/Voro++.md @@ -1,16 +1,21 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Voro++ is a software library for carrying out three-dimensional computations - of the Voronoitessellation. A distinguishing feature of the Voro++ library is - that it carries out cell-based calculations,computing the Voronoi cell for each - particle individually. It is particularly well-suited for applications thatrely - on cell-based statistics, where features of Voronoi cells (eg. volume, centroid, - number of faces) can be usedto analyze a system of particles. + description: 'Voro++ is a software library for carrying out three-dimensional computations + of the Voronoi + + tessellation. A distinguishing feature of the Voro++ library is that it carries + out cell-based calculations, + + computing the Voronoi cell for each particle individually. It is particularly + well-suited for applications that + + rely on cell-based statistics, where features of Voronoi cells (eg. volume, centroid, + number of faces) can be used + + to analyze a system of particles.' license: Not confirmed name: Voro++ offers: @@ -29,31 +34,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Voro++/0.4.6-GCCcore-12.3.0'', ''Voro++/0.4.6-GCCcore-13.2.0'']' + softwareVersion: '[''0.4.6'']' url: http://math.lbl.gov/voro++/ --- - -Voro++ -====== - - -Voro++ is a software library for carrying out three-dimensional computations of the Voronoitessellation. A distinguishing feature of the Voro++ library is that it carries out cell-based calculations,computing the Voronoi cell for each particle individually. It is particularly well-suited for applications thatrely on cell-based statistics, where features of Voronoi cells (eg. volume, centroid, number of faces) can be usedto analyze a system of particles. - -http://math.lbl.gov/voro++/ -# Available modules +# Voro++ -The overview below shows which Voro++ installations are available per target architecture in EESSI, ordered based on software version (new to old). +Voro++ is a software library for carrying out three-dimensional computations of the Voronoi +tessellation. A distinguishing feature of the Voro++ library is that it carries out cell-based calculations, +computing the Voronoi cell for each particle individually. It is particularly well-suited for applications that +rely on cell-based statistics, where features of Voronoi cells (eg. volume, centroid, number of faces) can be used +to analyze a system of particles. -To start using Voro++, load one of these modules using a `module load` command like: +homepage: [http://math.lbl.gov/voro++/](http://math.lbl.gov/voro++/) -```shell -module load Voro++/0.4.6-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Voro++/0.4.6-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Voro++/0.4.6-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Voro++ version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.4.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Voro++/0.4.6-GCCcore-13.3.0`| +|0.4.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Voro++/0.4.6-GCCcore-13.2.0`| +|0.4.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Voro++/0.4.6-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Vulkan.md b/docs/available_software/detail/Vulkan.md new file mode 100644 index 0000000000..69b1dcf4e0 --- /dev/null +++ b/docs/available_software/detail/Vulkan.md @@ -0,0 +1,73 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Vulkan headers, ICDs, and tools + license: Not confirmed + name: Vulkan + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.4.328'']' + url: https://github.com/KhronosGroup +--- +# Vulkan + + +Vulkan headers, ICDs, and tools + +homepage: [https://github.com/KhronosGroup](https://github.com/KhronosGroup) + +## Available installations + + +|Vulkan version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.4.328|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Vulkan/1.4.328-GCCcore-14.3.0`| + +## Extensions + +Overview of extensions included in Vulkan installations + + +### volk + + +|`volk` version|Vulkan modules that include it| +| --- | --- | +|1.4.304|`Vulkan/1.4.328-GCCcore-14.3.0`| + +### Vulkan-Headers + + +|`Vulkan-Headers` version|Vulkan modules that include it| +| --- | --- | +|1.4.328|`Vulkan/1.4.328-GCCcore-14.3.0`| + +### Vulkan-Loader + + +|`Vulkan-Loader` version|Vulkan modules that include it| +| --- | --- | +|1.4.328|`Vulkan/1.4.328-GCCcore-14.3.0`| + +### Vulkan-Tools + + +|`Vulkan-Tools` version|Vulkan modules that include it| +| --- | --- | +|1.4.328|`Vulkan/1.4.328-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/WCSLIB.md b/docs/available_software/detail/WCSLIB.md index cc7edc1025..0b7faeb7b7 100644 --- a/docs/available_software/detail/WCSLIB.md +++ b/docs/available_software/detail/WCSLIB.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The FITS "World Coordinate System" (WCS) standard defines keywordsand - usage that provide for the description of astronomical coordinate systems in aFITS - image header. + description: 'The FITS "World Coordinate System" (WCS) standard defines keywords + + and usage that provide for the description of astronomical coordinate systems + in a + + FITS image header.' license: Not confirmed name: WCSLIB offers: @@ -26,30 +27,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''WCSLIB/7.11-GCC-13.2.0'']' + softwareVersion: '[''7.11'']' url: https://www.atnf.csiro.au/people/mcalabre/WCS/ --- - -WCSLIB -====== - - -The FITS "World Coordinate System" (WCS) standard defines keywordsand usage that provide for the description of astronomical coordinate systems in aFITS image header. - -https://www.atnf.csiro.au/people/mcalabre/WCS/ -# Available modules +# WCSLIB -The overview below shows which WCSLIB installations are available per target architecture in EESSI, ordered based on software version (new to old). +The FITS "World Coordinate System" (WCS) standard defines keywords +and usage that provide for the description of astronomical coordinate systems in a +FITS image header. -To start using WCSLIB, load one of these modules using a `module load` command like: +homepage: [https://www.atnf.csiro.au/people/mcalabre/WCS/](https://www.atnf.csiro.au/people/mcalabre/WCS/) -```shell -module load WCSLIB/7.11-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|WCSLIB/7.11-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|WCSLIB version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`WCSLIB/7.11-GCC-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/WRF.md b/docs/available_software/detail/WRF.md index 58d8022abd..6e3506649a 100644 --- a/docs/available_software/detail/WRF.md +++ b/docs/available_software/detail/WRF.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Weather Research and Forecasting (WRF) Model is a next-generation - mesoscale numerical weather prediction system designed to serve both operational - forecasting and atmospheric research needs. + description: "The Weather Research and Forecasting (WRF) Model is a next-generation\ + \ mesoscale\n numerical weather prediction system designed to serve both operational\ + \ forecasting and atmospheric\n research needs." license: Not confirmed name: WRF offers: @@ -26,30 +24,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''WRF/4.4.1-foss-2022b-dmpar'']' + softwareVersion: '[''4.6.1'', ''4.4.1'']' url: https://www.wrf-model.org --- +# WRF -WRF -=== +The Weather Research and Forecasting (WRF) Model is a next-generation mesoscale + numerical weather prediction system designed to serve both operational forecasting and atmospheric + research needs. -The Weather Research and Forecasting (WRF) Model is a next-generation mesoscale numerical weather prediction system designed to serve both operational forecasting and atmospheric research needs. +homepage: [https://www.wrf-model.org](https://www.wrf-model.org) -https://www.wrf-model.org -# Available modules +## Available installations -The overview below shows which WRF installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using WRF, load one of these modules using a `module load` command like: - -```shell -module load WRF/4.4.1-foss-2022b-dmpar -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|WRF/4.4.1-foss-2022b-dmpar|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|WRF version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`WRF/4.6.1-foss-2024a-dmpar`| +|4.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`WRF/4.4.1-foss-2022b-dmpar`| \ No newline at end of file diff --git a/docs/available_software/detail/WSClean.md b/docs/available_software/detail/WSClean.md index 61d938582d..3810bab6eb 100644 --- a/docs/available_software/detail/WSClean.md +++ b/docs/available_software/detail/WSClean.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: WSClean (w-stacking clean) is a fast generic widefield imager.It implements - several gridding algorithms and offers fully-automated multi-scalemulti-frequency - deconvolution. + description: 'WSClean (w-stacking clean) is a fast generic widefield imager. + + It implements several gridding algorithms and offers fully-automated multi-scale + + multi-frequency deconvolution.' license: Not confirmed name: WSClean offers: @@ -26,31 +26,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''WSClean/3.4-foss-2023b'', ''WSClean/3.5-foss-2023b'']' + softwareVersion: '[''3.5'', ''3.4'']' url: https://wsclean.readthedocs.io/ --- - -WSClean -======= - - -WSClean (w-stacking clean) is a fast generic widefield imager.It implements several gridding algorithms and offers fully-automated multi-scalemulti-frequency deconvolution. - -https://wsclean.readthedocs.io/ -# Available modules +# WSClean -The overview below shows which WSClean installations are available per target architecture in EESSI, ordered based on software version (new to old). +WSClean (w-stacking clean) is a fast generic widefield imager. +It implements several gridding algorithms and offers fully-automated multi-scale +multi-frequency deconvolution. -To start using WSClean, load one of these modules using a `module load` command like: +homepage: [https://wsclean.readthedocs.io/](https://wsclean.readthedocs.io/) -```shell -module load WSClean/3.5-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|WSClean/3.5-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|WSClean/3.4-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|WSClean version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`WSClean/3.5-foss-2023b`| +|3.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`WSClean/3.4-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/Wayland.md b/docs/available_software/detail/Wayland.md index 101560523d..3ad4a94493 100644 --- a/docs/available_software/detail/Wayland.md +++ b/docs/available_software/detail/Wayland.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Wayland is a project to define a protocol for a compositor to talk - to its clients as well as a library implementation of the protocol. The compositor - can be a standalone display server running on Linux kernel modesetting and evdev - input devices, an X application, or a wayland client itself. The clients can - be traditional applications, X servers (rootless or fullscreen) or other display - servers. + description: "\nWayland is a project to define a protocol for a compositor to talk\ + \ to\n its clients as well as a library implementation of the protocol. The\n\ + \ compositor can be a standalone display server running on Linux kernel\n modesetting\ + \ and evdev input devices, an X application, or a wayland\n client itself. The\ + \ clients can be traditional applications, X servers\n (rootless or fullscreen)\ + \ or other display servers.\n" license: Not confirmed name: Wayland offers: @@ -29,31 +27,62 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Wayland/1.22.0-GCCcore-12.3.0'', ''Wayland/1.22.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.24.0'', ''1.23.92'', ''1.23.0'', ''1.22.0'']' url: https://wayland.freedesktop.org/ --- +# Wayland -Wayland -======= -Wayland is a project to define a protocol for a compositor to talk to its clients as well as a library implementation of the protocol. The compositor can be a standalone display server running on Linux kernel modesetting and evdev input devices, an X application, or a wayland client itself. The clients can be traditional applications, X servers (rootless or fullscreen) or other display servers. +Wayland is a project to define a protocol for a compositor to talk to + its clients as well as a library implementation of the protocol. The + compositor can be a standalone display server running on Linux kernel + modesetting and evdev input devices, an X application, or a wayland + client itself. The clients can be traditional applications, X servers + (rootless or fullscreen) or other display servers. -https://wayland.freedesktop.org/ -# Available modules +homepage: [https://wayland.freedesktop.org/](https://wayland.freedesktop.org/) -The overview below shows which Wayland installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using Wayland, load one of these modules using a `module load` command like: -```shell -module load Wayland/1.22.0-GCCcore-13.2.0 -``` +|Wayland version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.24.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Wayland/1.24.0-GCCcore-14.3.0`| +|1.23.92|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Wayland/1.23.92-GCCcore-14.2.0`| +|1.23.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Wayland/1.23.0-GCCcore-13.3.0`| +|1.22.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Wayland/1.22.0-GCCcore-13.2.0`| +|1.22.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Wayland/1.22.0-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Wayland/1.22.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Wayland/1.22.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in Wayland installations + + +### wayland + + +|`wayland` version|Wayland modules that include it| +| --- | --- | +|1.24.0|`Wayland/1.24.0-GCCcore-14.3.0`| +|1.23.92|`Wayland/1.23.92-GCCcore-14.2.0`| +|1.23.0|`Wayland/1.23.0-GCCcore-13.3.0`| +|1.22.0|`Wayland/1.22.0-GCCcore-13.2.0`
`Wayland/1.22.0-GCCcore-12.3.0`| + +### wayland-protocols + + +|`wayland-protocols` version|Wayland modules that include it| +| --- | --- | +|1.45|`Wayland/1.24.0-GCCcore-14.3.0`| +|1.44|`Wayland/1.23.92-GCCcore-14.2.0`| +|1.36|`Wayland/1.23.0-GCCcore-13.3.0`| +|1.32|`Wayland/1.22.0-GCCcore-13.2.0`
`Wayland/1.22.0-GCCcore-12.3.0`| + +### wayland-utils + + +|`wayland-utils` version|Wayland modules that include it| +| --- | --- | +|1.2.0|`Wayland/1.24.0-GCCcore-14.3.0`
`Wayland/1.23.92-GCCcore-14.2.0`
`Wayland/1.23.0-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Waylandpp.md b/docs/available_software/detail/Waylandpp.md index 3064e9131e..09feeab618 100644 --- a/docs/available_software/detail/Waylandpp.md +++ b/docs/available_software/detail/Waylandpp.md @@ -1,16 +1,22 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Wayland is an object oriented display protocol, whichfeatures request - and events. Requests can be seen as method calls oncertain objects, whereas events - can be seen as signals of an object.This makes the Wayland protocol a perfect - candidate for a C++ binding.The goal of this library is to create such a C++ binding - for Waylandusing the most modern C++ technology currently available, providingan - easy to use C++ API to Wayland. + description: 'Wayland is an object oriented display protocol, which + + features request and events. Requests can be seen as method calls on + + certain objects, whereas events can be seen as signals of an object. + + This makes the Wayland protocol a perfect candidate for a C++ binding. + + + The goal of this library is to create such a C++ binding for Wayland + + using the most modern C++ technology currently available, providing + + an easy to use C++ API to Wayland.' license: Not confirmed name: Waylandpp offers: @@ -29,30 +35,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Waylandpp/1.0.0-GCCcore-12.3.0'']' + softwareVersion: '[''1.0.0'']' url: https://github.com/NilsBrause/waylandpp --- +# Waylandpp -Waylandpp -========= - - -Wayland is an object oriented display protocol, whichfeatures request and events. Requests can be seen as method calls oncertain objects, whereas events can be seen as signals of an object.This makes the Wayland protocol a perfect candidate for a C++ binding.The goal of this library is to create such a C++ binding for Waylandusing the most modern C++ technology currently available, providingan easy to use C++ API to Wayland. - -https://github.com/NilsBrause/waylandpp -# Available modules +Wayland is an object oriented display protocol, which +features request and events. Requests can be seen as method calls on +certain objects, whereas events can be seen as signals of an object. +This makes the Wayland protocol a perfect candidate for a C++ binding. -The overview below shows which Waylandpp installations are available per target architecture in EESSI, ordered based on software version (new to old). +The goal of this library is to create such a C++ binding for Wayland +using the most modern C++ technology currently available, providing +an easy to use C++ API to Wayland. -To start using Waylandpp, load one of these modules using a `module load` command like: +homepage: [https://github.com/NilsBrause/waylandpp](https://github.com/NilsBrause/waylandpp) -```shell -module load Waylandpp/1.0.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Waylandpp/1.0.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Waylandpp version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Waylandpp/1.0.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/WebKitGTK+.md b/docs/available_software/detail/WebKitGTK+.md index 7d8e96ac95..bed45c3f06 100644 --- a/docs/available_software/detail/WebKitGTK+.md +++ b/docs/available_software/detail/WebKitGTK+.md @@ -1,15 +1,19 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: WebKitGTK+ is a full-featured port of the WebKitrendering engine, suitable - for projects requiring any kind of webintegration, from hybrid HTML/CSS applications - to full-fledged webbrowsers. It offers WebKit's full functionality and is useful - in a widerange of systems from desktop computers to embedded systems like phones,tablets, - and televisions. + description: 'WebKitGTK+ is a full-featured port of the WebKit + + rendering engine, suitable for projects requiring any kind of web + + integration, from hybrid HTML/CSS applications to full-fledged web + + browsers. It offers WebKit''s full functionality and is useful in a wide + + range of systems from desktop computers to embedded systems like phones, + + tablets, and televisions.' license: Not confirmed name: WebKitGTK+ offers: @@ -28,30 +32,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''WebKitGTK+/2.41.4-foss-2023a'']' + softwareVersion: '[''2.41.4'']' url: https://webkitgtk.org/ --- - -WebKitGTK+ -========== - - -WebKitGTK+ is a full-featured port of the WebKitrendering engine, suitable for projects requiring any kind of webintegration, from hybrid HTML/CSS applications to full-fledged webbrowsers. It offers WebKit's full functionality and is useful in a widerange of systems from desktop computers to embedded systems like phones,tablets, and televisions. - -https://webkitgtk.org/ -# Available modules +# WebKitGTK+ -The overview below shows which WebKitGTK+ installations are available per target architecture in EESSI, ordered based on software version (new to old). +WebKitGTK+ is a full-featured port of the WebKit +rendering engine, suitable for projects requiring any kind of web +integration, from hybrid HTML/CSS applications to full-fledged web +browsers. It offers WebKit's full functionality and is useful in a wide +range of systems from desktop computers to embedded systems like phones, +tablets, and televisions. -To start using WebKitGTK+, load one of these modules using a `module load` command like: +homepage: [https://webkitgtk.org/](https://webkitgtk.org/) -```shell -module load WebKitGTK+/2.41.4-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|WebKitGTK+/2.41.4-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|WebKitGTK+ version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.41.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`WebKitGTK+/2.41.4-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/WhatsHap.md b/docs/available_software/detail/WhatsHap.md index 6d97be3c70..20cfc06177 100644 --- a/docs/available_software/detail/WhatsHap.md +++ b/docs/available_software/detail/WhatsHap.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: WhatsHap is a software for phasing genomic variants using DNAsequencing - reads, also called read-based phasing or haplotype assembly. It isespecially suitable - for long reads, but works also well with short reads. + description: 'WhatsHap is a software for phasing genomic variants using DNA + + sequencing reads, also called read-based phasing or haplotype assembly. It is + + especially suitable for long reads, but works also well with short reads.' license: Not confirmed name: WhatsHap offers: @@ -26,44 +26,62 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''WhatsHap/2.1-foss-2022b'', ''WhatsHap/2.2-foss-2023a'']' + softwareVersion: '[''2.2'', ''2.1'']' url: https://whatshap.readthedocs.io --- +# WhatsHap + + +WhatsHap is a software for phasing genomic variants using DNA +sequencing reads, also called read-based phasing or haplotype assembly. It is +especially suitable for long reads, but works also well with short reads. + +homepage: [https://whatshap.readthedocs.io](https://whatshap.readthedocs.io) + +## Available installations + + +|WhatsHap version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`WhatsHap/2.2-foss-2023a`| +|2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`WhatsHap/2.1-foss-2022b`| + +## Extensions -WhatsHap -======== +Overview of extensions included in WhatsHap installations -WhatsHap is a software for phasing genomic variants using DNAsequencing reads, also called read-based phasing or haplotype assembly. It isespecially suitable for long reads, but works also well with short reads. +### pulp -https://whatshap.readthedocs.io -# Available modules +|`pulp` version|WhatsHap modules that include it| +| --- | --- | +|2.8.0|`WhatsHap/2.1-foss-2022b`| -The overview below shows which WhatsHap installations are available per target architecture in EESSI, ordered based on software version (new to old). +### PuLP -To start using WhatsHap, load one of these modules using a `module load` command like: -```shell -module load WhatsHap/2.2-foss-2023a -``` +|`PuLP` version|WhatsHap modules that include it| +| --- | --- | +|2.8.0|`WhatsHap/2.2-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### WhatsHap -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|WhatsHap/2.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|WhatsHap/2.1-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`WhatsHap` version|WhatsHap modules that include it| +| --- | --- | +|2.1|`WhatsHap/2.1-foss-2022b`| -### WhatsHap/2.2-foss-2023a +### whatshap -This is a list of extensions included in the module: -PuLP-2.8.0, whatshap-2.2, xopen-1.7.0 +|`whatshap` version|WhatsHap modules that include it| +| --- | --- | +|2.2|`WhatsHap/2.2-foss-2023a`| -### WhatsHap/2.1-foss-2022b +### xopen -This is a list of extensions included in the module: -pulp-2.8.0, WhatsHap-2.1, xopen-1.7.0 \ No newline at end of file +|`xopen` version|WhatsHap modules that include it| +| --- | --- | +|1.7.0|`WhatsHap/2.2-foss-2023a`
`WhatsHap/2.1-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/X11.md b/docs/available_software/detail/X11.md index cb2effa635..f37bf5c6a7 100644 --- a/docs/available_software/detail/X11.md +++ b/docs/available_software/detail/X11.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,457 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''X11/20221110-GCCcore-12.2.0'', ''X11/20230603-GCCcore-12.3.0'', - ''X11/20231019-GCCcore-13.2.0'']' + softwareVersion: '[''20250608'', ''20250521'', ''20240607'', ''20231019'', ''20230603'', + ''20221110'']' url: https://www.x.org --- - -X11 -=== +# X11 The X Window System (X11) is a windowing system for bitmap displays -https://www.x.org -# Available modules +homepage: [https://www.x.org](https://www.x.org) + +## Available installations + + +|X11 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|20250608|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`X11/20250608-GCCcore-14.3.0`| +|20250521|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`X11/20250521-GCCcore-14.2.0`| +|20240607|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`X11/20240607-GCCcore-13.3.0`| +|20231019|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`X11/20231019-GCCcore-13.2.0`| +|20230603|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`X11/20230603-GCCcore-12.3.0`| +|20221110|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`X11/20221110-GCCcore-12.2.0`| + +## Extensions + +Overview of extensions included in X11 installations + + +### iceauth + + +|`iceauth` version|X11 modules that include it| +| --- | --- | +|1.0.10|`X11/20250608-GCCcore-14.3.0`| + +### libdmx + + +|`libdmx` version|X11 modules that include it| +| --- | --- | +|1.1.5|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.1.4|`X11/20221110-GCCcore-12.2.0`| + +### libfontenc + + +|`libfontenc` version|X11 modules that include it| +| --- | --- | +|1.1.8|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`| +|1.1.7|`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.1.6|`X11/20221110-GCCcore-12.2.0`| + +### libFS + + +|`libFS` version|X11 modules that include it| +| --- | --- | +|1.0.10|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.0.9|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libICE + + +|`libICE` version|X11 modules that include it| +| --- | --- | +|1.1.2|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.1.1|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.0.10|`X11/20221110-GCCcore-12.2.0`| + +### libpthread-stubs + + +|`libpthread-stubs` version|X11 modules that include it| +| --- | --- | +|0.5|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`| +|0.4|`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libSM + + +|`libSM` version|X11 modules that include it| +| --- | --- | +|1.2.6|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.2.4|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.2.3|`X11/20221110-GCCcore-12.2.0`| + +### libX11 + + +|`libX11` version|X11 modules that include it| +| --- | --- | +|1.8.12|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.8.9|`X11/20240607-GCCcore-13.3.0`| +|1.8.7|`X11/20231019-GCCcore-13.2.0`| +|1.8.5|`X11/20230603-GCCcore-12.3.0`| +|1.8.2|`X11/20221110-GCCcore-12.2.0`| + +### libXau + + +|`libXau` version|X11 modules that include it| +| --- | --- | +|1.0.12|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.0.11|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.0.10|`X11/20221110-GCCcore-12.2.0`| + +### libXaw + + +|`libXaw` version|X11 modules that include it| +| --- | --- | +|1.0.16|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`| +|1.0.15|`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.0.14|`X11/20221110-GCCcore-12.2.0`| + +### libxcb + + +|`libxcb` version|X11 modules that include it| +| --- | --- | +|1.17.0|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`| +|1.16|`X11/20231019-GCCcore-13.2.0`| +|1.15|`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libXcomposite + + +|`libXcomposite` version|X11 modules that include it| +| --- | --- | +|0.4.6|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|0.4.5|`X11/20221110-GCCcore-12.2.0`| + +### libXcursor + + +|`libXcursor` version|X11 modules that include it| +| --- | --- | +|1.2.3|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.2.2|`X11/20240607-GCCcore-13.3.0`| +|1.2.1|`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libXdamage + + +|`libXdamage` version|X11 modules that include it| +| --- | --- | +|1.1.6|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.1.5|`X11/20221110-GCCcore-12.2.0`| + +### libXdmcp + + +|`libXdmcp` version|X11 modules that include it| +| --- | --- | +|1.1.5|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`| +|1.1.4|`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.1.3|`X11/20221110-GCCcore-12.2.0`| + +### libXext + + +|`libXext` version|X11 modules that include it| +| --- | --- | +|1.3.6|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`| +|1.3.5|`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libXfixes + + +|`libXfixes` version|X11 modules that include it| +| --- | --- | +|6.0.1|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|6.0.0|`X11/20221110-GCCcore-12.2.0`| + +### libXfont + + +|`libXfont` version|X11 modules that include it| +| --- | --- | +|1.5.4|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libXfont2 + + +|`libXfont2` version|X11 modules that include it| +| --- | --- | +|2.0.7|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|2.0.6|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libXft + + +|`libXft` version|X11 modules that include it| +| --- | --- | +|2.3.9|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|2.3.8|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|2.3.6|`X11/20221110-GCCcore-12.2.0`| + +### libXi + + +|`libXi` version|X11 modules that include it| +| --- | --- | +|1.8.2|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.8.1|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.8|`X11/20221110-GCCcore-12.2.0`| + +### libXinerama + + +|`libXinerama` version|X11 modules that include it| +| --- | --- | +|1.1.5|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libxkbcommon + + +|`libxkbcommon` version|X11 modules that include it| +| --- | --- | +|1.10.0|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.7.0|`X11/20240607-GCCcore-13.3.0`| +|1.6.0|`X11/20231019-GCCcore-13.2.0`| +|1.5.0|`X11/20230603-GCCcore-12.3.0`| +|1.4.1|`X11/20221110-GCCcore-12.2.0`| + +### libxkbfile + + +|`libxkbfile` version|X11 modules that include it| +| --- | --- | +|1.1.3|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`| +|1.1.2|`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.1.1|`X11/20221110-GCCcore-12.2.0`| + +### libXmu + + +|`libXmu` version|X11 modules that include it| +| --- | --- | +|1.2.1|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`| +|1.1.4|`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libXp + + +|`libXp` version|X11 modules that include it| +| --- | --- | +|1.0.4|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libXpm + + +|`libXpm` version|X11 modules that include it| +| --- | --- | +|3.5.17|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`| +|3.5.16|`X11/20230603-GCCcore-12.3.0`| +|3.5.13|`X11/20221110-GCCcore-12.2.0`| + +### libXpresent + + +|`libXpresent` version|X11 modules that include it| +| --- | --- | +|1.0.2|`X11/20250608-GCCcore-14.3.0`| + +### libXrandr + + +|`libXrandr` version|X11 modules that include it| +| --- | --- | +|1.5.4|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`| +|1.5.3|`X11/20230603-GCCcore-12.3.0`| +|1.5.2|`X11/20221110-GCCcore-12.2.0`| + +### libXrender + + +|`libXrender` version|X11 modules that include it| +| --- | --- | +|0.9.12|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|0.9.11|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libXres + + +|`libXres` version|X11 modules that include it| +| --- | --- | +|1.2.2|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.2.1|`X11/20221110-GCCcore-12.2.0`| + +### libXScrnSaver + + +|`libXScrnSaver` version|X11 modules that include it| +| --- | --- | +|1.2.4|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.2.3|`X11/20221110-GCCcore-12.2.0`| + +### libxshmfence + + +|`libxshmfence` version|X11 modules that include it| +| --- | --- | +|1.3.3|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.3.2|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.3|`X11/20221110-GCCcore-12.2.0`| + +### libXt + + +|`libXt` version|X11 modules that include it| +| --- | --- | +|1.3.1|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.3.0|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.2.1|`X11/20221110-GCCcore-12.2.0`| + +### libXtst + + +|`libXtst` version|X11 modules that include it| +| --- | --- | +|1.2.5|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.2.4|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libXv + + +|`libXv` version|X11 modules that include it| +| --- | --- | +|1.0.13|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.0.12|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.0.11|`X11/20221110-GCCcore-12.2.0`| + +### libXvMC + + +|`libXvMC` version|X11 modules that include it| +| --- | --- | +|1.0.14|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`| +|1.0.13|`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### libXxf86dga + + +|`libXxf86dga` version|X11 modules that include it| +| --- | --- | +|1.1.6|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.1.5|`X11/20221110-GCCcore-12.2.0`| + +### libXxf86vm + + +|`libXxf86vm` version|X11 modules that include it| +| --- | --- | +|1.1.6|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.1.5|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### printproto + + +|`printproto` version|X11 modules that include it| +| --- | --- | +|1.0.5|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### xbitmaps + + +|`xbitmaps` version|X11 modules that include it| +| --- | --- | +|1.1.3|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.1.2|`X11/20221110-GCCcore-12.2.0`| + +### xcb-proto + + +|`xcb-proto` version|X11 modules that include it| +| --- | --- | +|1.17.0|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`| +|1.16.0|`X11/20231019-GCCcore-13.2.0`| +|1.15.2|`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### xcb-util + + +|`xcb-util` version|X11 modules that include it| +| --- | --- | +|0.4.1|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`| +|0.4.0|`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### xcb-util-cursor + + +|`xcb-util-cursor` version|X11 modules that include it| +| --- | --- | +|0.1.5|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`| +|0.1.4|`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### xcb-util-image + + +|`xcb-util-image` version|X11 modules that include it| +| --- | --- | +|0.4.1|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### xcb-util-keysyms + + +|`xcb-util-keysyms` version|X11 modules that include it| +| --- | --- | +|0.4.1|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### xcb-util-renderutil + + +|`xcb-util-renderutil` version|X11 modules that include it| +| --- | --- | +|0.3.10|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### xcb-util-wm + + +|`xcb-util-wm` version|X11 modules that include it| +| --- | --- | +|0.4.2|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| + +### xkeyboard-config + + +|`xkeyboard-config` version|X11 modules that include it| +| --- | --- | +|2.45|`X11/20250608-GCCcore-14.3.0`| +|2.44|`X11/20250521-GCCcore-14.2.0`| +|2.42|`X11/20240607-GCCcore-13.3.0`| +|2.40|`X11/20231019-GCCcore-13.2.0`| +|2.38|`X11/20230603-GCCcore-12.3.0`| +|2.37|`X11/20221110-GCCcore-12.2.0`| +### xorgproto -The overview below shows which X11 installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using X11, load one of these modules using a `module load` command like: +|`xorgproto` version|X11 modules that include it| +| --- | --- | +|2024.1|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`
`X11/20240607-GCCcore-13.3.0`| +|2023.2|`X11/20231019-GCCcore-13.2.0`| +|2022.2|`X11/20230603-GCCcore-12.3.0`
`X11/20221110-GCCcore-12.2.0`| -```shell -module load X11/20231019-GCCcore-13.2.0 -``` +### xtrans -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|X11/20231019-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|X11/20230603-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|X11/20221110-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`xtrans` version|X11 modules that include it| +| --- | --- | +|1.6.0|`X11/20250608-GCCcore-14.3.0`
`X11/20250521-GCCcore-14.2.0`| +|1.5.0|`X11/20240607-GCCcore-13.3.0`
`X11/20231019-GCCcore-13.2.0`
`X11/20230603-GCCcore-12.3.0`| +|1.4.0|`X11/20221110-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/XML-LibXML.md b/docs/available_software/detail/XML-LibXML.md index 15e7512a54..7511df5a07 100644 --- a/docs/available_software/detail/XML-LibXML.md +++ b/docs/available_software/detail/XML-LibXML.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,44 +22,72 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''XML-LibXML/2.0208-GCCcore-12.2.0'', ''XML-LibXML/2.0209-GCCcore-12.3.0'']' + softwareVersion: '[''2.0210'', ''2.0209'', ''2.0208'']' url: https://metacpan.org/pod/distribution/XML-LibXML/LibXML.pod --- - -XML-LibXML -========== +# XML-LibXML Perl binding for libxml2 -https://metacpan.org/pod/distribution/XML-LibXML/LibXML.pod -# Available modules +homepage: [https://metacpan.org/pod/distribution/XML-LibXML/LibXML.pod](https://metacpan.org/pod/distribution/XML-LibXML/LibXML.pod) + +## Available installations + + +|XML-LibXML version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0210|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`XML-LibXML/2.0210-GCCcore-14.2.0`| +|2.0209|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`XML-LibXML/2.0209-GCCcore-12.3.0`| +|2.0208|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`XML-LibXML/2.0208-GCCcore-12.2.0`| + +## Extensions + +Overview of extensions included in XML-LibXML installations + + +### Alien::Base + + +|`Alien::Base` version|XML-LibXML modules that include it| +| --- | --- | +|2.84|`XML-LibXML/2.0210-GCCcore-14.2.0`| +|2.80|`XML-LibXML/2.0209-GCCcore-12.3.0`
`XML-LibXML/2.0208-GCCcore-12.2.0`| + +### Alien::Build::Plugin::Download::GitLab + +|`Alien::Build::Plugin::Download::GitLab` version|XML-LibXML modules that include it| +| --- | --- | +|0.01|`XML-LibXML/2.0210-GCCcore-14.2.0`
`XML-LibXML/2.0209-GCCcore-12.3.0`
`XML-LibXML/2.0208-GCCcore-12.2.0`| -The overview below shows which XML-LibXML installations are available per target architecture in EESSI, ordered based on software version (new to old). +### Alien::Libxml2 -To start using XML-LibXML, load one of these modules using a `module load` command like: -```shell -module load XML-LibXML/2.0209-GCCcore-12.3.0 -``` +|`Alien::Libxml2` version|XML-LibXML modules that include it| +| --- | --- | +|0.20|`XML-LibXML/2.0210-GCCcore-14.2.0`| +|0.19|`XML-LibXML/2.0209-GCCcore-12.3.0`
`XML-LibXML/2.0208-GCCcore-12.2.0`| -*(This data was automatically generated on {{ generated_time }})* +### FFI::CheckLib -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|XML-LibXML/2.0209-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|XML-LibXML/2.0208-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`FFI::CheckLib` version|XML-LibXML modules that include it| +| --- | --- | +|0.31|`XML-LibXML/2.0210-GCCcore-14.2.0`| -### XML-LibXML/2.0209-GCCcore-12.3.0 +### File::chdir -This is a list of extensions included in the module: -Alien::Base-2.80, Alien::Build::Plugin::Download::GitLab-0.01, Alien::Libxml2-0.19, File::chdir-0.1011, XML::LibXML-2.0209 +|`File::chdir` version|XML-LibXML modules that include it| +| --- | --- | +|0.1011|`XML-LibXML/2.0210-GCCcore-14.2.0`
`XML-LibXML/2.0209-GCCcore-12.3.0`
`XML-LibXML/2.0208-GCCcore-12.2.0`| -### XML-LibXML/2.0208-GCCcore-12.2.0 +### XML::LibXML -This is a list of extensions included in the module: -Alien::Base-2.80, Alien::Build::Plugin::Download::GitLab-0.01, Alien::Libxml2-0.19, File::chdir-0.1011, XML::LibXML-2.0208 \ No newline at end of file +|`XML::LibXML` version|XML-LibXML modules that include it| +| --- | --- | +|2.0210|`XML-LibXML/2.0210-GCCcore-14.2.0`| +|2.0209|`XML-LibXML/2.0209-GCCcore-12.3.0`| +|2.0208|`XML-LibXML/2.0208-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Xerces-C++.md b/docs/available_software/detail/Xerces-C++.md index 38fcb2854b..831ea6041e 100644 --- a/docs/available_software/detail/Xerces-C++.md +++ b/docs/available_software/detail/Xerces-C++.md @@ -1,14 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Xerces-C++ is a validating XML parser written in a portablesubset of - C++. Xerces-C++ makes it easy to give your application the ability toread and - write XML data. A shared library is provided for parsing, generating,manipulating, - and validating XML documents using the DOM, SAX, and SAX2APIs. + description: 'Xerces-C++ is a validating XML parser written in a portable + + subset of C++. Xerces-C++ makes it easy to give your application the ability to + + read and write XML data. A shared library is provided for parsing, generating, + + manipulating, and validating XML documents using the DOM, SAX, and SAX2 + + APIs.' license: Not confirmed name: Xerces-C++ offers: @@ -27,33 +30,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Xerces-C++/3.2.4-GCCcore-12.2.0'', ''Xerces-C++/3.2.4-GCCcore-12.3.0'', - ''Xerces-C++/3.2.5-GCCcore-13.2.0'']' + softwareVersion: '[''3.2.5'', ''3.2.4'']' url: https://xerces.apache.org/xerces-c/ --- - -Xerces-C++ -========== - - -Xerces-C++ is a validating XML parser written in a portablesubset of C++. Xerces-C++ makes it easy to give your application the ability toread and write XML data. A shared library is provided for parsing, generating,manipulating, and validating XML documents using the DOM, SAX, and SAX2APIs. - -https://xerces.apache.org/xerces-c/ -# Available modules +# Xerces-C++ -The overview below shows which Xerces-C++ installations are available per target architecture in EESSI, ordered based on software version (new to old). +Xerces-C++ is a validating XML parser written in a portable +subset of C++. Xerces-C++ makes it easy to give your application the ability to +read and write XML data. A shared library is provided for parsing, generating, +manipulating, and validating XML documents using the DOM, SAX, and SAX2 +APIs. -To start using Xerces-C++, load one of these modules using a `module load` command like: +homepage: [https://xerces.apache.org/xerces-c/](https://xerces.apache.org/xerces-c/) -```shell -module load Xerces-C++/3.2.5-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Xerces-C++/3.2.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Xerces-C++/3.2.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Xerces-C++/3.2.4-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Xerces-C++ version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Xerces-C++/3.2.5-GCCcore-13.3.0`| +|3.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Xerces-C++/3.2.5-GCCcore-13.2.0`| +|3.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Xerces-C++/3.2.4-GCCcore-12.3.0`| +|3.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Xerces-C++/3.2.4-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Xfce.md b/docs/available_software/detail/Xfce.md new file mode 100644 index 0000000000..c208679315 --- /dev/null +++ b/docs/available_software/detail/Xfce.md @@ -0,0 +1,220 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Xfce is a lightweight desktop environment for UNIX-like operating systems. + license: Not confirmed + name: Xfce + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''4.20'']' + url: https://www.xfce.org/ +--- +# Xfce + + +Xfce is a lightweight desktop environment for UNIX-like operating systems. + +homepage: [https://www.xfce.org/](https://www.xfce.org/) + +## Available installations + + +|Xfce version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.20|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Xfce/4.20-GCCcore-14.3.0`| + +## Extensions + +Overview of extensions included in Xfce installations + + +### exo + + +|`exo` version|Xfce modules that include it| +| --- | --- | +|4.20.0|`Xfce/4.20-GCCcore-14.3.0`| + +### garcon + + +|`garcon` version|Xfce modules that include it| +| --- | --- | +|4.20.0|`Xfce/4.20-GCCcore-14.3.0`| + +### gigolo + + +|`gigolo` version|Xfce modules that include it| +| --- | --- | +|0.6.0|`Xfce/4.20-GCCcore-14.3.0`| + +### libxfce4ui + + +|`libxfce4ui` version|Xfce modules that include it| +| --- | --- | +|4.20.0|`Xfce/4.20-GCCcore-14.3.0`| + +### libxfce4util + + +|`libxfce4util` version|Xfce modules that include it| +| --- | --- | +|4.20.1|`Xfce/4.20-GCCcore-14.3.0`| + +### libxfce4windowing + + +|`libxfce4windowing` version|Xfce modules that include it| +| --- | --- | +|4.20.4|`Xfce/4.20-GCCcore-14.3.0`| + +### mousepad + + +|`mousepad` version|Xfce modules that include it| +| --- | --- | +|0.6.5|`Xfce/4.20-GCCcore-14.3.0`| + +### parole + + +|`parole` version|Xfce modules that include it| +| --- | --- | +|4.20.0|`Xfce/4.20-GCCcore-14.3.0`| + +### ristretto + + +|`ristretto` version|Xfce modules that include it| +| --- | --- | +|0.13.4|`Xfce/4.20-GCCcore-14.3.0`| + +### thunar + + +|`thunar` version|Xfce modules that include it| +| --- | --- | +|4.20.6|`Xfce/4.20-GCCcore-14.3.0`| + +### tumbler + + +|`tumbler` version|Xfce modules that include it| +| --- | --- | +|4.20.1|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-appfinder + + +|`xfce4-appfinder` version|Xfce modules that include it| +| --- | --- | +|4.20.0|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-clipman-plugin + + +|`xfce4-clipman-plugin` version|Xfce modules that include it| +| --- | --- | +|1.7.0|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-dev-tools + + +|`xfce4-dev-tools` version|Xfce modules that include it| +| --- | --- | +|4.20.0|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-genmon-plugin + + +|`xfce4-genmon-plugin` version|Xfce modules that include it| +| --- | --- | +|4.3.0|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-notifyd + + +|`xfce4-notifyd` version|Xfce modules that include it| +| --- | --- | +|0.9.7|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-panel + + +|`xfce4-panel` version|Xfce modules that include it| +| --- | --- | +|4.20.5|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-screenshooter + + +|`xfce4-screenshooter` version|Xfce modules that include it| +| --- | --- | +|1.11.3|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-session + + +|`xfce4-session` version|Xfce modules that include it| +| --- | --- | +|4.20.3|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-settings + + +|`xfce4-settings` version|Xfce modules that include it| +| --- | --- | +|4.20.2|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-taskmanager + + +|`xfce4-taskmanager` version|Xfce modules that include it| +| --- | --- | +|1.6.0|`Xfce/4.20-GCCcore-14.3.0`| + +### xfce4-terminal + + +|`xfce4-terminal` version|Xfce modules that include it| +| --- | --- | +|1.1.5|`Xfce/4.20-GCCcore-14.3.0`| + +### xfconf + + +|`xfconf` version|Xfce modules that include it| +| --- | --- | +|4.20.0|`Xfce/4.20-GCCcore-14.3.0`| + +### xfdesktop + + +|`xfdesktop` version|Xfce modules that include it| +| --- | --- | +|4.20.1|`Xfce/4.20-GCCcore-14.3.0`| + +### xfwm4 + + +|`xfwm4` version|Xfce modules that include it| +| --- | --- | +|4.20.0|`Xfce/4.20-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Xvfb.md b/docs/available_software/detail/Xvfb.md index 963f7198a5..701b7d6135 100644 --- a/docs/available_software/detail/Xvfb.md +++ b/docs/available_software/detail/Xvfb.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Xvfb is an X server that can run on machines with no display hardware - and no physical input devices. It emulates a dumb framebuffer using virtual memory. + description: "Xvfb is an X server that can run on machines with no display hardware\ + \ and no physical input devices.\n It emulates a dumb framebuffer using virtual\ + \ memory." license: Not confirmed name: Xvfb offers: @@ -25,33 +24,115 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Xvfb/21.1.6-GCCcore-12.2.0'', ''Xvfb/21.1.8-GCCcore-12.3.0'', - ''Xvfb/21.1.9-GCCcore-13.2.0'']' + softwareVersion: '[''21.1.18'', ''21.1.14'', ''21.1.9'', ''21.1.8'', ''21.1.6'']' url: https://www.x.org/releases/X11R7.6/doc/man/man1/Xvfb.1.xhtml --- +# Xvfb -Xvfb -==== +Xvfb is an X server that can run on machines with no display hardware and no physical input devices. + It emulates a dumb framebuffer using virtual memory. -Xvfb is an X server that can run on machines with no display hardware and no physical input devices. It emulates a dumb framebuffer using virtual memory. +homepage: [https://www.x.org/releases/X11R7.6/doc/man/man1/Xvfb.1.xhtml](https://www.x.org/releases/X11R7.6/doc/man/man1/Xvfb.1.xhtml) -https://www.x.org/releases/X11R7.6/doc/man/man1/Xvfb.1.xhtml -# Available modules +## Available installations -The overview below shows which Xvfb installations are available per target architecture in EESSI, ordered based on software version (new to old). +|Xvfb version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|21.1.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Xvfb/21.1.18-GCCcore-14.3.0`| +|21.1.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Xvfb/21.1.14-GCCcore-13.3.0`| +|21.1.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Xvfb/21.1.9-GCCcore-13.2.0`| +|21.1.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Xvfb/21.1.8-GCCcore-12.3.0`| +|21.1.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Xvfb/21.1.6-GCCcore-12.2.0`| -To start using Xvfb, load one of these modules using a `module load` command like: +## Extensions -```shell -module load Xvfb/21.1.9-GCCcore-13.2.0 -``` +Overview of extensions included in Xvfb installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Xvfb/21.1.9-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Xvfb/21.1.8-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Xvfb/21.1.6-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### bdftopcf + + +|`bdftopcf` version|Xvfb modules that include it| +| --- | --- | +|1.1|`Xvfb/21.1.18-GCCcore-14.3.0`
`Xvfb/21.1.14-GCCcore-13.3.0`
`Xvfb/21.1.9-GCCcore-13.2.0`
`Xvfb/21.1.8-GCCcore-12.3.0`
`Xvfb/21.1.6-GCCcore-12.2.0`| + +### font-misc-misc + + +|`font-misc-misc` version|Xvfb modules that include it| +| --- | --- | +|1.1.3|`Xvfb/21.1.18-GCCcore-14.3.0`
`Xvfb/21.1.14-GCCcore-13.3.0`
`Xvfb/21.1.9-GCCcore-13.2.0`
`Xvfb/21.1.8-GCCcore-12.3.0`| +|1.1.2|`Xvfb/21.1.6-GCCcore-12.2.0`| + +### font-util + + +|`font-util` version|Xvfb modules that include it| +| --- | --- | +|1.4.1|`Xvfb/21.1.18-GCCcore-14.3.0`
`Xvfb/21.1.14-GCCcore-13.3.0`
`Xvfb/21.1.9-GCCcore-13.2.0`| +|1.4.0|`Xvfb/21.1.8-GCCcore-12.3.0`| +|1.3.3|`Xvfb/21.1.6-GCCcore-12.2.0`| + +### libxcvt + + +|`libxcvt` version|Xvfb modules that include it| +| --- | --- | +|0.1.3|`Xvfb/21.1.18-GCCcore-14.3.0`| +|0.1.2|`Xvfb/21.1.14-GCCcore-13.3.0`
`Xvfb/21.1.9-GCCcore-13.2.0`
`Xvfb/21.1.8-GCCcore-12.3.0`
`Xvfb/21.1.6-GCCcore-12.2.0`| + +### mkfontdir + + +|`mkfontdir` version|Xvfb modules that include it| +| --- | --- | +|1.0.7|`Xvfb/21.1.18-GCCcore-14.3.0`
`Xvfb/21.1.14-GCCcore-13.3.0`
`Xvfb/21.1.9-GCCcore-13.2.0`
`Xvfb/21.1.8-GCCcore-12.3.0`
`Xvfb/21.1.6-GCCcore-12.2.0`| + +### mkfontscale + + +|`mkfontscale` version|Xvfb modules that include it| +| --- | --- | +|1.2.3|`Xvfb/21.1.18-GCCcore-14.3.0`
`Xvfb/21.1.14-GCCcore-13.3.0`| +|1.2.2|`Xvfb/21.1.9-GCCcore-13.2.0`
`Xvfb/21.1.8-GCCcore-12.3.0`
`Xvfb/21.1.6-GCCcore-12.2.0`| + +### xauth + + +|`xauth` version|Xvfb modules that include it| +| --- | --- | +|1.1.4|`Xvfb/21.1.18-GCCcore-14.3.0`| +|1.1.3|`Xvfb/21.1.14-GCCcore-13.3.0`| +|1.1.2|`Xvfb/21.1.9-GCCcore-13.2.0`
`Xvfb/21.1.8-GCCcore-12.3.0`
`Xvfb/21.1.6-GCCcore-12.2.0`| + +### xkbcomp + + +|`xkbcomp` version|Xvfb modules that include it| +| --- | --- | +|1.4.7|`Xvfb/21.1.18-GCCcore-14.3.0`
`Xvfb/21.1.14-GCCcore-13.3.0`| +|1.4.6|`Xvfb/21.1.9-GCCcore-13.2.0`
`Xvfb/21.1.8-GCCcore-12.3.0`
`Xvfb/21.1.6-GCCcore-12.2.0`| + +### xkeyboard-config + + +|`xkeyboard-config` version|Xvfb modules that include it| +| --- | --- | +|2.46|`Xvfb/21.1.18-GCCcore-14.3.0`| +|2.43|`Xvfb/21.1.14-GCCcore-13.3.0`| +|2.40|`Xvfb/21.1.9-GCCcore-13.2.0`| +|2.39|`Xvfb/21.1.8-GCCcore-12.3.0`| +|2.37|`Xvfb/21.1.6-GCCcore-12.2.0`| + +### Xvfb + + +|`Xvfb` version|Xvfb modules that include it| +| --- | --- | +|21.1.18|`Xvfb/21.1.18-GCCcore-14.3.0`| +|21.1.14|`Xvfb/21.1.14-GCCcore-13.3.0`| +|21.1.9|`Xvfb/21.1.9-GCCcore-13.2.0`| +|21.1.8|`Xvfb/21.1.8-GCCcore-12.3.0`| +|21.1.6|`Xvfb/21.1.6-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Xwayland.md b/docs/available_software/detail/Xwayland.md new file mode 100644 index 0000000000..98fdd90294 --- /dev/null +++ b/docs/available_software/detail/Xwayland.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Xorg is a full featured X server that was originally designed for + UNIX and UNIX-like operating + + systems' + license: Not confirmed + name: Xwayland + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''24.1.9'']' + url: https://www.x.org/releases/X11R7.6/doc/man/man1/Xorg.1.xhtml +--- +# Xwayland + + +Xorg is a full featured X server that was originally designed for UNIX and UNIX-like operating +systems + +homepage: [https://www.x.org/releases/X11R7.6/doc/man/man1/Xorg.1.xhtml](https://www.x.org/releases/X11R7.6/doc/man/man1/Xorg.1.xhtml) + +## Available installations + + +|Xwayland version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|24.1.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Xwayland/24.1.9-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/YODA.md b/docs/available_software/detail/YODA.md index ee4a88842a..3b7156ea04 100644 --- a/docs/available_software/detail/YODA.md +++ b/docs/available_software/detail/YODA.md @@ -1,11 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Yet more Objects for (High Energy Physics) Data Analysis + description: ' + + Yet more Objects for (High Energy Physics) Data Analysis + + ' license: Not confirmed name: YODA offers: @@ -24,30 +26,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''YODA/1.9.9-GCC-12.3.0'']' + softwareVersion: '[''1.9.9'']' url: https://yoda.hepforge.org/ --- +# YODA -YODA -==== Yet more Objects for (High Energy Physics) Data Analysis -https://yoda.hepforge.org/ -# Available modules - - -The overview below shows which YODA installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using YODA, load one of these modules using a `module load` command like: +homepage: [https://yoda.hepforge.org/](https://yoda.hepforge.org/) -```shell -module load YODA/1.9.9-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|YODA/1.9.9-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|YODA version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`YODA/1.9.9-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Yasm.md b/docs/available_software/detail/Yasm.md index d16e2b5ab0..830b792a0a 100644 --- a/docs/available_software/detail/Yasm.md +++ b/docs/available_software/detail/Yasm.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Yasm/1.3.0-GCCcore-12.2.0'', ''Yasm/1.3.0-GCCcore-12.3.0'', - ''Yasm/1.3.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.3.0'']' url: https://www.tortall.net/projects/yasm/ --- - -Yasm -==== +# Yasm Yasm: Complete rewrite of the NASM assembler with BSD license -https://www.tortall.net/projects/yasm/ -# Available modules - - -The overview below shows which Yasm installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Yasm, load one of these modules using a `module load` command like: +homepage: [https://www.tortall.net/projects/yasm/](https://www.tortall.net/projects/yasm/) -```shell -module load Yasm/1.3.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Yasm/1.3.0-GCCcore-13.2.0|-|-|-|-|-|x|x|x|x|x|x|x|x|x| -|Yasm/1.3.0-GCCcore-12.3.0|-|-|-|-|-|x|x|x|x|x|x|x|x|x| -|Yasm/1.3.0-GCCcore-12.2.0|-|-|-|-|-|x|x|x|x|x|x|x|x|x| +|Yasm version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.0|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Yasm/1.3.0-GCCcore-14.3.0`| +|1.3.0|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Yasm/1.3.0-GCCcore-14.2.0`| +|1.3.0|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Yasm/1.3.0-GCCcore-13.3.0`| +|1.3.0|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Yasm/1.3.0-GCCcore-13.2.0`| +|1.3.0|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Yasm/1.3.0-GCCcore-12.3.0`| +|1.3.0|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Yasm/1.3.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Z3.md b/docs/available_software/detail/Z3.md index b774e7cd22..e191aedbe2 100644 --- a/docs/available_software/detail/Z3.md +++ b/docs/available_software/detail/Z3.md @@ -1,13 +1,9 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Z3 is a theorem prover from Microsoft Research with support for bitvectors,booleans, - arrays, floating point numbers, strings, and other data types. Thismodule includes - z3-solver, the Python interface of Z3. + description: "\n Z3 is a theorem prover from Microsoft Research.\n" license: Not confirmed name: Z3 offers: @@ -26,45 +22,47 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Z3/4.12.2-GCCcore-12.2.0'', ''Z3/4.12.2-GCCcore-12.3.0'', ''Z3/4.12.2-GCCcore-12.3.0-Python-3.11.3'']' + softwareVersion: '[''4.15.1'', ''4.13.4'', ''4.13.0'', ''4.12.2'']' url: https://github.com/Z3Prover/z3 --- +# Z3 -Z3 -== -Z3 is a theorem prover from Microsoft Research with support for bitvectors,booleans, arrays, floating point numbers, strings, and other data types. Thismodule includes z3-solver, the Python interface of Z3. + Z3 is a theorem prover from Microsoft Research. -https://github.com/Z3Prover/z3 -# Available modules +homepage: [https://github.com/Z3Prover/z3](https://github.com/Z3Prover/z3) -The overview below shows which Z3 installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using Z3, load one of these modules using a `module load` command like: -```shell -module load Z3/4.12.2-GCCcore-12.3.0-Python-3.11.3 -``` +|Z3 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.15.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Z3/4.15.1-GCCcore-14.3.0`| +|4.13.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Z3/4.13.4-GCCcore-14.2.0`| +|4.13.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Z3/4.13.0-GCCcore-13.3.0`| +|4.12.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Z3/4.12.2-GCCcore-12.3.0-Python-3.11.3`| +|4.12.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Z3/4.12.2-GCCcore-12.3.0`| +|4.12.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Z3/4.12.2-GCCcore-12.2.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Z3/4.12.2-GCCcore-12.3.0-Python-3.11.3|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Z3/4.12.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Z3/4.12.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in Z3 installations -### Z3/4.12.2-GCCcore-12.3.0-Python-3.11.3 +### z3-solver -This is a list of extensions included in the module: -z3-solver-4.12.2.0 +|`z3-solver` version|Z3 modules that include it| +| --- | --- | +|4.13.0.0|`Z3/4.13.0-GCCcore-13.3.0`| +|4.12.2.0|`Z3/4.12.2-GCCcore-12.3.0-Python-3.11.3`
`Z3/4.12.2-GCCcore-12.3.0`| -### Z3/4.12.2-GCCcore-12.3.0 +### z3_solver -This is a list of extensions included in the module: -z3-solver-4.12.2.0 \ No newline at end of file +|`z3_solver` version|Z3 modules that include it| +| --- | --- | +|4.15.1.0|`Z3/4.15.1-GCCcore-14.3.0`| +|4.13.4.0|`Z3/4.13.4-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ZeroMQ.md b/docs/available_software/detail/ZeroMQ.md index 4d25b7b24c..bd07f2c986 100644 --- a/docs/available_software/detail/ZeroMQ.md +++ b/docs/available_software/detail/ZeroMQ.md @@ -1,18 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: ZeroMQ looks like an embeddable networking library but acts like a - concurrency framework. It gives you sockets that carry atomic messages across - various transports like in-process, inter-process, TCP, and multicast. You can - connect sockets N-to-N with patterns like fanout, pub-sub, task distribution, - and request-reply. It's fast enough to be the fabric for clustered products. Its - asynchronous I/O model gives you scalable multicore applications, built as asynchronous - message-processing tasks. It has a score of language APIs and runs on most operating - systems. + description: "ZeroMQ looks like an embeddable networking library but acts like a\ + \ concurrency framework.\n It gives you sockets that carry atomic messages across\ + \ various transports like in-process,\n inter-process, TCP, and multicast. You\ + \ can connect sockets N-to-N with patterns like fanout,\n pub-sub, task distribution,\ + \ and request-reply. It's fast enough to be the fabric for clustered\n products.\ + \ Its asynchronous I/O model gives you scalable multicore applications, built\ + \ as asynchronous\n message-processing tasks. It has a score of language APIs\ + \ and runs on most operating systems." license: Not confirmed name: ZeroMQ offers: @@ -31,31 +29,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ZeroMQ/4.3.4-GCCcore-12.3.0'', ''ZeroMQ/4.3.5-GCCcore-13.2.0'']' + softwareVersion: '[''4.3.5'', ''4.3.4'']' url: https://www.zeromq.org/ --- +# ZeroMQ -ZeroMQ -====== +ZeroMQ looks like an embeddable networking library but acts like a concurrency framework. + It gives you sockets that carry atomic messages across various transports like in-process, + inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fanout, + pub-sub, task distribution, and request-reply. It's fast enough to be the fabric for clustered + products. Its asynchronous I/O model gives you scalable multicore applications, built as asynchronous + message-processing tasks. It has a score of language APIs and runs on most operating systems. -ZeroMQ looks like an embeddable networking library but acts like a concurrency framework. It gives you sockets that carry atomic messages across various transports like in-process, inter-process, TCP, and multicast. You can connect sockets N-to-N with patterns like fanout, pub-sub, task distribution, and request-reply. It's fast enough to be the fabric for clustered products. Its asynchronous I/O model gives you scalable multicore applications, built as asynchronous message-processing tasks. It has a score of language APIs and runs on most operating systems. +homepage: [https://www.zeromq.org/](https://www.zeromq.org/) -https://www.zeromq.org/ -# Available modules +## Available installations -The overview below shows which ZeroMQ installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ZeroMQ, load one of these modules using a `module load` command like: - -```shell -module load ZeroMQ/4.3.5-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ZeroMQ/4.3.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ZeroMQ/4.3.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ZeroMQ version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ZeroMQ/4.3.5-GCCcore-14.3.0`| +|4.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ZeroMQ/4.3.5-GCCcore-14.2.0`| +|4.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ZeroMQ/4.3.5-GCCcore-13.3.0`| +|4.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ZeroMQ/4.3.5-GCCcore-13.2.0`| +|4.3.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ZeroMQ/4.3.4-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Zip.md b/docs/available_software/detail/Zip.md index 6c35d81670..c41801f786 100644 --- a/docs/available_software/detail/Zip.md +++ b/docs/available_software/detail/Zip.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Zip is a compression and file packaging/archive utility.Although highly - compatible both with PKWARE's PKZIP and PKUNZIPutilities for MS-DOS and with Info-ZIP's - own UnZip, our primary objectiveshave been portability and other-than-MSDOS functionality + description: 'Zip is a compression and file packaging/archive utility. + + Although highly compatible both with PKWARE''s PKZIP and PKUNZIP + + utilities for MS-DOS and with Info-ZIP''s own UnZip, our primary objectives + + have been portability and other-than-MSDOS functionality' license: Not confirmed name: Zip offers: @@ -26,31 +28,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Zip/3.0-GCCcore-12.2.0'', ''Zip/3.0-GCCcore-12.3.0'']' + softwareVersion: '[''3.0'']' url: http://www.info-zip.org/Zip.html --- - -Zip -=== - - -Zip is a compression and file packaging/archive utility.Although highly compatible both with PKWARE's PKZIP and PKUNZIPutilities for MS-DOS and with Info-ZIP's own UnZip, our primary objectiveshave been portability and other-than-MSDOS functionality - -http://www.info-zip.org/Zip.html -# Available modules +# Zip -The overview below shows which Zip installations are available per target architecture in EESSI, ordered based on software version (new to old). +Zip is a compression and file packaging/archive utility. +Although highly compatible both with PKWARE's PKZIP and PKUNZIP +utilities for MS-DOS and with Info-ZIP's own UnZip, our primary objectives +have been portability and other-than-MSDOS functionality -To start using Zip, load one of these modules using a `module load` command like: +homepage: [http://www.info-zip.org/Zip.html](http://www.info-zip.org/Zip.html) -```shell -module load Zip/3.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Zip/3.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|Zip/3.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Zip version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`Zip/3.0-GCCcore-14.3.0`| +|3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Zip/3.0-GCCcore-12.3.0`| +|3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Zip/3.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/Zoltan.md b/docs/available_software/detail/Zoltan.md index 2177c139c7..77888612ca 100644 --- a/docs/available_software/detail/Zoltan.md +++ b/docs/available_software/detail/Zoltan.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''Zoltan/3.901-foss-2023a'']' + softwareVersion: '[''3.901'']' url: https://sandialabs.github.io/Zoltan/ --- - -Zoltan -====== +# Zoltan Zoltan Dynamic Load Balancing and Graph Algorithm Toolkit -https://sandialabs.github.io/Zoltan/ -# Available modules - - -The overview below shows which Zoltan installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using Zoltan, load one of these modules using a `module load` command like: +homepage: [https://sandialabs.github.io/Zoltan/](https://sandialabs.github.io/Zoltan/) -```shell -module load Zoltan/3.901-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|Zoltan/3.901-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|Zoltan version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.901|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Zoltan/3.901-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/absl-py.md b/docs/available_software/detail/absl-py.md new file mode 100644 index 0000000000..167e6c45f4 --- /dev/null +++ b/docs/available_software/detail/absl-py.md @@ -0,0 +1,58 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'absl-py is a collection of Python library code for building Python + + applications. The code is collected from Google''s own Python code base, and has + + been extensively tested and used in production.' + license: Not confirmed + name: absl-py + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.1.0'']' + url: https://github.com/abseil/abseil-py +--- +# absl-py + + +absl-py is a collection of Python library code for building Python +applications. The code is collected from Google's own Python code base, and has +been extensively tested and used in production. + +homepage: [https://github.com/abseil/abseil-py](https://github.com/abseil/abseil-py) + +## Available installations + + +|absl-py version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`absl-py/2.1.0-GCCcore-13.3.0`| + +## Extensions + +Overview of extensions included in absl-py installations + + +### absl-py + + +|`absl-py` version|absl-py modules that include it| +| --- | --- | +|2.1.0|`absl-py/2.1.0-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/acpype.md b/docs/available_software/detail/acpype.md index ebcad092e6..ea3f98cbc7 100644 --- a/docs/available_software/detail/acpype.md +++ b/docs/available_software/detail/acpype.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A tool based in Python to use Antechamber to generate topologies for - chemical compounds andto interface with others python applications like CCPN and - ARIA. + description: 'A tool based in Python to use Antechamber to generate topologies for + chemical compounds and + + to interface with others python applications like CCPN and ARIA.' license: Not confirmed name: acpype offers: @@ -26,37 +25,32 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''acpype/2023.10.27-foss-2023a'']' + softwareVersion: '[''2023.10.27'']' url: https://github.com/alanwilter/acpype --- +# acpype -acpype -====== - - -A tool based in Python to use Antechamber to generate topologies for chemical compounds andto interface with others python applications like CCPN and ARIA. -https://github.com/alanwilter/acpype -# Available modules +A tool based in Python to use Antechamber to generate topologies for chemical compounds and +to interface with others python applications like CCPN and ARIA. +homepage: [https://github.com/alanwilter/acpype](https://github.com/alanwilter/acpype) -The overview below shows which acpype installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using acpype, load one of these modules using a `module load` command like: -```shell -module load acpype/2023.10.27-foss-2023a -``` +|acpype version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2023.10.27|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`acpype/2023.10.27-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|acpype/2023.10.27-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in acpype installations -### acpype/2023.10.27-foss-2023a +### acpype -This is a list of extensions included in the module: -acpype-2023.10.27 \ No newline at end of file +|`acpype` version|acpype modules that include it| +| --- | --- | +|2023.10.27|`acpype/2023.10.27-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/aiida-core.md b/docs/available_software/detail/aiida-core.md index 50667ee925..d0cbb08153 100644 --- a/docs/available_software/detail/aiida-core.md +++ b/docs/available_software/detail/aiida-core.md @@ -1,14 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Bundle of Python packages required to run AiiDA.An open-source Python - infrastructure to help researchers with automating, managing, persisting,sharing - and reproducing the complex workflows associated with modern computational science - and all associated data. + description: 'Bundle of Python packages required to run AiiDA. + + An open-source Python infrastructure to help researchers with automating, managing, + persisting, + + sharing and reproducing the complex workflows associated with modern computational + science and all associated data. + + ' license: Not confirmed name: aiida-core offers: @@ -27,37 +30,160 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''aiida-core/2.7.2-foss-2023a'']' + softwareVersion: '[''2.7.2'']' url: https://www.aiida.net/ --- +# aiida-core + + +Bundle of Python packages required to run AiiDA. +An open-source Python infrastructure to help researchers with automating, managing, persisting, +sharing and reproducing the complex workflows associated with modern computational science and all associated data. + + +homepage: [https://www.aiida.net/](https://www.aiida.net/) + +## Available installations + + +|aiida-core version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`aiida-core/2.7.2-foss-2023a`| + +## Extensions + +Overview of extensions included in aiida-core installations + + +### aiida-core + + +|`aiida-core` version|aiida-core modules that include it| +| --- | --- | +|2.7.2|`aiida-core/2.7.2-foss-2023a`| + +### aniso8601 + + +|`aniso8601` version|aiida-core modules that include it| +| --- | --- | +|10.0.1|`aiida-core/2.7.2-foss-2023a`| + +### archive-path + + +|`archive-path` version|aiida-core modules that include it| +| --- | --- | +|0.4.2|`aiida-core/2.7.2-foss-2023a`| + +### asyncssh + + +|`asyncssh` version|aiida-core modules that include it| +| --- | --- | +|2.19.0|`aiida-core/2.7.2-foss-2023a`| + +### circus + + +|`circus` version|aiida-core modules that include it| +| --- | --- | +|0.19.0|`aiida-core/2.7.2-foss-2023a`| + +### click-spinner + + +|`click-spinner` version|aiida-core modules that include it| +| --- | --- | +|0.1.10|`aiida-core/2.7.2-foss-2023a`| + +### disk_objectstore + + +|`disk_objectstore` version|aiida-core modules that include it| +| --- | --- | +|1.3.0|`aiida-core/2.7.2-foss-2023a`| + +### docstring_parser + + +|`docstring_parser` version|aiida-core modules that include it| +| --- | --- | +|0.16|`aiida-core/2.7.2-foss-2023a`| + +### Flask-RESTful + + +|`Flask-RESTful` version|aiida-core modules that include it| +| --- | --- | +|0.3.10|`aiida-core/2.7.2-foss-2023a`| + +### graphviz + + +|`graphviz` version|aiida-core modules that include it| +| --- | --- | +|0.20.3|`aiida-core/2.7.2-foss-2023a`| + +### pgsu + + +|`pgsu` version|aiida-core modules that include it| +| --- | --- | +|0.3.0|`aiida-core/2.7.2-foss-2023a`| + +### PyCifRW + + +|`PyCifRW` version|aiida-core modules that include it| +| --- | --- | +|4.4.6|`aiida-core/2.7.2-foss-2023a`| + +### PyMySQL + + +|`PyMySQL` version|aiida-core modules that include it| +| --- | --- | +|0.9.3|`aiida-core/2.7.2-foss-2023a`| + +### pyparsing + + +|`pyparsing` version|aiida-core modules that include it| +| --- | --- | +|3.1.0|`aiida-core/2.7.2-foss-2023a`| + +### python-memcached -aiida-core -========== +|`python-memcached` version|aiida-core modules that include it| +| --- | --- | +|1.62|`aiida-core/2.7.2-foss-2023a`| -Bundle of Python packages required to run AiiDA.An open-source Python infrastructure to help researchers with automating, managing, persisting,sharing and reproducing the complex workflows associated with modern computational science and all associated data. +### pytray -https://www.aiida.net/ -# Available modules +|`pytray` version|aiida-core modules that include it| +| --- | --- | +|0.3.4|`aiida-core/2.7.2-foss-2023a`| -The overview below shows which aiida-core installations are available per target architecture in EESSI, ordered based on software version (new to old). +### seekpath -To start using aiida-core, load one of these modules using a `module load` command like: -```shell -module load aiida-core/2.7.2-foss-2023a -``` +|`seekpath` version|aiida-core modules that include it| +| --- | --- | +|2.1.0|`aiida-core/2.7.2-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### tqdm -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|aiida-core/2.7.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`tqdm` version|aiida-core modules that include it| +| --- | --- | +|4.67.1|`aiida-core/2.7.2-foss-2023a`| -### aiida-core/2.7.2-foss-2023a +### upf-to-json -This is a list of extensions included in the module: -aiida-core-2.7.2, aniso8601-10.0.1, archive-path-0.4.2, asyncssh-2.19.0, circus-0.19.0, click-spinner-0.1.10, disk_objectstore-1.3.0, docstring_parser-0.16, Flask-RESTful-0.3.10, graphviz-0.20.3, pgsu-0.3.0, PyCifRW-4.4.6, PyMySQL-0.9.3, pyparsing-3.1.0, python-memcached-1.62, pytray-0.3.4, seekpath-2.1.0, tqdm-4.67.1, upf-to-json-0.9.5 \ No newline at end of file +|`upf-to-json` version|aiida-core modules that include it| +| --- | --- | +|0.9.5|`aiida-core/2.7.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/aiida-shell.md b/docs/available_software/detail/aiida-shell.md index dfe5297975..38c4390d94 100644 --- a/docs/available_software/detail/aiida-shell.md +++ b/docs/available_software/detail/aiida-shell.md @@ -1,12 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: AiiDA plugin that makes running shell commands easy.Run any shell executable - without writing a dedicated plugin or parser. + description: 'AiiDA plugin that makes running shell commands easy. + + Run any shell executable without writing a dedicated plugin or parser. + + ' license: Not confirmed name: aiida-shell offers: @@ -25,37 +26,33 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''aiida-shell/0.8.2-foss-2023a'']' + softwareVersion: '[''0.8.2'']' url: https://aiida-shell.readthedocs.io/en/latest/ --- - -aiida-shell -=========== +# aiida-shell -AiiDA plugin that makes running shell commands easy.Run any shell executable without writing a dedicated plugin or parser. +AiiDA plugin that makes running shell commands easy. +Run any shell executable without writing a dedicated plugin or parser. -https://aiida-shell.readthedocs.io/en/latest/ -# Available modules +homepage: [https://aiida-shell.readthedocs.io/en/latest/](https://aiida-shell.readthedocs.io/en/latest/) -The overview below shows which aiida-shell installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using aiida-shell, load one of these modules using a `module load` command like: -```shell -module load aiida-shell/0.8.2-foss-2023a -``` +|aiida-shell version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`aiida-shell/0.8.2-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|aiida-shell/0.8.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in aiida-shell installations -### aiida-shell/0.8.2-foss-2023a +### aiida-shell -This is a list of extensions included in the module: -aiida-shell-0.8.2 \ No newline at end of file +|`aiida-shell` version|aiida-shell modules that include it| +| --- | --- | +|0.8.2|`aiida-shell/0.8.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/aiohttp.md b/docs/available_software/detail/aiohttp.md index dbe9e4c485..7909e7c50d 100644 --- a/docs/available_software/detail/aiohttp.md +++ b/docs/available_software/detail/aiohttp.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,85 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''aiohttp/3.8.5-GCCcore-12.3.0'']' + softwareVersion: '[''3.9.5'', ''3.8.5'']' url: https://github.com/aio-libs/aiohttp --- - -aiohttp -======= +# aiohttp Asynchronous HTTP client/server framework for asyncio and Python. -https://github.com/aio-libs/aiohttp -# Available modules +homepage: [https://github.com/aio-libs/aiohttp](https://github.com/aio-libs/aiohttp) + +## Available installations + + +|aiohttp version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.9.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`aiohttp/3.9.5-GCCcore-13.2.0`| +|3.8.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`aiohttp/3.8.5-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in aiohttp installations + + +### aiohappyeyeballs + + +|`aiohappyeyeballs` version|aiohttp modules that include it| +| --- | --- | +|2.3.2|`aiohttp/3.9.5-GCCcore-13.2.0`| + +### aiohttp + + +|`aiohttp` version|aiohttp modules that include it| +| --- | --- | +|3.9.5|`aiohttp/3.9.5-GCCcore-13.2.0`| +|3.8.5|`aiohttp/3.8.5-GCCcore-12.3.0`| + +### aiosignal + + +|`aiosignal` version|aiohttp modules that include it| +| --- | --- | +|1.3.1|`aiohttp/3.9.5-GCCcore-13.2.0`
`aiohttp/3.8.5-GCCcore-12.3.0`| + +### async-timeout + + +|`async-timeout` version|aiohttp modules that include it| +| --- | --- | +|4.0.3|`aiohttp/3.9.5-GCCcore-13.2.0`
`aiohttp/3.8.5-GCCcore-12.3.0`| + +### expandvars + +|`expandvars` version|aiohttp modules that include it| +| --- | --- | +|0.12.0|`aiohttp/3.9.5-GCCcore-13.2.0`| -The overview below shows which aiohttp installations are available per target architecture in EESSI, ordered based on software version (new to old). +### frozenlist -To start using aiohttp, load one of these modules using a `module load` command like: -```shell -module load aiohttp/3.8.5-GCCcore-12.3.0 -``` +|`frozenlist` version|aiohttp modules that include it| +| --- | --- | +|1.4.1|`aiohttp/3.9.5-GCCcore-13.2.0`| +|1.4.0|`aiohttp/3.8.5-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### multidict -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|aiohttp/3.8.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`multidict` version|aiohttp modules that include it| +| --- | --- | +|6.0.5|`aiohttp/3.9.5-GCCcore-13.2.0`| +|6.0.4|`aiohttp/3.8.5-GCCcore-12.3.0`| -### aiohttp/3.8.5-GCCcore-12.3.0 +### yarl -This is a list of extensions included in the module: -aiohttp-3.8.5, aiosignal-1.3.1, async-timeout-4.0.3, frozenlist-1.4.0, multidict-6.0.4, yarl-1.9.2 \ No newline at end of file +|`yarl` version|aiohttp modules that include it| +| --- | --- | +|1.9.4|`aiohttp/3.9.5-GCCcore-13.2.0`| +|1.9.2|`aiohttp/3.8.5-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/alsa-lib.md b/docs/available_software/detail/alsa-lib.md new file mode 100644 index 0000000000..96ecc5ede3 --- /dev/null +++ b/docs/available_software/detail/alsa-lib.md @@ -0,0 +1,42 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI\ + \ functionality\n to the Linux operating system." + license: Not confirmed + name: alsa-lib + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.2.14'']' + url: https://www.alsa-project.org +--- +# alsa-lib + + +The Advanced Linux Sound Architecture (ALSA) provides audio and MIDI functionality + to the Linux operating system. + +homepage: [https://www.alsa-project.org](https://www.alsa-project.org) + +## Available installations + + +|alsa-lib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`alsa-lib/1.2.14-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/amdahl.md b/docs/available_software/detail/amdahl.md index c3b7ba928e..fac4dc78ac 100644 --- a/docs/available_software/detail/amdahl.md +++ b/docs/available_software/detail/amdahl.md @@ -1,13 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: This Python module contains a pseudo-application that can be used as - a blackbox to reproduce Amdahl's Law. It does not do real calculations, nor any - realcommunication, so can easily be overloaded. + description: 'This Python module contains a pseudo-application that can be used + as a black + + box to reproduce Amdahl''s Law. It does not do real calculations, nor any real + + communication, so can easily be overloaded. + + ' license: Not confirmed name: amdahl offers: @@ -26,30 +29,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''amdahl/0.3.1-gompi-2023a'']' + softwareVersion: '[''0.4.1'', ''0.3.1'']' url: https://github.com/hpc-carpentry/amdahl --- +# amdahl -amdahl -====== - - -This Python module contains a pseudo-application that can be used as a blackbox to reproduce Amdahl's Law. It does not do real calculations, nor any realcommunication, so can easily be overloaded. - -https://github.com/hpc-carpentry/amdahl -# Available modules +This Python module contains a pseudo-application that can be used as a black +box to reproduce Amdahl's Law. It does not do real calculations, nor any real +communication, so can easily be overloaded. -The overview below shows which amdahl installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using amdahl, load one of these modules using a `module load` command like: +homepage: [https://github.com/hpc-carpentry/amdahl](https://github.com/hpc-carpentry/amdahl) -```shell -module load amdahl/0.3.1-gompi-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|amdahl/0.3.1-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|amdahl version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`amdahl/0.4.1-gompi-2025b`| +|0.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`amdahl/0.3.1-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/anndata.md b/docs/available_software/detail/anndata.md index 86abf399a8..daa717cdac 100644 --- a/docs/available_software/detail/anndata.md +++ b/docs/available_software/detail/anndata.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: anndata is a Python package for handling annotated data matrices in - memory and on disk, positioned between pandas and xarray + description: "anndata is a Python package for handling annotated data matrices in\ + \ memory and on disk,\n positioned between pandas and xarray" license: Not confirmed name: anndata offers: @@ -25,37 +23,53 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''anndata/0.10.5.post1-foss-2023a'']' + softwareVersion: '[''0.10.5.post1'']' url: https://github.com/scverse/anndata --- +# anndata -anndata -======= +anndata is a Python package for handling annotated data matrices in memory and on disk, + positioned between pandas and xarray -anndata is a Python package for handling annotated data matrices in memory and on disk, positioned between pandas and xarray +homepage: [https://github.com/scverse/anndata](https://github.com/scverse/anndata) -https://github.com/scverse/anndata -# Available modules +## Available installations -The overview below shows which anndata installations are available per target architecture in EESSI, ordered based on software version (new to old). +|anndata version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.10.5.post1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`anndata/0.10.5.post1-foss-2023a`| -To start using anndata, load one of these modules using a `module load` command like: +## Extensions -```shell -module load anndata/0.10.5.post1-foss-2023a -``` +Overview of extensions included in anndata installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|anndata/0.10.5.post1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### anndata -### anndata/0.10.5.post1-foss-2023a +|`anndata` version|anndata modules that include it| +| --- | --- | +|0.10.5.post1|`anndata/0.10.5.post1-foss-2023a`| -This is a list of extensions included in the module: +### array_api_compat -anndata-0.10.5.post1, array_api_compat-1.4.1, natsort-8.4.0, packaging-23.2 \ No newline at end of file + +|`array_api_compat` version|anndata modules that include it| +| --- | --- | +|1.4.1|`anndata/0.10.5.post1-foss-2023a`| + +### natsort + + +|`natsort` version|anndata modules that include it| +| --- | --- | +|8.4.0|`anndata/0.10.5.post1-foss-2023a`| + +### packaging + + +|`packaging` version|anndata modules that include it| +| --- | --- | +|23.2|`anndata/0.10.5.post1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ant.md b/docs/available_software/detail/ant.md index 2619199044..1810e46ac8 100644 --- a/docs/available_software/detail/ant.md +++ b/docs/available_software/detail/ant.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Apache Ant is a Java library and command-line tool whose mission is - to drive processes described in build files as targets and extension points dependent - upon each other. The main known usage of Ant is the build of Java applications. + description: "Apache Ant is a Java library and command-line tool whose mission is\ + \ to drive processes described in\n build files as targets and extension points\ + \ dependent upon each other. The main known usage of Ant is the build of\n Java\ + \ applications." license: Not confirmed name: ant offers: @@ -26,30 +25,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ant/1.10.14-Java-11'']' + softwareVersion: '[''1.10.14'', ''1.10.12'']' url: https://ant.apache.org/ --- +# ant -ant -=== +Apache Ant is a Java library and command-line tool whose mission is to drive processes described in + build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of + Java applications. -Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications. +homepage: [https://ant.apache.org/](https://ant.apache.org/) -https://ant.apache.org/ -# Available modules +## Available installations -The overview below shows which ant installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ant, load one of these modules using a `module load` command like: - -```shell -module load ant/1.10.14-Java-11 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ant/1.10.14-Java-11|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ant version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.10.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ant/1.10.14-Java-11`| +|1.10.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ant/1.10.12-Java-17`| \ No newline at end of file diff --git a/docs/available_software/detail/archspec.md b/docs/available_software/detail/archspec.md index 0eeee08411..4f5fdc20fc 100644 --- a/docs/available_software/detail/archspec.md +++ b/docs/available_software/detail/archspec.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''archspec/0.2.1-GCCcore-12.3.0'', ''archspec/0.2.2-GCCcore-13.2.0'', - ''archspec/0.2.5-GCCcore-12.3.0'']' + softwareVersion: '[''0.2.5'', ''0.2.2'', ''0.2.1'']' url: https://github.com/archspec/archspec --- - -archspec -======== +# archspec A library for detecting, labeling, and reasoning about microarchitectures -https://github.com/archspec/archspec -# Available modules - - -The overview below shows which archspec installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using archspec, load one of these modules using a `module load` command like: +homepage: [https://github.com/archspec/archspec](https://github.com/archspec/archspec) -```shell -module load archspec/0.2.5-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|archspec/0.2.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|archspec/0.2.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|archspec/0.2.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|archspec version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`archspec/0.2.5-GCCcore-13.3.0`| +|0.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`archspec/0.2.5-GCCcore-12.3.0`| +|0.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`archspec/0.2.2-GCCcore-13.2.0`| +|0.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`archspec/0.2.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/arpack-ng.md b/docs/available_software/detail/arpack-ng.md index afae30e04a..ebfbff03a3 100644 --- a/docs/available_software/detail/arpack-ng.md +++ b/docs/available_software/detail/arpack-ng.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''arpack-ng/3.8.0-foss-2022b'', ''arpack-ng/3.9.0-foss-2023a'', - ''arpack-ng/3.9.0-foss-2023b'']' + softwareVersion: '[''3.9.1'', ''3.9.0'', ''3.8.0'']' url: https://github.com/opencollab/arpack-ng --- - -arpack-ng -========= +# arpack-ng ARPACK is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. -https://github.com/opencollab/arpack-ng -# Available modules - - -The overview below shows which arpack-ng installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using arpack-ng, load one of these modules using a `module load` command like: +homepage: [https://github.com/opencollab/arpack-ng](https://github.com/opencollab/arpack-ng) -```shell -module load arpack-ng/3.9.0-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|arpack-ng/3.9.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|arpack-ng/3.9.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|arpack-ng/3.8.0-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|arpack-ng version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`arpack-ng/3.9.1-foss-2025b`| +|3.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`arpack-ng/3.9.1-foss-2024a`| +|3.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`arpack-ng/3.9.0-foss-2023b`| +|3.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`arpack-ng/3.9.0-foss-2023a`| +|3.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`arpack-ng/3.8.0-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/arrow-R.md b/docs/available_software/detail/arrow-R.md index 10f4e75da4..fa60f37b55 100644 --- a/docs/available_software/detail/arrow-R.md +++ b/docs/available_software/detail/arrow-R.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''arrow-R/11.0.0.3-foss-2022b-R-4.2.2'', ''arrow-R/14.0.1-foss-2023a-R-4.3.2'']' + softwareVersion: '[''17.0.0.1'', ''14.0.1'', ''11.0.0.3'']' url: https://cran.r-project.org/web/packages/arrow --- - -arrow-R -======= +# arrow-R R interface to the Apache Arrow C++ library -https://cran.r-project.org/web/packages/arrow -# Available modules - - -The overview below shows which arrow-R installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using arrow-R, load one of these modules using a `module load` command like: +homepage: [https://cran.r-project.org/web/packages/arrow](https://cran.r-project.org/web/packages/arrow) -```shell -module load arrow-R/14.0.1-foss-2023a-R-4.3.2 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|arrow-R/14.0.1-foss-2023a-R-4.3.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|arrow-R/11.0.0.3-foss-2022b-R-4.2.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|arrow-R version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|17.0.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`arrow-R/17.0.0.1-foss-2024a-R-4.4.2`| +|14.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`arrow-R/14.0.1-foss-2023a-R-4.3.2`| +|11.0.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`arrow-R/11.0.0.3-foss-2022b-R-4.2.2`| \ No newline at end of file diff --git a/docs/available_software/detail/assimp.md b/docs/available_software/detail/assimp.md new file mode 100644 index 0000000000..4f764dc3b8 --- /dev/null +++ b/docs/available_software/detail/assimp.md @@ -0,0 +1,47 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "\n Open Asset Import Library (assimp) is a library to import and export\ + \ various\n 3d-model-formats including scene-post-processing to generate missing\ + \ render data.\n" + license: Not confirmed + name: assimp + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''6.0.2'', ''5.4.3'']' + url: https://github.com/assimp/assimp +--- +# assimp + + + + Open Asset Import Library (assimp) is a library to import and export various + 3d-model-formats including scene-post-processing to generate missing render data. + + +homepage: [https://github.com/assimp/assimp](https://github.com/assimp/assimp) + +## Available installations + + +|assimp version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`assimp/6.0.2-GCCcore-14.3.0`| +|6.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`assimp/6.0.2-GCCcore-14.2.0`| +|5.4.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`assimp/5.4.3-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/astropy-testing.md b/docs/available_software/detail/astropy-testing.md index 46aec031d3..82d2ed3810 100644 --- a/docs/available_software/detail/astropy-testing.md +++ b/docs/available_software/detail/astropy-testing.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,37 +23,80 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''astropy-testing/7.0.0-gfbf-2023b'']' + softwareVersion: '[''7.0.0'']' url: https://www.astropy.org/ --- - -astropy-testing -=============== +# astropy-testing This bundle contains all dependencies needed to test astropy using pytest. -https://www.astropy.org/ -# Available modules +homepage: [https://www.astropy.org/](https://www.astropy.org/) + +## Available installations + + +|astropy-testing version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`astropy-testing/7.0.0-gfbf-2023b`| + +## Extensions + +Overview of extensions included in astropy-testing installations + + +### pytest-arraydiff + + +|`pytest-arraydiff` version|astropy-testing modules that include it| +| --- | --- | +|0.6.1|`astropy-testing/7.0.0-gfbf-2023b`| + +### pytest-astropy + + +|`pytest-astropy` version|astropy-testing modules that include it| +| --- | --- | +|0.11.0|`astropy-testing/7.0.0-gfbf-2023b`| + +### pytest-astropy-header + + +|`pytest-astropy-header` version|astropy-testing modules that include it| +| --- | --- | +|0.2.2|`astropy-testing/7.0.0-gfbf-2023b`| + +### pytest-cov + + +|`pytest-cov` version|astropy-testing modules that include it| +| --- | --- | +|5.0.0|`astropy-testing/7.0.0-gfbf-2023b`| + +### pytest-doctestplus + +|`pytest-doctestplus` version|astropy-testing modules that include it| +| --- | --- | +|1.3.0|`astropy-testing/7.0.0-gfbf-2023b`| -The overview below shows which astropy-testing installations are available per target architecture in EESSI, ordered based on software version (new to old). +### pytest-filter-subpackage -To start using astropy-testing, load one of these modules using a `module load` command like: -```shell -module load astropy-testing/7.0.0-gfbf-2023b -``` +|`pytest-filter-subpackage` version|astropy-testing modules that include it| +| --- | --- | +|0.2.0|`astropy-testing/7.0.0-gfbf-2023b`| -*(This data was automatically generated on {{ generated_time }})* +### pytest-mock -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|astropy-testing/7.0.0-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`pytest-mock` version|astropy-testing modules that include it| +| --- | --- | +|3.14.0|`astropy-testing/7.0.0-gfbf-2023b`| -### astropy-testing/7.0.0-gfbf-2023b +### pytest-remotedata -This is a list of extensions included in the module: -pytest-arraydiff-0.6.1, pytest-astropy-0.11.0, pytest-astropy-header-0.2.2, pytest-cov-5.0.0, pytest-doctestplus-1.3.0, pytest-filter-subpackage-0.2.0, pytest-mock-3.14.0, pytest-remotedata-0.4.1 \ No newline at end of file +|`pytest-remotedata` version|astropy-testing modules that include it| +| --- | --- | +|0.4.1|`astropy-testing/7.0.0-gfbf-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/astropy.md b/docs/available_software/detail/astropy.md index 1c76b3fbfa..3b6a3ef726 100644 --- a/docs/available_software/detail/astropy.md +++ b/docs/available_software/detail/astropy.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Astropy Project is a community effort to develop a common core - package for Astronomy in Python and foster an ecosystem of interoperable astronomy - packages.The Astropy community is committed to supporting diversity and inclusion. + description: "The Astropy Project is a community effort to develop a common \ncore\ + \ package for Astronomy in Python and foster an ecosystem of interoperable \n\ + astronomy packages.\n\nThe Astropy community is committed to supporting diversity\ + \ and inclusion." license: Not confirmed name: astropy offers: @@ -26,37 +25,63 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''astropy/7.0.0-gfbf-2023b'']' + softwareVersion: '[''7.0.0'']' url: https://www.astropy.org/ --- +# astropy -astropy -======= +The Astropy Project is a community effort to develop a common +core package for Astronomy in Python and foster an ecosystem of interoperable +astronomy packages. -The Astropy Project is a community effort to develop a common core package for Astronomy in Python and foster an ecosystem of interoperable astronomy packages.The Astropy community is committed to supporting diversity and inclusion. +The Astropy community is committed to supporting diversity and inclusion. -https://www.astropy.org/ -# Available modules +homepage: [https://www.astropy.org/](https://www.astropy.org/) +## Available installations -The overview below shows which astropy installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using astropy, load one of these modules using a `module load` command like: +|astropy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`astropy/7.0.0-gfbf-2023b`| -```shell -module load astropy/7.0.0-gfbf-2023b -``` +## Extensions -*(This data was automatically generated on {{ generated_time }})* +Overview of extensions included in astropy installations -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|astropy/7.0.0-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### astropy -### astropy/7.0.0-gfbf-2023b -This is a list of extensions included in the module: +|`astropy` version|astropy modules that include it| +| --- | --- | +|7.0.0|`astropy/7.0.0-gfbf-2023b`| -astropy-7.0.0, astropy-iers-data-0.2025.1.6.0.33.42, colorlog-6.9.0, extension-helpers-1.2.0, pyerfa-2.0.1.5 \ No newline at end of file +### astropy-iers-data + + +|`astropy-iers-data` version|astropy modules that include it| +| --- | --- | +|0.2025.1.6.0.33.42|`astropy/7.0.0-gfbf-2023b`| + +### colorlog + + +|`colorlog` version|astropy modules that include it| +| --- | --- | +|6.9.0|`astropy/7.0.0-gfbf-2023b`| + +### extension-helpers + + +|`extension-helpers` version|astropy modules that include it| +| --- | --- | +|1.2.0|`astropy/7.0.0-gfbf-2023b`| + +### pyerfa + + +|`pyerfa` version|astropy modules that include it| +| --- | --- | +|2.0.1.5|`astropy/7.0.0-gfbf-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/at-spi2-atk.md b/docs/available_software/detail/at-spi2-atk.md index c62dc039b1..3e1230763d 100644 --- a/docs/available_software/detail/at-spi2-atk.md +++ b/docs/available_software/detail/at-spi2-atk.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''at-spi2-atk/2.38.0-GCCcore-12.2.0'', ''at-spi2-atk/2.38.0-GCCcore-12.3.0'', - ''at-spi2-atk/2.38.0-GCCcore-13.2.0'']' + softwareVersion: '[''2.38.0'']' url: https://wiki.gnome.org/Accessibility --- - -at-spi2-atk -=========== +# at-spi2-atk AT-SPI 2 toolkit bridge -https://wiki.gnome.org/Accessibility -# Available modules - - -The overview below shows which at-spi2-atk installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using at-spi2-atk, load one of these modules using a `module load` command like: +homepage: [https://wiki.gnome.org/Accessibility](https://wiki.gnome.org/Accessibility) -```shell -module load at-spi2-atk/2.38.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|at-spi2-atk/2.38.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|at-spi2-atk/2.38.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|at-spi2-atk/2.38.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|at-spi2-atk version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`at-spi2-atk/2.38.0-GCCcore-14.3.0`| +|2.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`at-spi2-atk/2.38.0-GCCcore-13.3.0`| +|2.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`at-spi2-atk/2.38.0-GCCcore-13.2.0`| +|2.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`at-spi2-atk/2.38.0-GCCcore-12.3.0`| +|2.38.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`at-spi2-atk/2.38.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/at-spi2-core.md b/docs/available_software/detail/at-spi2-core.md index 26503d0724..91b7b1a557 100644 --- a/docs/available_software/detail/at-spi2-core.md +++ b/docs/available_software/detail/at-spi2-core.md @@ -1,11 +1,9 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Assistive Technology Service Provider Interface. + description: "\n Assistive Technology Service Provider Interface.\n" license: Not confirmed name: at-spi2-core offers: @@ -24,33 +22,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''at-spi2-core/2.46.0-GCCcore-12.2.0'', ''at-spi2-core/2.49.91-GCCcore-12.3.0'', - ''at-spi2-core/2.50.0-GCCcore-13.2.0'']' + softwareVersion: '[''2.56.2'', ''2.54.0'', ''2.50.0'', ''2.49.91'', ''2.46.0'']' url: https://wiki.gnome.org/Accessibility --- +# at-spi2-core -at-spi2-core -============ -Assistive Technology Service Provider Interface. + Assistive Technology Service Provider Interface. -https://wiki.gnome.org/Accessibility -# Available modules +homepage: [https://wiki.gnome.org/Accessibility](https://wiki.gnome.org/Accessibility) -The overview below shows which at-spi2-core installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using at-spi2-core, load one of these modules using a `module load` command like: -```shell -module load at-spi2-core/2.50.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|at-spi2-core/2.50.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|at-spi2-core/2.49.91-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|at-spi2-core/2.46.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|at-spi2-core version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.56.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`at-spi2-core/2.56.2-GCCcore-14.3.0`| +|2.54.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`at-spi2-core/2.54.0-GCCcore-13.3.0`| +|2.50.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`at-spi2-core/2.50.0-GCCcore-13.2.0`| +|2.49.91|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`at-spi2-core/2.49.91-GCCcore-12.3.0`| +|2.46.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`at-spi2-core/2.46.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/attrdict3.md b/docs/available_software/detail/attrdict3.md index 1ce180b7f2..5562d5355b 100644 --- a/docs/available_software/detail/attrdict3.md +++ b/docs/available_software/detail/attrdict3.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: AttrDict is a Python library that provides mapping objects that allow - their elements to be accessed both as keys and as attributes. + description: "AttrDict is a Python library that provides mapping objects that allow\ + \ their elements\n to be accessed both as keys and as attributes." license: Not confirmed name: attrdict3 offers: @@ -25,37 +23,32 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''attrdict3/2.0.2-GCCcore-12.3.0'']' + softwareVersion: '[''2.0.2'']' url: https://github.com/pirofti/AttrDict3 --- +# attrdict3 -attrdict3 -========= +AttrDict is a Python library that provides mapping objects that allow their elements + to be accessed both as keys and as attributes. -AttrDict is a Python library that provides mapping objects that allow their elements to be accessed both as keys and as attributes. +homepage: [https://github.com/pirofti/AttrDict3](https://github.com/pirofti/AttrDict3) -https://github.com/pirofti/AttrDict3 -# Available modules +## Available installations -The overview below shows which attrdict3 installations are available per target architecture in EESSI, ordered based on software version (new to old). +|attrdict3 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`attrdict3/2.0.2-GCCcore-12.3.0`| -To start using attrdict3, load one of these modules using a `module load` command like: +## Extensions -```shell -module load attrdict3/2.0.2-GCCcore-12.3.0 -``` +Overview of extensions included in attrdict3 installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|attrdict3/2.0.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### attrdict3 -### attrdict3/2.0.2-GCCcore-12.3.0 - -This is a list of extensions included in the module: - -attrdict3-2.0.2 \ No newline at end of file +|`attrdict3` version|attrdict3 modules that include it| +| --- | --- | +|2.0.2|`attrdict3/2.0.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/basemap.md b/docs/available_software/detail/basemap.md index 3f11265bc5..43f93f32eb 100644 --- a/docs/available_software/detail/basemap.md +++ b/docs/available_software/detail/basemap.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The matplotlib basemap toolkit is a library for plotting 2D data on - maps in Python + description: "The matplotlib basemap toolkit is a library for plotting \n2D data\ + \ on maps in Python" license: Not confirmed name: basemap offers: @@ -25,37 +23,46 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''basemap/1.3.9-foss-2023a'']' + softwareVersion: '[''1.3.9'']' url: https://matplotlib.org/basemap/ --- +# basemap -basemap -======= +The matplotlib basemap toolkit is a library for plotting +2D data on maps in Python -The matplotlib basemap toolkit is a library for plotting 2D data on maps in Python +homepage: [https://matplotlib.org/basemap/](https://matplotlib.org/basemap/) -https://matplotlib.org/basemap/ -# Available modules +## Available installations -The overview below shows which basemap installations are available per target architecture in EESSI, ordered based on software version (new to old). +|basemap version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`basemap/1.3.9-foss-2023a`| -To start using basemap, load one of these modules using a `module load` command like: +## Extensions -```shell -module load basemap/1.3.9-foss-2023a -``` +Overview of extensions included in basemap installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|basemap/1.3.9-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### basemap -### basemap/1.3.9-foss-2023a +|`basemap` version|basemap modules that include it| +| --- | --- | +|1.3.9|`basemap/1.3.9-foss-2023a`| -This is a list of extensions included in the module: +### basemap_data -basemap-1.3.9, basemap_data-1.3.9, pyshp-2.3.1 \ No newline at end of file + +|`basemap_data` version|basemap modules that include it| +| --- | --- | +|1.3.9|`basemap/1.3.9-foss-2023a`| + +### pyshp + + +|`pyshp` version|basemap modules that include it| +| --- | --- | +|2.3.1|`basemap/1.3.9-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/bcgTree.md b/docs/available_software/detail/bcgTree.md index 68e93fbf5b..ce3b0996bb 100644 --- a/docs/available_software/detail/bcgTree.md +++ b/docs/available_software/detail/bcgTree.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''bcgTree/1.2.1-foss-2023a'']' + softwareVersion: '[''1.2.1'']' url: https://github.com/molbiodiv/bcgTree --- - -bcgTree -======= +# bcgTree Automatized phylogenetic tree building from bacterial core genomes. -https://github.com/molbiodiv/bcgTree -# Available modules - - -The overview below shows which bcgTree installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using bcgTree, load one of these modules using a `module load` command like: +homepage: [https://github.com/molbiodiv/bcgTree](https://github.com/molbiodiv/bcgTree) -```shell -module load bcgTree/1.2.1-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|bcgTree/1.2.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|bcgTree version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`bcgTree/1.2.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/bcrypt.md b/docs/available_software/detail/bcrypt.md index e2ae713bde..b578688a97 100644 --- a/docs/available_software/detail/bcrypt.md +++ b/docs/available_software/detail/bcrypt.md @@ -1,12 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Acceptable password hashing for your software and your servers (but - you shouldreally use argon2id or scrypt) + description: 'Acceptable password hashing for your software and your servers (but + you should + + really use argon2id or scrypt) + + ' license: Not confirmed name: bcrypt offers: @@ -25,30 +27,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''bcrypt/4.0.1-GCCcore-12.3.0'']' + softwareVersion: '[''4.0.1'']' url: https://github.com/pyca/bcrypt/ --- +# bcrypt -bcrypt -====== - - -Acceptable password hashing for your software and your servers (but you shouldreally use argon2id or scrypt) - -https://github.com/pyca/bcrypt/ -# Available modules +Acceptable password hashing for your software and your servers (but you should +really use argon2id or scrypt) -The overview below shows which bcrypt installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using bcrypt, load one of these modules using a `module load` command like: +homepage: [https://github.com/pyca/bcrypt/](https://github.com/pyca/bcrypt/) -```shell -module load bcrypt/4.0.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|bcrypt/4.0.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|bcrypt version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`bcrypt/4.0.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/beagle-lib.md b/docs/available_software/detail/beagle-lib.md index 0d7b7854d4..da0efbbfbe 100644 --- a/docs/available_software/detail/beagle-lib.md +++ b/docs/available_software/detail/beagle-lib.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: beagle-lib is a high-performance library that can perform the core - calculations at the heart of most Bayesian and Maximum Likelihood phylogenetics - packages. + description: "beagle-lib is a high-performance library that can perform the core\ + \ calculations at the heart of most\n Bayesian and Maximum Likelihood phylogenetics\ + \ packages." license: Not confirmed name: beagle-lib offers: @@ -26,30 +24,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''beagle-lib/4.0.1-GCC-12.3.0'']' + softwareVersion: '[''4.0.1'']' url: https://github.com/beagle-dev/beagle-lib --- +# beagle-lib -beagle-lib -========== +beagle-lib is a high-performance library that can perform the core calculations at the heart of most + Bayesian and Maximum Likelihood phylogenetics packages. -beagle-lib is a high-performance library that can perform the core calculations at the heart of most Bayesian and Maximum Likelihood phylogenetics packages. +homepage: [https://github.com/beagle-dev/beagle-lib](https://github.com/beagle-dev/beagle-lib) -https://github.com/beagle-dev/beagle-lib -# Available modules +## Available installations -The overview below shows which beagle-lib installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using beagle-lib, load one of these modules using a `module load` command like: - -```shell -module load beagle-lib/4.0.1-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|beagle-lib/4.0.1-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|beagle-lib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`beagle-lib/4.0.1-GCC-14.2.0`| +|4.0.1|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`beagle-lib/4.0.1-GCC-12.3.0-CUDA-12.1.1`| +|4.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`beagle-lib/4.0.1-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/biom-format.md b/docs/available_software/detail/biom-format.md index 826ff4fc01..a710a6789f 100644 --- a/docs/available_software/detail/biom-format.md +++ b/docs/available_software/detail/biom-format.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The BIOM file format (canonically pronounced biome) is designed to - be a general-use format for representing biological sample by observation contingency - tables. BIOM is a recognized standard for the Earth Microbiome Project and is - a Genomics Standards Consortium supported project. + description: "\nThe BIOM file format (canonically pronounced biome) is designed\ + \ to be\n a general-use format for representing biological sample by observation\n\ + \ contingency tables. BIOM is a recognized standard for the Earth Microbiome\n\ + \ Project and is a Genomics Standards Consortium supported project.\n" license: Not confirmed name: biom-format offers: @@ -27,30 +25,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''biom-format/2.1.15-foss-2023a'']' + softwareVersion: '[''2.1.17'', ''2.1.15'']' url: https://biom-format.org --- +# biom-format -biom-format -=========== -The BIOM file format (canonically pronounced biome) is designed to be a general-use format for representing biological sample by observation contingency tables. BIOM is a recognized standard for the Earth Microbiome Project and is a Genomics Standards Consortium supported project. +The BIOM file format (canonically pronounced biome) is designed to be + a general-use format for representing biological sample by observation + contingency tables. BIOM is a recognized standard for the Earth Microbiome + Project and is a Genomics Standards Consortium supported project. -https://biom-format.org -# Available modules +homepage: [https://biom-format.org](https://biom-format.org) -The overview below shows which biom-format installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using biom-format, load one of these modules using a `module load` command like: -```shell -module load biom-format/2.1.15-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|biom-format/2.1.15-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|biom-format version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`biom-format/2.1.17-foss-2025b`| +|2.1.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`biom-format/2.1.17-foss-2025a`| +|2.1.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`biom-format/2.1.15-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/bokeh.md b/docs/available_software/detail/bokeh.md index ed86a9c8b1..2e4d457fd3 100644 --- a/docs/available_software/detail/bokeh.md +++ b/docs/available_software/detail/bokeh.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,44 +22,68 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''bokeh/3.2.1-foss-2022b'', ''bokeh/3.2.2-foss-2023a'']' + softwareVersion: '[''3.7.3'', ''3.6.0'', ''3.2.2'', ''3.2.1'']' url: https://github.com/bokeh/bokeh --- - -bokeh -===== +# bokeh Statistical and novel interactive HTML plots for Python -https://github.com/bokeh/bokeh -# Available modules +homepage: [https://github.com/bokeh/bokeh](https://github.com/bokeh/bokeh) + +## Available installations + + +|bokeh version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.7.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`bokeh/3.7.3-gfbf-2025a`| +|3.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`bokeh/3.6.0-gfbf-2024a`| +|3.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`bokeh/3.2.2-foss-2023a`| +|3.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`bokeh/3.2.1-foss-2022b`| + +## Extensions + +Overview of extensions included in bokeh installations + + +### bokeh + +|`bokeh` version|bokeh modules that include it| +| --- | --- | +|3.7.3|`bokeh/3.7.3-gfbf-2025a`| +|3.6.0|`bokeh/3.6.0-gfbf-2024a`| +|3.2.2|`bokeh/3.2.2-foss-2023a`| +|3.2.1|`bokeh/3.2.1-foss-2022b`| -The overview below shows which bokeh installations are available per target architecture in EESSI, ordered based on software version (new to old). +### contourpy -To start using bokeh, load one of these modules using a `module load` command like: -```shell -module load bokeh/3.2.2-foss-2023a -``` +|`contourpy` version|bokeh modules that include it| +| --- | --- | +|1.2.1|`bokeh/3.6.0-gfbf-2024a`| +|1.0.7|`bokeh/3.2.2-foss-2023a`
`bokeh/3.2.1-foss-2022b`| -*(This data was automatically generated on {{ generated_time }})* +### narwhals -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|bokeh/3.2.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|bokeh/3.2.1-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`narwhals` version|bokeh modules that include it| +| --- | --- | +|2.0.1|`bokeh/3.7.3-gfbf-2025a`| -### bokeh/3.2.2-foss-2023a +### tornado -This is a list of extensions included in the module: -bokeh-3.2.2, contourpy-1.0.7, xyzservices-2023.7.0 +|`tornado` version|bokeh modules that include it| +| --- | --- | +|6.3.2|`bokeh/3.2.1-foss-2022b`| -### bokeh/3.2.1-foss-2022b +### xyzservices -This is a list of extensions included in the module: -bokeh-3.2.1, contourpy-1.0.7, tornado-6.3.2, xyzservices-2023.7.0 \ No newline at end of file +|`xyzservices` version|bokeh modules that include it| +| --- | --- | +|2025.4.0|`bokeh/3.7.3-gfbf-2025a`| +|2024.4.0|`bokeh/3.6.0-gfbf-2024a`| +|2023.7.0|`bokeh/3.2.2-foss-2023a`
`bokeh/3.2.1-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/boto3.md b/docs/available_software/detail/boto3.md index 997c1f3da5..3b8de41d86 100644 --- a/docs/available_software/detail/boto3.md +++ b/docs/available_software/detail/boto3.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Boto3 is the Amazon Web Services (AWS) Software Development Kit(SDK) - for Python, which allows Python developers to write software that makesuse of - services like Amazon S3 and Amazon EC2. + description: 'Boto3 is the Amazon Web Services (AWS) Software Development Kit + + (SDK) for Python, which allows Python developers to write software that makes + + use of services like Amazon S3 and Amazon EC2.' license: Not confirmed name: boto3 offers: @@ -26,37 +26,54 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''boto3/1.28.70-GCCcore-12.3.0'']' + softwareVersion: '[''1.28.70'']' url: https://github.com/boto/boto3 --- +# boto3 + + +Boto3 is the Amazon Web Services (AWS) Software Development Kit +(SDK) for Python, which allows Python developers to write software that makes +use of services like Amazon S3 and Amazon EC2. + +homepage: [https://github.com/boto/boto3](https://github.com/boto/boto3) + +## Available installations + + +|boto3 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.28.70|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`boto3/1.28.70-GCCcore-12.3.0`| + +## Extensions -boto3 -===== +Overview of extensions included in boto3 installations -Boto3 is the Amazon Web Services (AWS) Software Development Kit(SDK) for Python, which allows Python developers to write software that makesuse of services like Amazon S3 and Amazon EC2. +### boto3 -https://github.com/boto/boto3 -# Available modules +|`boto3` version|boto3 modules that include it| +| --- | --- | +|1.28.70|`boto3/1.28.70-GCCcore-12.3.0`| -The overview below shows which boto3 installations are available per target architecture in EESSI, ordered based on software version (new to old). +### botocore -To start using boto3, load one of these modules using a `module load` command like: -```shell -module load boto3/1.28.70-GCCcore-12.3.0 -``` +|`botocore` version|boto3 modules that include it| +| --- | --- | +|1.31.70|`boto3/1.28.70-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### jmespath -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|boto3/1.28.70-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`jmespath` version|boto3 modules that include it| +| --- | --- | +|1.0.1|`boto3/1.28.70-GCCcore-12.3.0`| -### boto3/1.28.70-GCCcore-12.3.0 +### s3transfer -This is a list of extensions included in the module: -boto3-1.28.70, botocore-1.31.70, jmespath-1.0.1, s3transfer-0.7.0 \ No newline at end of file +|`s3transfer` version|boto3 modules that include it| +| --- | --- | +|0.7.0|`boto3/1.28.70-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/build.md b/docs/available_software/detail/build.md index 60cc6f0701..d7118e2a0a 100644 --- a/docs/available_software/detail/build.md +++ b/docs/available_software/detail/build.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,52 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''build/1.0.3-GCCcore-12.3.0'']' + softwareVersion: '[''1.3.0'', ''1.2.2.post1'', ''1.0.3'']' url: https://github.com/pypa/build --- - -build -===== +# build A simple, correct Python build frontend. -https://github.com/pypa/build -# Available modules +homepage: [https://github.com/pypa/build](https://github.com/pypa/build) + +## Available installations + + +|build version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`build/1.3.0-GCCcore-14.3.0`| +|1.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`build/1.3.0-GCCcore-14.2.0`| +|1.2.2.post1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`build/1.2.2.post1-GCCcore-13.3.0`| +|1.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`build/1.0.3-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in build installations -The overview below shows which build installations are available per target architecture in EESSI, ordered based on software version (new to old). +### build -To start using build, load one of these modules using a `module load` command like: -```shell -module load build/1.0.3-GCCcore-12.3.0 -``` +|`build` version|build modules that include it| +| --- | --- | +|1.3.0|`build/1.3.0-GCCcore-14.3.0`
`build/1.3.0-GCCcore-14.2.0`| +|1.2.2.post1|`build/1.2.2.post1-GCCcore-13.3.0`| +|1.0.3|`build/1.0.3-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### packaging -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|build/1.0.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`packaging` version|build modules that include it| +| --- | --- | +|25.0|`build/1.3.0-GCCcore-14.3.0`
`build/1.3.0-GCCcore-14.2.0`| +|24.2|`build/1.2.2.post1-GCCcore-13.3.0`| -### build/1.0.3-GCCcore-12.3.0 +### pyproject_hooks -This is a list of extensions included in the module: -build-1.0.3, pyproject_hooks-1.0.0 \ No newline at end of file +|`pyproject_hooks` version|build modules that include it| +| --- | --- | +|1.2.0|`build/1.3.0-GCCcore-14.3.0`
`build/1.3.0-GCCcore-14.2.0`| +|1.0.0|`build/1.2.2.post1-GCCcore-13.3.0`
`build/1.0.3-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/buildenv.md b/docs/available_software/detail/buildenv.md index f00d196fd4..724a6481bc 100644 --- a/docs/available_software/detail/buildenv.md +++ b/docs/available_software/detail/buildenv.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'This module sets a group of environment variables for compilers, linkers, - maths libraries, etc., that you can use to easily transition between toolchains - when building your software. To query the variables being set please use: module - show ' + description: "This module sets a group of environment variables for compilers, linkers,\ + \ maths libraries, etc., that\n you can use to easily transition between toolchains\ + \ when building your software. To query the variables being set\n please use:\ + \ module show " license: Not confirmed name: buildenv offers: @@ -27,33 +25,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''buildenv/default-foss-2022b'', ''buildenv/default-foss-2023a'', - ''buildenv/default-foss-2023b'']' + softwareVersion: '[''default'']' url: None --- +# buildenv -buildenv -======== +This module sets a group of environment variables for compilers, linkers, maths libraries, etc., that + you can use to easily transition between toolchains when building your software. To query the variables being set + please use: module show -This module sets a group of environment variables for compilers, linkers, maths libraries, etc., that you can use to easily transition between toolchains when building your software. To query the variables being set please use: module show +homepage: [None](None) -None -# Available modules +## Available installations -The overview below shows which buildenv installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using buildenv, load one of these modules using a `module load` command like: - -```shell -module load buildenv/default-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|buildenv/default-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|buildenv/default-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|buildenv/default-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|buildenv version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|default|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`buildenv/default-foss-2025b`| +|default|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`buildenv/default-foss-2025a`| +|default|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`buildenv/default-foss-2024a`| +|default|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`buildenv/default-foss-2023b`| +|default|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`buildenv/default-foss-2023a`| +|default|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`buildenv/default-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/c-ares.md b/docs/available_software/detail/c-ares.md index c3edfe4820..3eac3f562b 100644 --- a/docs/available_software/detail/c-ares.md +++ b/docs/available_software/detail/c-ares.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''c-ares/1.19.1-GCCcore-12.3.0'']' + softwareVersion: '[''1.19.1'']' url: https://c-ares.org/ --- - -c-ares -====== +# c-ares c-ares is a C library for asynchronous DNS requests (including name resolves) -https://c-ares.org/ -# Available modules - - -The overview below shows which c-ares installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using c-ares, load one of these modules using a `module load` command like: +homepage: [https://c-ares.org/](https://c-ares.org/) -```shell -module load c-ares/1.19.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|c-ares/1.19.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|c-ares version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.19.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`c-ares/1.19.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/cURL.md b/docs/available_software/detail/cURL.md index 0d12cbe2fc..9a90c43845 100644 --- a/docs/available_software/detail/cURL.md +++ b/docs/available_software/detail/cURL.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: libcurl is a free and easy-to-use client-side URL transfer library, - supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, - POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports - SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, - proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, - Kerberos), file transfer resume, http proxy tunneling and more. + description: "\n libcurl is a free and easy-to-use client-side URL transfer library,\n\ + \ supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP,\n\ + \ LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP.\n libcurl\ + \ supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP\n form based\ + \ upload, proxies, cookies, user+password authentication (Basic,\n Digest, NTLM,\ + \ Negotiate, Kerberos), file transfer resume, http proxy tunneling\n and more.\n" license: Not confirmed name: cURL offers: @@ -29,33 +27,32 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''cURL/7.86.0-GCCcore-12.2.0'', ''cURL/8.0.1-GCCcore-12.3.0'', - ''cURL/8.3.0-GCCcore-13.2.0'']' + softwareVersion: '[''8.14.1'', ''8.11.1'', ''8.7.1'', ''8.3.0'', ''8.0.1'', ''7.86.0'']' url: https://curl.haxx.se --- +# cURL -cURL -==== -libcurl is a free and easy-to-use client-side URL transfer library, supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling and more. + libcurl is a free and easy-to-use client-side URL transfer library, + supporting DICT, FILE, FTP, FTPS, Gopher, HTTP, HTTPS, IMAP, IMAPS, LDAP, + LDAPS, POP3, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, SMTPS, Telnet and TFTP. + libcurl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP + form based upload, proxies, cookies, user+password authentication (Basic, + Digest, NTLM, Negotiate, Kerberos), file transfer resume, http proxy tunneling + and more. -https://curl.haxx.se -# Available modules +homepage: [https://curl.haxx.se](https://curl.haxx.se) -The overview below shows which cURL installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using cURL, load one of these modules using a `module load` command like: -```shell -module load cURL/8.3.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|cURL/8.3.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|cURL/8.0.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|cURL/7.86.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|cURL version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.14.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cURL/8.14.1-GCCcore-14.3.0`| +|8.11.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cURL/8.11.1-GCCcore-14.2.0`| +|8.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cURL/8.7.1-GCCcore-13.3.0`| +|8.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cURL/8.3.0-GCCcore-13.2.0`| +|8.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cURL/8.0.1-GCCcore-12.3.0`| +|7.86.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cURL/7.86.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/caddy.md b/docs/available_software/detail/caddy.md new file mode 100644 index 0000000000..42c9715de9 --- /dev/null +++ b/docs/available_software/detail/caddy.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Fast and extensible multi-platform HTTP/1-2-3 web server with automatic + HTTPS + license: Not confirmed + name: caddy + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.10.2'']' + url: https://caddyserver.com/ +--- +# caddy + + +Fast and extensible multi-platform HTTP/1-2-3 web server with automatic HTTPS + +homepage: [https://caddyserver.com/](https://caddyserver.com/) + +## Available installations + + +|caddy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.10.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`caddy/2.10.2`| \ No newline at end of file diff --git a/docs/available_software/detail/cairo.md b/docs/available_software/detail/cairo.md index 7a055ab9a0..6eeec84c83 100644 --- a/docs/available_software/detail/cairo.md +++ b/docs/available_software/detail/cairo.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Cairo is a 2D graphics library with support for multiple output devices. - Currently supported output targets include the X Window System (via both Xlib - and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG file output. - Experimental backends include OpenGL, BeOS, OS/2, and DirectFB + description: "Cairo is a 2D graphics library with support for multiple output devices.\n\ + \ Currently supported output targets include the X Window System (via both Xlib\ + \ and XCB), Quartz, Win32, image buffers,\n PostScript, PDF, and SVG file output.\ + \ Experimental backends include OpenGL, BeOS, OS/2, and DirectFB" license: Not confirmed name: cairo offers: @@ -27,33 +25,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''cairo/1.17.4-GCCcore-12.2.0'', ''cairo/1.17.8-GCCcore-12.3.0'', - ''cairo/1.18.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.18.4'', ''1.18.0'', ''1.17.8'', ''1.17.4'']' url: https://cairographics.org --- +# cairo -cairo -===== +Cairo is a 2D graphics library with support for multiple output devices. + Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers, + PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB -Cairo is a 2D graphics library with support for multiple output devices. Currently supported output targets include the X Window System (via both Xlib and XCB), Quartz, Win32, image buffers, PostScript, PDF, and SVG file output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB +homepage: [https://cairographics.org](https://cairographics.org) -https://cairographics.org -# Available modules +## Available installations -The overview below shows which cairo installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using cairo, load one of these modules using a `module load` command like: - -```shell -module load cairo/1.18.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|cairo/1.18.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|cairo/1.17.8-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|cairo/1.17.4-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|cairo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.18.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cairo/1.18.4-GCCcore-14.3.0`| +|1.18.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cairo/1.18.4-GCCcore-14.2.0`| +|1.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cairo/1.18.0-GCCcore-13.3.0`| +|1.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cairo/1.18.0-GCCcore-13.2.0`| +|1.17.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cairo/1.17.8-GCCcore-12.3.0`| +|1.17.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cairo/1.17.4-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/cargo-c.md b/docs/available_software/detail/cargo-c.md new file mode 100644 index 0000000000..0ba3d19d8e --- /dev/null +++ b/docs/available_software/detail/cargo-c.md @@ -0,0 +1,51 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Applet for cargo to build and install C-ABI compatible dynamic and + static + + libraries. It produces and installs a correct pkg-config file, a static library + + and a dynamic library, and a C header to be used by any C (and C-compatible) + + software.' + license: Not confirmed + name: cargo-c + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.10.15'', ''0.9.32'']' + url: https://github.com/lu-zero/cargo-c +--- +# cargo-c + + +Applet for cargo to build and install C-ABI compatible dynamic and static +libraries. It produces and installs a correct pkg-config file, a static library +and a dynamic library, and a C header to be used by any C (and C-compatible) +software. + +homepage: [https://github.com/lu-zero/cargo-c](https://github.com/lu-zero/cargo-c) + +## Available installations + + +|cargo-c version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.10.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cargo-c/0.10.15-GCCcore-14.3.0`| +|0.9.32|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cargo-c/0.9.32-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/casacore.md b/docs/available_software/detail/casacore.md index 91aa94f2af..6bef0e4813 100644 --- a/docs/available_software/detail/casacore.md +++ b/docs/available_software/detail/casacore.md @@ -1,13 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A suite of C++ libraries for radio astronomy data processing.The ephemerides - data needs to be in DATA_DIR and the location must be specified at runtime.Thus - user's can update them. + description: 'A suite of C++ libraries for radio astronomy data processing. + + The ephemerides data needs to be in DATA_DIR and the location must be specified + at runtime. + + Thus user''s can update them. + + ' license: Not confirmed name: casacore offers: @@ -26,30 +29,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''casacore/3.5.0-foss-2023b'']' + softwareVersion: '[''3.5.0'']' url: https://github.com/casacore/casacore --- +# casacore -casacore -======== - - -A suite of C++ libraries for radio astronomy data processing.The ephemerides data needs to be in DATA_DIR and the location must be specified at runtime.Thus user's can update them. - -https://github.com/casacore/casacore -# Available modules +A suite of C++ libraries for radio astronomy data processing. +The ephemerides data needs to be in DATA_DIR and the location must be specified at runtime. +Thus user's can update them. -The overview below shows which casacore installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using casacore, load one of these modules using a `module load` command like: +homepage: [https://github.com/casacore/casacore](https://github.com/casacore/casacore) -```shell -module load casacore/3.5.0-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|casacore/3.5.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|casacore version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`casacore/3.5.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/ccache.md b/docs/available_software/detail/ccache.md index 02f41ac0e6..1f54e1589b 100644 --- a/docs/available_software/detail/ccache.md +++ b/docs/available_software/detail/ccache.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication description: "Ccache (or \u201Cccache\u201D) is a compiler cache. It speeds up recompilation\ - \ bycaching previous compilations and detecting when the same compilation is being\ - \ done again" + \ by\ncaching previous compilations and detecting when the same compilation is\ + \ being done again" license: Not confirmed name: ccache offers: @@ -26,30 +24,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ccache/4.9-GCCcore-12.3.0'']' + softwareVersion: '[''4.9'']' url: https://ccache.dev/ --- +# ccache -ccache -====== +Ccache (or “ccache”) is a compiler cache. It speeds up recompilation by +caching previous compilations and detecting when the same compilation is being done again -Ccache (or “ccache”) is a compiler cache. It speeds up recompilation bycaching previous compilations and detecting when the same compilation is being done again +homepage: [https://ccache.dev/](https://ccache.dev/) -https://ccache.dev/ -# Available modules +## Available installations -The overview below shows which ccache installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ccache, load one of these modules using a `module load` command like: - -```shell -module load ccache/4.9-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ccache/4.9-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ccache version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ccache/4.9-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/cffi.md b/docs/available_software/detail/cffi.md index f04f3b2399..b389ddcb5a 100644 --- a/docs/available_software/detail/cffi.md +++ b/docs/available_software/detail/cffi.md @@ -1,13 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: C Foreign Function Interface for Python. Interact with almost any C - code fromPython, based on C-like declarations that you can often copy-paste from - headerfiles or documentation. + description: 'C Foreign Function Interface for Python. Interact with almost any + C code from + + Python, based on C-like declarations that you can often copy-paste from header + + files or documentation. + + ' license: Not confirmed name: cffi offers: @@ -26,44 +29,48 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''cffi/1.15.1-GCCcore-12.3.0'', ''cffi/1.15.1-GCCcore-13.2.0'']' + softwareVersion: '[''1.17.1'', ''1.16.0'', ''1.15.1'']' url: https://cffi.readthedocs.io/en/latest/ --- - -cffi -==== +# cffi -C Foreign Function Interface for Python. Interact with almost any C code fromPython, based on C-like declarations that you can often copy-paste from headerfiles or documentation. +C Foreign Function Interface for Python. Interact with almost any C code from +Python, based on C-like declarations that you can often copy-paste from header +files or documentation. -https://cffi.readthedocs.io/en/latest/ -# Available modules +homepage: [https://cffi.readthedocs.io/en/latest/](https://cffi.readthedocs.io/en/latest/) -The overview below shows which cffi installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using cffi, load one of these modules using a `module load` command like: -```shell -module load cffi/1.15.1-GCCcore-13.2.0 -``` +|cffi version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.17.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cffi/1.17.1-GCCcore-14.3.0`| +|1.17.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cffi/1.17.1-GCCcore-14.2.0`| +|1.16.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cffi/1.16.0-GCCcore-13.3.0`| +|1.15.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cffi/1.15.1-GCCcore-13.2.0`| +|1.15.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cffi/1.15.1-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|cffi/1.15.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|cffi/1.15.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in cffi installations -### cffi/1.15.1-GCCcore-13.2.0 +### cffi -This is a list of extensions included in the module: -cffi-1.15.1, pycparser-2.21 +|`cffi` version|cffi modules that include it| +| --- | --- | +|1.17.1|`cffi/1.17.1-GCCcore-14.3.0`
`cffi/1.17.1-GCCcore-14.2.0`| +|1.16.0|`cffi/1.16.0-GCCcore-13.3.0`| +|1.15.1|`cffi/1.15.1-GCCcore-13.2.0`
`cffi/1.15.1-GCCcore-12.3.0`| -### cffi/1.15.1-GCCcore-12.3.0 +### pycparser -This is a list of extensions included in the module: -cffi-1.15.1, pycparser-2.21 \ No newline at end of file +|`pycparser` version|cffi modules that include it| +| --- | --- | +|2.22|`cffi/1.17.1-GCCcore-14.3.0`
`cffi/1.17.1-GCCcore-14.2.0`
`cffi/1.16.0-GCCcore-13.3.0`| +|2.21|`cffi/1.15.1-GCCcore-13.2.0`
`cffi/1.15.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/cimfomfa.md b/docs/available_software/detail/cimfomfa.md index 16c7d02b65..4740812871 100644 --- a/docs/available_software/detail/cimfomfa.md +++ b/docs/available_software/detail/cimfomfa.md @@ -1,16 +1,20 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: This library supports both MCL, a cluster algorithm for graphs, and - zoem, amacro/DSL language. It supplies abstractions for memory management, I/O,associative - arrays, strings, heaps, and a few other things. The string libraryhas had heavy - testing as part of zoem. Both understandably and regrettably Ichose long ago to - make it C-string-compatible, hence nul bytes may not be partof a string. At some - point I hope to rectify this, perhaps unrealistically. + description: 'This library supports both MCL, a cluster algorithm for graphs, and + zoem, a + + macro/DSL language. It supplies abstractions for memory management, I/O, + + associative arrays, strings, heaps, and a few other things. The string library + + has had heavy testing as part of zoem. Both understandably and regrettably I + + chose long ago to make it C-string-compatible, hence nul bytes may not be part + + of a string. At some point I hope to rectify this, perhaps unrealistically.' license: Not confirmed name: cimfomfa offers: @@ -29,30 +33,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''cimfomfa/22.273-GCCcore-12.3.0'']' + softwareVersion: '[''22.273'']' url: https://github.com/micans/cimfomfa --- - -cimfomfa -======== - - -This library supports both MCL, a cluster algorithm for graphs, and zoem, amacro/DSL language. It supplies abstractions for memory management, I/O,associative arrays, strings, heaps, and a few other things. The string libraryhas had heavy testing as part of zoem. Both understandably and regrettably Ichose long ago to make it C-string-compatible, hence nul bytes may not be partof a string. At some point I hope to rectify this, perhaps unrealistically. - -https://github.com/micans/cimfomfa -# Available modules +# cimfomfa -The overview below shows which cimfomfa installations are available per target architecture in EESSI, ordered based on software version (new to old). +This library supports both MCL, a cluster algorithm for graphs, and zoem, a +macro/DSL language. It supplies abstractions for memory management, I/O, +associative arrays, strings, heaps, and a few other things. The string library +has had heavy testing as part of zoem. Both understandably and regrettably I +chose long ago to make it C-string-compatible, hence nul bytes may not be part +of a string. At some point I hope to rectify this, perhaps unrealistically. -To start using cimfomfa, load one of these modules using a `module load` command like: +homepage: [https://github.com/micans/cimfomfa](https://github.com/micans/cimfomfa) -```shell -module load cimfomfa/22.273-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|cimfomfa/22.273-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|cimfomfa version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|22.273|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cimfomfa/22.273-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/colorize.md b/docs/available_software/detail/colorize.md index 0ae02fe492..a54980a4f0 100644 --- a/docs/available_software/detail/colorize.md +++ b/docs/available_software/detail/colorize.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Ruby gem for colorizing text using ANSI escape sequences.Extends String - class or add a ColorizedString with methods to set the text color, background - color and text effects. + description: 'Ruby gem for colorizing text using ANSI escape sequences. + + Extends String class or add a ColorizedString with methods to set the text color, + background color and text effects.' license: Not confirmed name: colorize offers: @@ -26,30 +25,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''colorize/0.7.7-GCC-12.3.0'']' + softwareVersion: '[''0.7.7'']' url: https://github.com/fazibear/colorize --- - -colorize -======== - - -Ruby gem for colorizing text using ANSI escape sequences.Extends String class or add a ColorizedString with methods to set the text color, background color and text effects. - -https://github.com/fazibear/colorize -# Available modules +# colorize -The overview below shows which colorize installations are available per target architecture in EESSI, ordered based on software version (new to old). +Ruby gem for colorizing text using ANSI escape sequences. +Extends String class or add a ColorizedString with methods to set the text color, background color and text effects. -To start using colorize, load one of these modules using a `module load` command like: +homepage: [https://github.com/fazibear/colorize](https://github.com/fazibear/colorize) -```shell -module load colorize/0.7.7-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|colorize/0.7.7-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|colorize version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.7.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`colorize/0.7.7-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/cooler.md b/docs/available_software/detail/cooler.md index b979895ffa..7e33db3102 100644 --- a/docs/available_software/detail/cooler.md +++ b/docs/available_software/detail/cooler.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Cooler is a support library for a storage format, also called cooler, - used to store genomic interaction data of any size, such as Hi-C contact matrices. + description: "Cooler is a support library for a storage format, also called cooler,\ + \ used to store\n genomic interaction data of any size, such as Hi-C contact matrices." license: Not confirmed name: cooler offers: @@ -25,37 +23,53 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''cooler/0.10.2-foss-2023b'']' + softwareVersion: '[''0.10.2'']' url: https://open2c.github.io/cooler --- +# cooler -cooler -====== +Cooler is a support library for a storage format, also called cooler, used to store + genomic interaction data of any size, such as Hi-C contact matrices. -Cooler is a support library for a storage format, also called cooler, used to store genomic interaction data of any size, such as Hi-C contact matrices. +homepage: [https://open2c.github.io/cooler](https://open2c.github.io/cooler) -https://open2c.github.io/cooler -# Available modules +## Available installations -The overview below shows which cooler installations are available per target architecture in EESSI, ordered based on software version (new to old). +|cooler version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.10.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cooler/0.10.2-foss-2023b`| -To start using cooler, load one of these modules using a `module load` command like: +## Extensions -```shell -module load cooler/0.10.2-foss-2023b -``` +Overview of extensions included in cooler installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|cooler/0.10.2-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### asciitree -### cooler/0.10.2-foss-2023b +|`asciitree` version|cooler modules that include it| +| --- | --- | +|0.3.3|`cooler/0.10.2-foss-2023b`| -This is a list of extensions included in the module: +### cooler -asciitree-0.3.3, cooler-0.10.2, cytoolz-1.0.0, toolz-1.0.0 \ No newline at end of file + +|`cooler` version|cooler modules that include it| +| --- | --- | +|0.10.2|`cooler/0.10.2-foss-2023b`| + +### cytoolz + + +|`cytoolz` version|cooler modules that include it| +| --- | --- | +|1.0.0|`cooler/0.10.2-foss-2023b`| + +### toolz + + +|`toolz` version|cooler modules that include it| +| --- | --- | +|1.0.0|`cooler/0.10.2-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/coverage.md b/docs/available_software/detail/coverage.md index ceb4b71503..065d66c98d 100644 --- a/docs/available_software/detail/coverage.md +++ b/docs/available_software/detail/coverage.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Coverage.py is a tool for measuring code coverage of Python programs. - It monitors your program, noting which parts of the code have been executed, then - analyzes the source to identify code that could have been executed but was not. + description: " Coverage.py is a tool for measuring code coverage of Python programs.\n\ + \ It monitors your program, noting which parts of the code have been executed,\n\ + \ then analyzes the source to identify code that could have been executed but\ + \ was not. " license: Not confirmed name: coverage offers: @@ -26,37 +25,33 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''coverage/7.4.4-GCCcore-13.2.0'']' + softwareVersion: '[''7.4.4'']' url: https://coverage.readthedocs.io --- +# coverage -coverage -======== + Coverage.py is a tool for measuring code coverage of Python programs. + It monitors your program, noting which parts of the code have been executed, + then analyzes the source to identify code that could have been executed but was not. -Coverage.py is a tool for measuring code coverage of Python programs. It monitors your program, noting which parts of the code have been executed, then analyzes the source to identify code that could have been executed but was not. +homepage: [https://coverage.readthedocs.io](https://coverage.readthedocs.io) -https://coverage.readthedocs.io -# Available modules +## Available installations -The overview below shows which coverage installations are available per target architecture in EESSI, ordered based on software version (new to old). +|coverage version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`coverage/7.4.4-GCCcore-13.2.0`| -To start using coverage, load one of these modules using a `module load` command like: +## Extensions -```shell -module load coverage/7.4.4-GCCcore-13.2.0 -``` +Overview of extensions included in coverage installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|coverage/7.4.4-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### coverage -### coverage/7.4.4-GCCcore-13.2.0 - -This is a list of extensions included in the module: - -coverage-7.4.4 \ No newline at end of file +|`coverage` version|coverage modules that include it| +| --- | --- | +|7.4.4|`coverage/7.4.4-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/cpio.md b/docs/available_software/detail/cpio.md index d1a9dc11f0..abfb76606e 100644 --- a/docs/available_software/detail/cpio.md +++ b/docs/available_software/detail/cpio.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''cpio/2.15-GCCcore-12.2.0'', ''cpio/2.15-GCCcore-12.3.0'']' + softwareVersion: '[''2.15'']' url: https://savannah.gnu.org/projects/cpio/ --- - -cpio -==== +# cpio The cpio package contains tools for archiving. -https://savannah.gnu.org/projects/cpio/ -# Available modules - - -The overview below shows which cpio installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using cpio, load one of these modules using a `module load` command like: +homepage: [https://savannah.gnu.org/projects/cpio/](https://savannah.gnu.org/projects/cpio/) -```shell -module load cpio/2.15-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|cpio/2.15-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|cpio/2.15-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|cpio version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cpio/2.15-GCCcore-14.2.0`| +|2.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cpio/2.15-GCCcore-12.3.0`| +|2.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cpio/2.15-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/cppy.md b/docs/available_software/detail/cppy.md index 42ddcfd015..b6c3f1c741 100644 --- a/docs/available_software/detail/cppy.md +++ b/docs/available_software/detail/cppy.md @@ -1,14 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A small C++ header library which makes it easier to writePython extension - modules. The primary feature is a PyObject smart pointerwhich automatically handles - reference counting and provides conveniencemethods for performing common object - operations. + description: 'A small C++ header library which makes it easier to write + + Python extension modules. The primary feature is a PyObject smart pointer + + which automatically handles reference counting and provides convenience + + methods for performing common object operations.' license: Not confirmed name: cppy offers: @@ -27,33 +28,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''cppy/1.2.1-GCCcore-12.2.0'', ''cppy/1.2.1-GCCcore-12.3.0'', - ''cppy/1.2.1-GCCcore-13.2.0'']' + softwareVersion: '[''1.3.1'', ''1.2.1'']' url: https://github.com/nucleic/cppy --- - -cppy -==== - - -A small C++ header library which makes it easier to writePython extension modules. The primary feature is a PyObject smart pointerwhich automatically handles reference counting and provides conveniencemethods for performing common object operations. - -https://github.com/nucleic/cppy -# Available modules +# cppy -The overview below shows which cppy installations are available per target architecture in EESSI, ordered based on software version (new to old). +A small C++ header library which makes it easier to write +Python extension modules. The primary feature is a PyObject smart pointer +which automatically handles reference counting and provides convenience +methods for performing common object operations. -To start using cppy, load one of these modules using a `module load` command like: +homepage: [https://github.com/nucleic/cppy](https://github.com/nucleic/cppy) -```shell -module load cppy/1.2.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|cppy/1.2.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|cppy/1.2.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|cppy/1.2.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|cppy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cppy/1.3.1-GCCcore-14.3.0`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cppy/1.3.1-GCCcore-14.2.0`| +|1.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cppy/1.2.1-GCCcore-13.3.0`| +|1.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cppy/1.2.1-GCCcore-13.2.0`| +|1.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cppy/1.2.1-GCCcore-12.3.0`| +|1.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cppy/1.2.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/crb-blast.md b/docs/available_software/detail/crb-blast.md index 3c4edda6d6..d51092437c 100644 --- a/docs/available_software/detail/crb-blast.md +++ b/docs/available_software/detail/crb-blast.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,80 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''crb-blast/0.6.9-GCC-12.3.0'']' + softwareVersion: '[''0.6.9'']' url: https://github.com/cboursnell/crb-blast --- - -crb-blast -========= +# crb-blast Conditional Reciprocal Best BLAST - high confidence ortholog assignment. -https://github.com/cboursnell/crb-blast -# Available modules +homepage: [https://github.com/cboursnell/crb-blast](https://github.com/cboursnell/crb-blast) + +## Available installations + + +|crb-blast version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.6.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`crb-blast/0.6.9-GCC-12.3.0`| + +## Extensions + +Overview of extensions included in crb-blast installations + + +### bindeps + + +|`bindeps` version|crb-blast modules that include it| +| --- | --- | +|1.2.1|`crb-blast/0.6.9-GCC-12.3.0`| + +### bio + + +|`bio` version|crb-blast modules that include it| +| --- | --- | +|1.6.0.pre.20181210|`crb-blast/0.6.9-GCC-12.3.0`| + +### crb-blast + + +|`crb-blast` version|crb-blast modules that include it| +| --- | --- | +|0.6.9|`crb-blast/0.6.9-GCC-12.3.0`| + +### facade + + +|`facade` version|crb-blast modules that include it| +| --- | --- | +|1.2.1|`crb-blast/0.6.9-GCC-12.3.0`| + +### fixwhich + +|`fixwhich` version|crb-blast modules that include it| +| --- | --- | +|1.0.2|`crb-blast/0.6.9-GCC-12.3.0`| -The overview below shows which crb-blast installations are available per target architecture in EESSI, ordered based on software version (new to old). +### pathname2 -To start using crb-blast, load one of these modules using a `module load` command like: -```shell -module load crb-blast/0.6.9-GCC-12.3.0 -``` +|`pathname2` version|crb-blast modules that include it| +| --- | --- | +|1.8.4|`crb-blast/0.6.9-GCC-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### threach -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|crb-blast/0.6.9-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`threach` version|crb-blast modules that include it| +| --- | --- | +|0.2.0|`crb-blast/0.6.9-GCC-12.3.0`| -### crb-blast/0.6.9-GCC-12.3.0 +### trollop -This is a list of extensions included in the module: -bindeps-1.2.1, bio-1.6.0.pre.20181210, crb-blast-0.6.9, facade-1.2.1, fixwhich-1.0.2, pathname2-1.8.4, threach-0.2.0, trollop-2.9.10 \ No newline at end of file +|`trollop` version|crb-blast modules that include it| +| --- | --- | +|2.9.10|`crb-blast/0.6.9-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/cryptography.md b/docs/available_software/detail/cryptography.md index 5eaad9b8c6..0509a29adc 100644 --- a/docs/available_software/detail/cryptography.md +++ b/docs/available_software/detail/cryptography.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,31 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''cryptography/41.0.1-GCCcore-12.3.0'', ''cryptography/41.0.5-GCCcore-13.2.0'']' + softwareVersion: '[''45.0.5'', ''44.0.2'', ''42.0.8'', ''41.0.5'', ''41.0.1'']' url: https://github.com/pyca/cryptography --- - -cryptography -============ +# cryptography cryptography is a package designed to expose cryptographic primitives and recipes to Python developers. -https://github.com/pyca/cryptography -# Available modules - - -The overview below shows which cryptography installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using cryptography, load one of these modules using a `module load` command like: +homepage: [https://github.com/pyca/cryptography](https://github.com/pyca/cryptography) -```shell -module load cryptography/41.0.5-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|cryptography/41.0.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|cryptography/41.0.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|cryptography version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|45.0.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cryptography/45.0.5-GCCcore-14.3.0`| +|44.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cryptography/44.0.2-GCCcore-14.2.0`| +|42.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`cryptography/42.0.8-GCCcore-13.3.0`| +|41.0.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cryptography/41.0.5-GCCcore-13.2.0`| +|41.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cryptography/41.0.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/cutadapt.md b/docs/available_software/detail/cutadapt.md index d1d1713680..e26aa2751c 100644 --- a/docs/available_software/detail/cutadapt.md +++ b/docs/available_software/detail/cutadapt.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Cutadapt finds and removes adapter sequences, primers, poly-A tails - and other types of unwanted sequence from your high-throughput sequencing reads. + description: "Cutadapt finds and removes adapter sequences, primers, poly-A tails\ + \ and\n other types of unwanted sequence from your high-throughput sequencing\ + \ reads." license: Not confirmed name: cutadapt offers: @@ -25,37 +24,46 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''cutadapt/5.0-GCCcore-13.2.0'']' + softwareVersion: '[''5.0'']' url: https://opensource.scilifelab.se/projects/cutadapt/ --- +# cutadapt -cutadapt -======== +Cutadapt finds and removes adapter sequences, primers, poly-A tails and + other types of unwanted sequence from your high-throughput sequencing reads. -Cutadapt finds and removes adapter sequences, primers, poly-A tails and other types of unwanted sequence from your high-throughput sequencing reads. +homepage: [https://opensource.scilifelab.se/projects/cutadapt/](https://opensource.scilifelab.se/projects/cutadapt/) -https://opensource.scilifelab.se/projects/cutadapt/ -# Available modules +## Available installations -The overview below shows which cutadapt installations are available per target architecture in EESSI, ordered based on software version (new to old). +|cutadapt version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cutadapt/5.0-GCCcore-13.2.0`| -To start using cutadapt, load one of these modules using a `module load` command like: +## Extensions -```shell -module load cutadapt/5.0-GCCcore-13.2.0 -``` +Overview of extensions included in cutadapt installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|cutadapt/5.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### cutadapt -### cutadapt/5.0-GCCcore-13.2.0 +|`cutadapt` version|cutadapt modules that include it| +| --- | --- | +|5.0|`cutadapt/5.0-GCCcore-13.2.0`| -This is a list of extensions included in the module: +### dnaio -cutadapt-5.0, dnaio-1.2.3, xopen-1.7.0 \ No newline at end of file + +|`dnaio` version|cutadapt modules that include it| +| --- | --- | +|1.2.3|`cutadapt/5.0-GCCcore-13.2.0`| + +### xopen + + +|`xopen` version|cutadapt modules that include it| +| --- | --- | +|1.7.0|`cutadapt/5.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/cwltool.md b/docs/available_software/detail/cwltool.md index 0a18ab82ca..a1f9dd412c 100644 --- a/docs/available_software/detail/cwltool.md +++ b/docs/available_software/detail/cwltool.md @@ -1,13 +1,19 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: This is the reference implementation of the Common Workflow Language - openstandards. It is intended to be feature complete and provide comprehensivevalidation - of CWL files as well as provide other tools related to working withCWL. + description: ' + + This is the reference implementation of the Common Workflow Language open + + standards. It is intended to be feature complete and provide comprehensive + + validation of CWL files as well as provide other tools related to working with + + CWL. + + ' license: Not confirmed name: cwltool offers: @@ -26,37 +32,113 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''cwltool/3.1.20250110105449-foss-2023b'']' + softwareVersion: '[''3.1.20250110105449'']' url: https://cwltool.readthedocs.io/ --- +# cwltool + + + +This is the reference implementation of the Common Workflow Language open +standards. It is intended to be feature complete and provide comprehensive +validation of CWL files as well as provide other tools related to working with +CWL. + + +homepage: [https://cwltool.readthedocs.io/](https://cwltool.readthedocs.io/) + +## Available installations + + +|cwltool version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.20250110105449|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`cwltool/3.1.20250110105449-foss-2023b`| + +## Extensions + +Overview of extensions included in cwltool installations + + +### argcomplete + + +|`argcomplete` version|cwltool modules that include it| +| --- | --- | +|3.6.2|`cwltool/3.1.20250110105449-foss-2023b`| + +### coloredlogs + + +|`coloredlogs` version|cwltool modules that include it| +| --- | --- | +|15.0.1|`cwltool/3.1.20250110105449-foss-2023b`| + +### cwl-upgrader + + +|`cwl-upgrader` version|cwltool modules that include it| +| --- | --- | +|1.2.12|`cwltool/3.1.20250110105449-foss-2023b`| + +### cwl-utils + + +|`cwl-utils` version|cwltool modules that include it| +| --- | --- | +|0.38|`cwltool/3.1.20250110105449-foss-2023b`| + +### cwltool + + +|`cwltool` version|cwltool modules that include it| +| --- | --- | +|3.1.20250110105449|`cwltool/3.1.20250110105449-foss-2023b`| + +### humanfriendly + + +|`humanfriendly` version|cwltool modules that include it| +| --- | --- | +|10.0|`cwltool/3.1.20250110105449-foss-2023b`| + +### mistune + + +|`mistune` version|cwltool modules that include it| +| --- | --- | +|3.0.2|`cwltool/3.1.20250110105449-foss-2023b`| + +### mypy-extensions -cwltool -======= +|`mypy-extensions` version|cwltool modules that include it| +| --- | --- | +|1.1.0|`cwltool/3.1.20250110105449-foss-2023b`| -This is the reference implementation of the Common Workflow Language openstandards. It is intended to be feature complete and provide comprehensivevalidation of CWL files as well as provide other tools related to working withCWL. +### prov -https://cwltool.readthedocs.io/ -# Available modules +|`prov` version|cwltool modules that include it| +| --- | --- | +|1.5.1|`cwltool/3.1.20250110105449-foss-2023b`| -The overview below shows which cwltool installations are available per target architecture in EESSI, ordered based on software version (new to old). +### rich-argparse -To start using cwltool, load one of these modules using a `module load` command like: -```shell -module load cwltool/3.1.20250110105449-foss-2023b -``` +|`rich-argparse` version|cwltool modules that include it| +| --- | --- | +|1.7.1|`cwltool/3.1.20250110105449-foss-2023b`| -*(This data was automatically generated on {{ generated_time }})* +### schema-salad -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|cwltool/3.1.20250110105449-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`schema-salad` version|cwltool modules that include it| +| --- | --- | +|8.9.20250408123006|`cwltool/3.1.20250110105449-foss-2023b`| -### cwltool/3.1.20250110105449-foss-2023b +### spython -This is a list of extensions included in the module: -argcomplete-3.6.2, coloredlogs-15.0.1, cwl-upgrader-1.2.12, cwl-utils-0.38, cwltool-3.1.20250110105449, humanfriendly-10.0, mistune-3.0.2, mypy-extensions-1.1.0, prov-1.5.1, rich-argparse-1.7.1, schema-salad-8.9.20250408123006, spython-0.3.14 \ No newline at end of file +|`spython` version|cwltool modules that include it| +| --- | --- | +|0.3.14|`cwltool/3.1.20250110105449-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/dask.md b/docs/available_software/detail/dask.md index 7fcdfb69ed..813dc2df39 100644 --- a/docs/available_software/detail/dask.md +++ b/docs/available_software/detail/dask.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Dask natively scales Python. Dask provides advanced parallelism for - analytics, enabling performance at scale for the tools you love. + description: "Dask natively scales Python. Dask provides advanced parallelism for\ + \ analytics, enabling performance\n at scale for the tools you love." license: Not confirmed name: dask offers: @@ -25,44 +23,130 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''dask/2023.7.1-foss-2022b'', ''dask/2023.9.2-foss-2023a'']' + softwareVersion: '[''2025.5.1'', ''2024.9.1'', ''2023.9.2'', ''2023.7.1'']' url: https://dask.org/ --- +# dask -dask -==== +Dask natively scales Python. Dask provides advanced parallelism for analytics, enabling performance + at scale for the tools you love. -Dask natively scales Python. Dask provides advanced parallelism for analytics, enabling performance at scale for the tools you love. +homepage: [https://dask.org/](https://dask.org/) -https://dask.org/ -# Available modules +## Available installations -The overview below shows which dask installations are available per target architecture in EESSI, ordered based on software version (new to old). +|dask version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`dask/2025.5.1-gfbf-2025a`| +|2024.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`dask/2024.9.1-gfbf-2024a`| +|2023.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`dask/2023.9.2-foss-2023a`| +|2023.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`dask/2023.7.1-foss-2022b`| -To start using dask, load one of these modules using a `module load` command like: +## Extensions -```shell -module load dask/2023.9.2-foss-2023a -``` +Overview of extensions included in dask installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|dask/2023.9.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|dask/2023.7.1-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### dask -### dask/2023.9.2-foss-2023a +|`dask` version|dask modules that include it| +| --- | --- | +|2025.5.1|`dask/2025.5.1-gfbf-2025a`| +|2024.9.1|`dask/2024.9.1-gfbf-2024a`| +|2023.9.2|`dask/2023.9.2-foss-2023a`| +|2023.7.1|`dask/2023.7.1-foss-2022b`| -This is a list of extensions included in the module: +### dask-jobqueue -dask-2023.9.2, dask-jobqueue-0.8.2, dask-mpi-2022.4.0, distributed-2023.9.2, docrep-0.3.2, HeapDict-1.0.1, locket-1.0.0, partd-1.4.0, tblib-2.0.0, toolz-0.12.0, zict-3.0.0 -### dask/2023.7.1-foss-2022b +|`dask-jobqueue` version|dask modules that include it| +| --- | --- | +|0.8.5|`dask/2024.9.1-gfbf-2024a`| +|0.8.2|`dask/2023.9.2-foss-2023a`
`dask/2023.7.1-foss-2022b`| -This is a list of extensions included in the module: +### dask-mpi -dask-2023.7.1, dask-jobqueue-0.8.2, dask-mpi-2022.4.0, distributed-2023.7.1, docrep-0.3.2, HeapDict-1.0.1, locket-1.0.0, partd-1.4.0, tblib-2.0.0, toolz-0.12.0, versioneer-0.29, zict-3.0.0 \ No newline at end of file + +|`dask-mpi` version|dask modules that include it| +| --- | --- | +|2022.4.0|`dask/2023.9.2-foss-2023a`
`dask/2023.7.1-foss-2022b`| + +### dask_jobqueue + + +|`dask_jobqueue` version|dask modules that include it| +| --- | --- | +|0.9.0|`dask/2025.5.1-gfbf-2025a`| + +### distributed + + +|`distributed` version|dask modules that include it| +| --- | --- | +|2025.5.1|`dask/2025.5.1-gfbf-2025a`| +|2024.9.1|`dask/2024.9.1-gfbf-2024a`| +|2023.9.2|`dask/2023.9.2-foss-2023a`| +|2023.7.1|`dask/2023.7.1-foss-2022b`| + +### docrep + + +|`docrep` version|dask modules that include it| +| --- | --- | +|0.3.2|`dask/2025.5.1-gfbf-2025a`
`dask/2024.9.1-gfbf-2024a`
`dask/2023.9.2-foss-2023a`
`dask/2023.7.1-foss-2022b`| + +### HeapDict + + +|`HeapDict` version|dask modules that include it| +| --- | --- | +|1.0.1|`dask/2025.5.1-gfbf-2025a`
`dask/2024.9.1-gfbf-2024a`
`dask/2023.9.2-foss-2023a`
`dask/2023.7.1-foss-2022b`| + +### locket + + +|`locket` version|dask modules that include it| +| --- | --- | +|1.0.0|`dask/2025.5.1-gfbf-2025a`
`dask/2024.9.1-gfbf-2024a`
`dask/2023.9.2-foss-2023a`
`dask/2023.7.1-foss-2022b`| + +### partd + + +|`partd` version|dask modules that include it| +| --- | --- | +|1.4.2|`dask/2025.5.1-gfbf-2025a`
`dask/2024.9.1-gfbf-2024a`| +|1.4.0|`dask/2023.9.2-foss-2023a`
`dask/2023.7.1-foss-2022b`| + +### tblib + + +|`tblib` version|dask modules that include it| +| --- | --- | +|3.0.0|`dask/2025.5.1-gfbf-2025a`
`dask/2024.9.1-gfbf-2024a`| +|2.0.0|`dask/2023.9.2-foss-2023a`
`dask/2023.7.1-foss-2022b`| + +### toolz + + +|`toolz` version|dask modules that include it| +| --- | --- | +|1.0.0|`dask/2025.5.1-gfbf-2025a`| +|0.12.1|`dask/2024.9.1-gfbf-2024a`| +|0.12.0|`dask/2023.9.2-foss-2023a`
`dask/2023.7.1-foss-2022b`| + +### versioneer + + +|`versioneer` version|dask modules that include it| +| --- | --- | +|0.29|`dask/2023.7.1-foss-2022b`| + +### zict + + +|`zict` version|dask modules that include it| +| --- | --- | +|3.0.0|`dask/2025.5.1-gfbf-2025a`
`dask/2024.9.1-gfbf-2024a`
`dask/2023.9.2-foss-2023a`
`dask/2023.7.1-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/dav1d.md b/docs/available_software/detail/dav1d.md new file mode 100644 index 0000000000..54b1e8969f --- /dev/null +++ b/docs/available_software/detail/dav1d.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: dav1d is an AV1 cross-platform decoder, open-source, and focused on + speed and correctness. + license: Not confirmed + name: dav1d + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.5.2'']' + url: https://code.videolan.org/videolan/dav1d +--- +# dav1d + + +dav1d is an AV1 cross-platform decoder, open-source, and focused on speed and correctness. + +homepage: [https://code.videolan.org/videolan/dav1d](https://code.videolan.org/videolan/dav1d) + +## Available installations + + +|dav1d version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`dav1d/1.5.2-GCCcore-14.3.0`| +|1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`dav1d/1.5.2-GCCcore-14.2.0`| +|1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`dav1d/1.5.2-GCCcore-13.3.0`| +|1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`dav1d/1.5.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/dbus-glib.md b/docs/available_software/detail/dbus-glib.md new file mode 100644 index 0000000000..c81ee90aa7 --- /dev/null +++ b/docs/available_software/detail/dbus-glib.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: D-Bus is a message bus system, a simple way for applications to talk + to one another. + license: Not confirmed + name: dbus-glib + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.114'']' + url: https://dbus.freedesktop.org/doc/dbus-glib +--- +# dbus-glib + + +D-Bus is a message bus system, a simple way for applications to talk to one another. + +homepage: [https://dbus.freedesktop.org/doc/dbus-glib](https://dbus.freedesktop.org/doc/dbus-glib) + +## Available installations + + +|dbus-glib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.114|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`dbus-glib/0.114-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/debugpy.md b/docs/available_software/detail/debugpy.md new file mode 100644 index 0000000000..350351895a --- /dev/null +++ b/docs/available_software/detail/debugpy.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: An implementation of the Debug Adapter Protocol for Python + license: Not confirmed + name: debugpy + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.8.1'']' + url: https://aka.ms/debugpy +--- +# debugpy + + +An implementation of the Debug Adapter Protocol for Python + +homepage: [https://aka.ms/debugpy](https://aka.ms/debugpy) + +## Available installations + + +|debugpy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`debugpy/1.8.1-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/deprecation.md b/docs/available_software/detail/deprecation.md new file mode 100644 index 0000000000..6e0d67d80b --- /dev/null +++ b/docs/available_software/detail/deprecation.md @@ -0,0 +1,43 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'The deprecation library provides a deprecated decorator + + and a fail_if_not_removed decorator for your tests.' + license: Not confirmed + name: deprecation + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.1.0'']' + url: http://deprecation.readthedocs.io +--- +# deprecation + + +The deprecation library provides a deprecated decorator +and a fail_if_not_removed decorator for your tests. + +homepage: [http://deprecation.readthedocs.io](http://deprecation.readthedocs.io) + +## Available installations + + +|deprecation version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`deprecation/2.1.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/dftd4.md b/docs/available_software/detail/dftd4.md index 474f44b3db..f8a3a90e66 100644 --- a/docs/available_software/detail/dftd4.md +++ b/docs/available_software/detail/dftd4.md @@ -1,12 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The dftd4 project provides an implementation of the generally applicable, - charge dependentLondon-dispersion correction, termed DFT-D4. + description: ' + + The dftd4 project provides an implementation of the generally applicable, charge + dependent + + London-dispersion correction, termed DFT-D4. + + ' license: Not confirmed name: dftd4 offers: @@ -25,30 +29,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''dftd4/3.7.0-gfbf-2023b'']' + softwareVersion: '[''3.7.0'']' url: https://dftd4.readthedocs.io --- +# dftd4 -dftd4 -===== - - -The dftd4 project provides an implementation of the generally applicable, charge dependentLondon-dispersion correction, termed DFT-D4. -https://dftd4.readthedocs.io -# Available modules +The dftd4 project provides an implementation of the generally applicable, charge dependent +London-dispersion correction, termed DFT-D4. -The overview below shows which dftd4 installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using dftd4, load one of these modules using a `module load` command like: +homepage: [https://dftd4.readthedocs.io](https://dftd4.readthedocs.io) -```shell -module load dftd4/3.7.0-gfbf-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|dftd4/3.7.0-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|dftd4 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`dftd4/3.7.0-gfbf-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/dill.md b/docs/available_software/detail/dill.md index 37b2fd6dbf..06c6348d5b 100644 --- a/docs/available_software/detail/dill.md +++ b/docs/available_software/detail/dill.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: dill extends python's pickle module for serializing and de-serializing - python objects to the majority of the built-in python types. Serialization is - the process of converting an object to a byte stream, and the inverse of which - is converting a byte stream back to on python object hierarchy. + description: "dill extends python's pickle module for serializing and de-serializing\ + \ python objects to the majority\n of the built-in python types. Serialization\ + \ is the process of converting an object to a byte stream, and the inverse\n of\ + \ which is converting a byte stream back to on python object hierarchy." license: Not confirmed name: dill offers: @@ -27,31 +25,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''dill/0.3.7-GCCcore-12.3.0'', ''dill/0.3.8-GCCcore-13.2.0'']' + softwareVersion: '[''0.3.8'', ''0.3.7'']' url: https://pypi.org/project/dill/ --- +# dill -dill -==== +dill extends python's pickle module for serializing and de-serializing python objects to the majority + of the built-in python types. Serialization is the process of converting an object to a byte stream, and the inverse + of which is converting a byte stream back to on python object hierarchy. -dill extends python's pickle module for serializing and de-serializing python objects to the majority of the built-in python types. Serialization is the process of converting an object to a byte stream, and the inverse of which is converting a byte stream back to on python object hierarchy. +homepage: [https://pypi.org/project/dill/](https://pypi.org/project/dill/) -https://pypi.org/project/dill/ -# Available modules +## Available installations -The overview below shows which dill installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using dill, load one of these modules using a `module load` command like: - -```shell -module load dill/0.3.8-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|dill/0.3.8-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|dill/0.3.7-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|dill version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.3.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`dill/0.3.8-GCCcore-13.2.0`| +|0.3.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`dill/0.3.7-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/dlb.md b/docs/available_software/detail/dlb.md index 0b390c8fc8..99dab967fd 100644 --- a/docs/available_software/detail/dlb.md +++ b/docs/available_software/detail/dlb.md @@ -1,14 +1,19 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: DLB is a dynamic library designed to speed up HPC hybrid applications - (i.e.,two levels of parallelism) by improving the load balance of the outer level - ofparallelism (e.g., MPI) by dynamically redistributing the computationalresources - at the inner level of parallelism (e.g., OpenMP). at run time. + description: ' + + DLB is a dynamic library designed to speed up HPC hybrid applications (i.e., + + two levels of parallelism) by improving the load balance of the outer level of + + parallelism (e.g., MPI) by dynamically redistributing the computational + + resources at the inner level of parallelism (e.g., OpenMP). at run time. + + ' license: Not confirmed name: dlb offers: @@ -27,30 +32,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''dlb/3.4-gompi-2023b'']' + softwareVersion: '[''3.4'']' url: https://pm.bsc.es/dlb/ --- +# dlb -dlb -=== - - -DLB is a dynamic library designed to speed up HPC hybrid applications (i.e.,two levels of parallelism) by improving the load balance of the outer level ofparallelism (e.g., MPI) by dynamically redistributing the computationalresources at the inner level of parallelism (e.g., OpenMP). at run time. -https://pm.bsc.es/dlb/ -# Available modules +DLB is a dynamic library designed to speed up HPC hybrid applications (i.e., +two levels of parallelism) by improving the load balance of the outer level of +parallelism (e.g., MPI) by dynamically redistributing the computational +resources at the inner level of parallelism (e.g., OpenMP). at run time. -The overview below shows which dlb installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using dlb, load one of these modules using a `module load` command like: +homepage: [https://pm.bsc.es/dlb/](https://pm.bsc.es/dlb/) -```shell -module load dlb/3.4-gompi-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|dlb/3.4-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|dlb version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`dlb/3.4-gompi-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/dm-tree.md b/docs/available_software/detail/dm-tree.md index b28de3700e..0c1ef2e5f0 100644 --- a/docs/available_software/detail/dm-tree.md +++ b/docs/available_software/detail/dm-tree.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: dm-tree provides tree, a library for working with nested data structures. - In a way,tree generalizes the builtin map function which only supports flat sequences, - andallows to apply a function to each "leaf" preserving the overall structure. + description: 'dm-tree provides tree, a library for working with nested data structures. + In a way, + + tree generalizes the builtin map function which only supports flat sequences, + and + + allows to apply a function to each "leaf" preserving the overall structure.' license: Not confirmed name: dm-tree offers: @@ -26,30 +28,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''dm-tree/0.1.8-GCCcore-12.3.0'']' + softwareVersion: '[''0.1.8'']' url: https://github.com/deepmind/tree --- - -dm-tree -======= - - -dm-tree provides tree, a library for working with nested data structures. In a way,tree generalizes the builtin map function which only supports flat sequences, andallows to apply a function to each "leaf" preserving the overall structure. - -https://github.com/deepmind/tree -# Available modules +# dm-tree -The overview below shows which dm-tree installations are available per target architecture in EESSI, ordered based on software version (new to old). +dm-tree provides tree, a library for working with nested data structures. In a way, +tree generalizes the builtin map function which only supports flat sequences, and +allows to apply a function to each "leaf" preserving the overall structure. -To start using dm-tree, load one of these modules using a `module load` command like: +homepage: [https://github.com/deepmind/tree](https://github.com/deepmind/tree) -```shell -module load dm-tree/0.1.8-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|dm-tree/0.1.8-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|dm-tree version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.1.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`dm-tree/0.1.8-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/double-conversion.md b/docs/available_software/detail/double-conversion.md index 49c18eb425..51cca6781b 100644 --- a/docs/available_software/detail/double-conversion.md +++ b/docs/available_software/detail/double-conversion.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''double-conversion/3.2.1-GCCcore-12.2.0'', ''double-conversion/3.3.0-GCCcore-12.3.0'', - ''double-conversion/3.3.0-GCCcore-13.2.0'']' + softwareVersion: '[''3.3.1'', ''3.3.0'', ''3.2.1'']' url: https://github.com/google/double-conversion --- - -double-conversion -================= +# double-conversion Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles. -https://github.com/google/double-conversion -# Available modules - - -The overview below shows which double-conversion installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using double-conversion, load one of these modules using a `module load` command like: +homepage: [https://github.com/google/double-conversion](https://github.com/google/double-conversion) -```shell -module load double-conversion/3.3.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|double-conversion/3.3.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|double-conversion/3.3.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|double-conversion/3.2.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|double-conversion version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`double-conversion/3.3.1-GCCcore-14.3.0`| +|3.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`double-conversion/3.3.1-GCCcore-14.2.0`| +|3.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`double-conversion/3.3.0-GCCcore-13.3.0`| +|3.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`double-conversion/3.3.0-GCCcore-13.2.0`| +|3.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`double-conversion/3.3.0-GCCcore-12.3.0`| +|3.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`double-conversion/3.2.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/dysco.md b/docs/available_software/detail/dysco.md index 66a2d75b28..75205e0b09 100644 --- a/docs/available_software/detail/dysco.md +++ b/docs/available_software/detail/dysco.md @@ -1,13 +1,19 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Dysco compression technique is explained in the article "Compression - ofinterferometric radio-astronomical data", A. R. Offringa (2016;http://arxiv.org/abs/1609.02019). - If you use this software, please cite thepaper. + description: ' + + The Dysco compression technique is explained in the article "Compression of + + interferometric radio-astronomical data", A. R. Offringa (2016; + + http://arxiv.org/abs/1609.02019). If you use this software, please cite the + + paper. + + ' license: Not confirmed name: dysco offers: @@ -26,30 +32,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''dysco/1.3-foss-2023b'']' + softwareVersion: '[''1.3'']' url: https://github.com/aroffringa/dysco --- +# dysco -dysco -===== - - -The Dysco compression technique is explained in the article "Compression ofinterferometric radio-astronomical data", A. R. Offringa (2016;http://arxiv.org/abs/1609.02019). If you use this software, please cite thepaper. -https://github.com/aroffringa/dysco -# Available modules +The Dysco compression technique is explained in the article "Compression of +interferometric radio-astronomical data", A. R. Offringa (2016; +http://arxiv.org/abs/1609.02019). If you use this software, please cite the +paper. -The overview below shows which dysco installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using dysco, load one of these modules using a `module load` command like: +homepage: [https://github.com/aroffringa/dysco](https://github.com/aroffringa/dysco) -```shell -module load dysco/1.3-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|dysco/1.3-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|dysco version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`dysco/1.3-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/ecBuild.md b/docs/available_software/detail/ecBuild.md index 1bfe2b6281..f4e1f5135d 100644 --- a/docs/available_software/detail/ecBuild.md +++ b/docs/available_software/detail/ecBuild.md @@ -1,12 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A CMake-based build system, consisting of a collection of CMake macros - andfunctions that ease the managing of software build systems + description: ' + + A CMake-based build system, consisting of a collection of CMake macros and + + functions that ease the managing of software build systems ' license: Not confirmed name: ecBuild offers: @@ -25,30 +26,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ecBuild/3.8.0'']' + softwareVersion: '[''3.8.0'']' url: https://ecbuild.readthedocs.io/ --- +# ecBuild -ecBuild -======= - - -A CMake-based build system, consisting of a collection of CMake macros andfunctions that ease the managing of software build systems - -https://ecbuild.readthedocs.io/ -# Available modules -The overview below shows which ecBuild installations are available per target architecture in EESSI, ordered based on software version (new to old). +A CMake-based build system, consisting of a collection of CMake macros and +functions that ease the managing of software build systems -To start using ecBuild, load one of these modules using a `module load` command like: +homepage: [https://ecbuild.readthedocs.io/](https://ecbuild.readthedocs.io/) -```shell -module load ecBuild/3.8.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ecBuild/3.8.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ecBuild version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ecBuild/3.8.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ecCodes.md b/docs/available_software/detail/ecCodes.md index 00e0edb1ea..17bc3b264f 100644 --- a/docs/available_software/detail/ecCodes.md +++ b/docs/available_software/detail/ecCodes.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'ecCodes is a package developed by ECMWF which provides an application - programming interface and a set of tools for decoding and encoding messages in - the following formats: WMO FM-92 GRIB edition 1 and edition 2, WMO FM-94 BUFR - edition 3 and edition 4, WMO GTS abbreviated header (only decoding).' + description: "ecCodes is a package developed by ECMWF which provides an application\ + \ programming interface and\n a set of tools for decoding and encoding messages\ + \ in the following formats: WMO FM-92 GRIB edition 1 and edition 2,\n WMO FM-94\ + \ BUFR edition 3 and edition 4, WMO GTS abbreviated header (only decoding)." license: Not confirmed name: ecCodes offers: @@ -27,31 +25,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ecCodes/2.31.0-gompi-2023a'', ''ecCodes/2.31.0-gompi-2023b'']' + softwareVersion: '[''2.31.0'']' url: https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home --- +# ecCodes -ecCodes -======= +ecCodes is a package developed by ECMWF which provides an application programming interface and + a set of tools for decoding and encoding messages in the following formats: WMO FM-92 GRIB edition 1 and edition 2, + WMO FM-94 BUFR edition 3 and edition 4, WMO GTS abbreviated header (only decoding). -ecCodes is a package developed by ECMWF which provides an application programming interface and a set of tools for decoding and encoding messages in the following formats: WMO FM-92 GRIB edition 1 and edition 2, WMO FM-94 BUFR edition 3 and edition 4, WMO GTS abbreviated header (only decoding). +homepage: [https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home](https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home) -https://software.ecmwf.int/wiki/display/ECC/ecCodes+Home -# Available modules +## Available installations -The overview below shows which ecCodes installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ecCodes, load one of these modules using a `module load` command like: - -```shell -module load ecCodes/2.31.0-gompi-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ecCodes/2.31.0-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ecCodes/2.31.0-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ecCodes version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.31.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ecCodes/2.31.0-gompi-2023b`| +|2.31.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ecCodes/2.31.0-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/elfutils.md b/docs/available_software/detail/elfutils.md index ec6f5eb8e8..88b8723b51 100644 --- a/docs/available_software/detail/elfutils.md +++ b/docs/available_software/detail/elfutils.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The elfutils project provides libraries and tools for ELF files and - DWARF data. + description: "\n The elfutils project provides libraries and tools for ELF files\n\ + \ and DWARF data.\n" license: Not confirmed name: elfutils offers: @@ -25,33 +23,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''elfutils/0.189-GCCcore-12.2.0'', ''elfutils/0.189-GCCcore-12.3.0'', - ''elfutils/0.190-GCCcore-13.2.0'']' + softwareVersion: '[''0.193'', ''0.190'', ''0.189'']' url: https://elfutils.org/ --- +# elfutils -elfutils -======== -The elfutils project provides libraries and tools for ELF files and DWARF data. + The elfutils project provides libraries and tools for ELF files + and DWARF data. -https://elfutils.org/ -# Available modules +homepage: [https://elfutils.org/](https://elfutils.org/) -The overview below shows which elfutils installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using elfutils, load one of these modules using a `module load` command like: -```shell -module load elfutils/0.190-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|elfutils/0.190-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|elfutils/0.189-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|elfutils/0.189-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|elfutils version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.193|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`elfutils/0.193-GCCcore-14.3.0`| +|0.193|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`elfutils/0.193-GCCcore-14.2.0`| +|0.190|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`elfutils/0.190-GCCcore-13.2.0`| +|0.189|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`elfutils/0.189-GCCcore-12.3.0`| +|0.189|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`elfutils/0.189-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/elfx86exts.md b/docs/available_software/detail/elfx86exts.md index 1aa1bea65d..5e9893c2e5 100644 --- a/docs/available_software/detail/elfx86exts.md +++ b/docs/available_software/detail/elfx86exts.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''elfx86exts/0.6.2-GCC-12.3.0'']' + softwareVersion: '[''0.6.2'']' url: https://github.com/pkgw/elfx86exts --- - -elfx86exts -========== +# elfx86exts Decode binaries and print out which instruction set extensions they use. -https://github.com/pkgw/elfx86exts -# Available modules - - -The overview below shows which elfx86exts installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using elfx86exts, load one of these modules using a `module load` command like: +homepage: [https://github.com/pkgw/elfx86exts](https://github.com/pkgw/elfx86exts) -```shell -module load elfx86exts/0.6.2-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|elfx86exts/0.6.2-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|elfx86exts version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`elfx86exts/0.6.2-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/enchant-2.md b/docs/available_software/detail/enchant-2.md index 6673ad8fb5..4507a30944 100644 --- a/docs/available_software/detail/enchant-2.md +++ b/docs/available_software/detail/enchant-2.md @@ -1,15 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Enchant aims to provide a simple but comprehensive abstraction for - dealingwith different spell checking libraries in a consistent way. A client, - suchas a text editor or word processor, need not know anything about a specificspell-checker, - and since all back-ends are plugins, new spell-checkers canbe added without needing - any change to the program using Enchant. + description: 'Enchant aims to provide a simple but comprehensive abstraction for + dealing + + with different spell checking libraries in a consistent way. A client, such + + as a text editor or word processor, need not know anything about a specific + + spell-checker, and since all back-ends are plugins, new spell-checkers can + + be added without needing any change to the program using Enchant.' license: Not confirmed name: enchant-2 offers: @@ -28,30 +31,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''enchant-2/2.6.5-GCCcore-12.3.0'']' + softwareVersion: '[''2.6.5'']' url: http://rrthomas.github.io/enchant/ --- - -enchant-2 -========= - - -Enchant aims to provide a simple but comprehensive abstraction for dealingwith different spell checking libraries in a consistent way. A client, suchas a text editor or word processor, need not know anything about a specificspell-checker, and since all back-ends are plugins, new spell-checkers canbe added without needing any change to the program using Enchant. - -http://rrthomas.github.io/enchant/ -# Available modules +# enchant-2 -The overview below shows which enchant-2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +Enchant aims to provide a simple but comprehensive abstraction for dealing +with different spell checking libraries in a consistent way. A client, such +as a text editor or word processor, need not know anything about a specific +spell-checker, and since all back-ends are plugins, new spell-checkers can +be added without needing any change to the program using Enchant. -To start using enchant-2, load one of these modules using a `module load` command like: +homepage: [http://rrthomas.github.io/enchant/](http://rrthomas.github.io/enchant/) -```shell -module load enchant-2/2.6.5-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|enchant-2/2.6.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|enchant-2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.6.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`enchant-2/2.6.5-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/expat.md b/docs/available_software/detail/expat.md index 0c7b892a11..564fc532f7 100644 --- a/docs/available_software/detail/expat.md +++ b/docs/available_software/detail/expat.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Expat is an XML parser library written in C. It is a stream-oriented - parserin which an application registers handlers for things the parser might findin - the XML document (like start tags). + description: 'Expat is an XML parser library written in C. It is a stream-oriented + parser + + in which an application registers handlers for things the parser might find + + in the XML document (like start tags).' license: Not confirmed name: expat offers: @@ -26,33 +27,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''expat/2.4.9-GCCcore-12.2.0'', ''expat/2.5.0-GCCcore-12.3.0'', - ''expat/2.5.0-GCCcore-13.2.0'']' + softwareVersion: '[''2.7.1'', ''2.6.4'', ''2.6.2'', ''2.5.0'', ''2.4.9'']' url: https://libexpat.github.io --- - -expat -===== - - -Expat is an XML parser library written in C. It is a stream-oriented parserin which an application registers handlers for things the parser might findin the XML document (like start tags). - -https://libexpat.github.io -# Available modules +# expat -The overview below shows which expat installations are available per target architecture in EESSI, ordered based on software version (new to old). +Expat is an XML parser library written in C. It is a stream-oriented parser +in which an application registers handlers for things the parser might find +in the XML document (like start tags). -To start using expat, load one of these modules using a `module load` command like: +homepage: [https://libexpat.github.io](https://libexpat.github.io) -```shell -module load expat/2.5.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|expat/2.5.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|expat/2.5.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|expat/2.4.9-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|expat version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`expat/2.7.1-GCCcore-14.3.0`| +|2.6.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`expat/2.6.4-GCCcore-14.2.0`| +|2.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`expat/2.6.2-GCCcore-13.3.0`| +|2.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`expat/2.5.0-GCCcore-13.2.0`| +|2.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`expat/2.5.0-GCCcore-12.3.0`| +|2.4.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`expat/2.4.9-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/expecttest.md b/docs/available_software/detail/expecttest.md index 428667f143..c5d0fede3a 100644 --- a/docs/available_software/detail/expecttest.md +++ b/docs/available_software/detail/expecttest.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: This library implements expect tests (also known as "golden" tests). - Expect tests are a method of writing tests where instead of hard-coding the expected - output of a test, you run the test to get the output, and the test framework automatically - populates the expected output. If the output of the test changes, you can rerun - the test with the environment variable EXPECTTEST_ACCEPT=1 to automatically update - the expected output. + description: "This library implements expect tests (also known as \"golden\" tests).\ + \ Expect tests are a method of\n writing tests where instead of hard-coding the\ + \ expected output of a test, you run the test to get the output, and\n the test\ + \ framework automatically populates the expected output. If the output of the\ + \ test changes, you can rerun\n the test with the environment variable EXPECTTEST_ACCEPT=1\ + \ to automatically update the expected output." license: Not confirmed name: expecttest offers: @@ -29,30 +27,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''expecttest/0.1.5-GCCcore-12.3.0'']' + softwareVersion: '[''0.2.1'', ''0.1.5'']' url: https://github.com/ezyang/expecttest --- +# expecttest -expecttest -========== +This library implements expect tests (also known as "golden" tests). Expect tests are a method of + writing tests where instead of hard-coding the expected output of a test, you run the test to get the output, and + the test framework automatically populates the expected output. If the output of the test changes, you can rerun + the test with the environment variable EXPECTTEST_ACCEPT=1 to automatically update the expected output. -This library implements expect tests (also known as "golden" tests). Expect tests are a method of writing tests where instead of hard-coding the expected output of a test, you run the test to get the output, and the test framework automatically populates the expected output. If the output of the test changes, you can rerun the test with the environment variable EXPECTTEST_ACCEPT=1 to automatically update the expected output. +homepage: [https://github.com/ezyang/expecttest](https://github.com/ezyang/expecttest) -https://github.com/ezyang/expecttest -# Available modules +## Available installations -The overview below shows which expecttest installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using expecttest, load one of these modules using a `module load` command like: - -```shell -module load expecttest/0.1.5-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|expecttest/0.1.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|expecttest version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`expecttest/0.2.1-GCCcore-13.3.0`| +|0.1.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`expecttest/0.1.5-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/f90wrap.md b/docs/available_software/detail/f90wrap.md index 31b731d7d3..cdf79e1f75 100644 --- a/docs/available_software/detail/f90wrap.md +++ b/docs/available_software/detail/f90wrap.md @@ -1,16 +1,20 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: f90wrap is a tool to automatically generate Python extension modules - whichinterface to Fortran code that makes use of derived types. It builds on thecapabilities - of the popular f2py utility by generating a simpler Fortran 90interface to the - original Fortran code which is then suitable for wrapping withf2py, together with - a higher-level Pythonic wrapper that makes the existance ofan additional layer - transparent to the final user. + description: 'f90wrap is a tool to automatically generate Python extension modules + which + + interface to Fortran code that makes use of derived types. It builds on the + + capabilities of the popular f2py utility by generating a simpler Fortran 90 + + interface to the original Fortran code which is then suitable for wrapping with + + f2py, together with a higher-level Pythonic wrapper that makes the existance of + + an additional layer transparent to the final user.' license: Not confirmed name: f90wrap offers: @@ -29,30 +33,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''f90wrap/0.2.13-foss-2023a'']' + softwareVersion: '[''0.2.13'']' url: https://github.com/jameskermode/f90wrap --- - -f90wrap -======= - - -f90wrap is a tool to automatically generate Python extension modules whichinterface to Fortran code that makes use of derived types. It builds on thecapabilities of the popular f2py utility by generating a simpler Fortran 90interface to the original Fortran code which is then suitable for wrapping withf2py, together with a higher-level Pythonic wrapper that makes the existance ofan additional layer transparent to the final user. - -https://github.com/jameskermode/f90wrap -# Available modules +# f90wrap -The overview below shows which f90wrap installations are available per target architecture in EESSI, ordered based on software version (new to old). +f90wrap is a tool to automatically generate Python extension modules which +interface to Fortran code that makes use of derived types. It builds on the +capabilities of the popular f2py utility by generating a simpler Fortran 90 +interface to the original Fortran code which is then suitable for wrapping with +f2py, together with a higher-level Pythonic wrapper that makes the existance of +an additional layer transparent to the final user. -To start using f90wrap, load one of these modules using a `module load` command like: +homepage: [https://github.com/jameskermode/f90wrap](https://github.com/jameskermode/f90wrap) -```shell -module load f90wrap/0.2.13-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|f90wrap/0.2.13-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|f90wrap version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.2.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`f90wrap/0.2.13-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/fastjet-contrib.md b/docs/available_software/detail/fastjet-contrib.md index fe9c8d1e6c..c57fdf2c1d 100644 --- a/docs/available_software/detail/fastjet-contrib.md +++ b/docs/available_software/detail/fastjet-contrib.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''fastjet-contrib/1.053-gompi-2023a'']' + softwareVersion: '[''1.053'']' url: https://fastjet.hepforge.org/contrib/ --- - -fastjet-contrib -=============== +# fastjet-contrib 3rd party extensions of FastJet -https://fastjet.hepforge.org/contrib/ -# Available modules - - -The overview below shows which fastjet-contrib installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using fastjet-contrib, load one of these modules using a `module load` command like: +homepage: [https://fastjet.hepforge.org/contrib/](https://fastjet.hepforge.org/contrib/) -```shell -module load fastjet-contrib/1.053-gompi-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|fastjet-contrib/1.053-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|fastjet-contrib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.053|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`fastjet-contrib/1.053-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/fastjet.md b/docs/available_software/detail/fastjet.md index 36d1de6469..3a82a736c9 100644 --- a/docs/available_software/detail/fastjet.md +++ b/docs/available_software/detail/fastjet.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''fastjet/3.4.2-gompi-2023a'']' + softwareVersion: '[''3.4.2'']' url: https://fastjet.fr/ --- - -fastjet -======= +# fastjet A software package for jet finding in pp and e+e- collisions -https://fastjet.fr/ -# Available modules - - -The overview below shows which fastjet installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using fastjet, load one of these modules using a `module load` command like: +homepage: [https://fastjet.fr/](https://fastjet.fr/) -```shell -module load fastjet/3.4.2-gompi-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|fastjet/3.4.2-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|fastjet version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`fastjet/3.4.2-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/fastp.md b/docs/available_software/detail/fastp.md index 3ae8a3d124..b00351eb99 100644 --- a/docs/available_software/detail/fastp.md +++ b/docs/available_software/detail/fastp.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A tool designed to provide fast all-in-one preprocessing for FastQ - files. This tool is developed in C++ with multithreading supported to afford high - performance. + description: "A tool designed to provide fast all-in-one preprocessing for FastQ\ + \ files.\n This tool is developed in C++ with multithreading supported to afford\ + \ high performance." license: Not confirmed name: fastp offers: @@ -26,31 +24,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''fastp/0.23.4-GCC-12.2.0'', ''fastp/0.23.4-GCC-12.3.0'']' + softwareVersion: '[''0.23.4'']' url: https://github.com/OpenGene/fastp --- +# fastp -fastp -===== +A tool designed to provide fast all-in-one preprocessing for FastQ files. + This tool is developed in C++ with multithreading supported to afford high performance. -A tool designed to provide fast all-in-one preprocessing for FastQ files. This tool is developed in C++ with multithreading supported to afford high performance. +homepage: [https://github.com/OpenGene/fastp](https://github.com/OpenGene/fastp) -https://github.com/OpenGene/fastp -# Available modules +## Available installations -The overview below shows which fastp installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using fastp, load one of these modules using a `module load` command like: - -```shell -module load fastp/0.23.4-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|fastp/0.23.4-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|fastp/0.23.4-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|fastp version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.23.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`fastp/0.23.4-GCC-12.3.0`| +|0.23.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`fastp/0.23.4-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/feh.md b/docs/available_software/detail/feh.md new file mode 100644 index 0000000000..83642ae349 --- /dev/null +++ b/docs/available_software/detail/feh.md @@ -0,0 +1,52 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' + + feh is an X11 image viewer aimed mostly at console users. + + Unlike most other viewers, it does not have a fancy GUI, but simply displays images. + + It is controlled via commandline arguments and configurable key/mouse actions. + + ' + license: Not confirmed + name: feh + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''3.10.3'']' + url: https://feh.finalrewind.org/ +--- +# feh + + + +feh is an X11 image viewer aimed mostly at console users. +Unlike most other viewers, it does not have a fancy GUI, but simply displays images. +It is controlled via commandline arguments and configurable key/mouse actions. + + +homepage: [https://feh.finalrewind.org/](https://feh.finalrewind.org/) + +## Available installations + + +|feh version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.10.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`feh/3.10.3-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ffnvcodec.md b/docs/available_software/detail/ffnvcodec.md index 070e59f3f8..df2458b0d8 100644 --- a/docs/available_software/detail/ffnvcodec.md +++ b/docs/available_software/detail/ffnvcodec.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: FFmpeg nvidia headers. Adds support for nvenc and nvdec. Requires Nvidia - GPU and drivers to be present(picked up dynamically). + description: 'FFmpeg nvidia headers. Adds support for nvenc and nvdec. Requires + Nvidia GPU and drivers to be present + + (picked up dynamically).' license: Not confirmed name: ffnvcodec offers: @@ -25,32 +25,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ffnvcodec/11.1.5.2'', ''ffnvcodec/12.0.16.0'', ''ffnvcodec/12.1.14.0'']' + softwareVersion: '[''13.0.19.0'', ''12.2.72.0'', ''12.1.14.0'', ''12.0.16.0'', ''11.1.5.2'']' url: https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git --- - -ffnvcodec -========= - - -FFmpeg nvidia headers. Adds support for nvenc and nvdec. Requires Nvidia GPU and drivers to be present(picked up dynamically). - -https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git -# Available modules +# ffnvcodec -The overview below shows which ffnvcodec installations are available per target architecture in EESSI, ordered based on software version (new to old). +FFmpeg nvidia headers. Adds support for nvenc and nvdec. Requires Nvidia GPU and drivers to be present +(picked up dynamically). -To start using ffnvcodec, load one of these modules using a `module load` command like: +homepage: [https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git](https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git) -```shell -module load ffnvcodec/12.1.14.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ffnvcodec/12.1.14.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ffnvcodec/12.0.16.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ffnvcodec/11.1.5.2|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ffnvcodec version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|13.0.19.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ffnvcodec/13.0.19.0`| +|12.2.72.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ffnvcodec/12.2.72.0`| +|12.1.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ffnvcodec/12.1.14.0`| +|12.0.16.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ffnvcodec/12.0.16.0`| +|11.1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ffnvcodec/11.1.5.2`| \ No newline at end of file diff --git a/docs/available_software/detail/flatbuffers-python.md b/docs/available_software/detail/flatbuffers-python.md index 96be5984bb..3ba9e4cb9c 100644 --- a/docs/available_software/detail/flatbuffers-python.md +++ b/docs/available_software/detail/flatbuffers-python.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''flatbuffers-python/23.5.26-GCCcore-12.3.0'']' + softwareVersion: '[''23.5.26'']' url: https://github.com/google/flatbuffers/ --- - -flatbuffers-python -================== +# flatbuffers-python Python Flatbuffers runtime library. -https://github.com/google/flatbuffers/ -# Available modules - - -The overview below shows which flatbuffers-python installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using flatbuffers-python, load one of these modules using a `module load` command like: +homepage: [https://github.com/google/flatbuffers/](https://github.com/google/flatbuffers/) -```shell -module load flatbuffers-python/23.5.26-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|flatbuffers-python/23.5.26-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|flatbuffers-python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|23.5.26|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`flatbuffers-python/23.5.26-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/flatbuffers.md b/docs/available_software/detail/flatbuffers.md index ab3ed2d9dd..153df26c65 100644 --- a/docs/available_software/detail/flatbuffers.md +++ b/docs/available_software/detail/flatbuffers.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''flatbuffers/23.5.26-GCCcore-12.3.0'']' + softwareVersion: '[''23.5.26'']' url: https://github.com/google/flatbuffers/ --- - -flatbuffers -=========== +# flatbuffers FlatBuffers: Memory Efficient Serialization Library -https://github.com/google/flatbuffers/ -# Available modules - - -The overview below shows which flatbuffers installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using flatbuffers, load one of these modules using a `module load` command like: +homepage: [https://github.com/google/flatbuffers/](https://github.com/google/flatbuffers/) -```shell -module load flatbuffers/23.5.26-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|flatbuffers/23.5.26-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|flatbuffers version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|23.5.26|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`flatbuffers/23.5.26-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/flit.md b/docs/available_software/detail/flit.md index d721c2fdc8..4f72ea2e75 100644 --- a/docs/available_software/detail/flit.md +++ b/docs/available_software/detail/flit.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,44 +22,164 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''flit/3.9.0-GCCcore-12.3.0'', ''flit/3.9.0-GCCcore-13.2.0'']' + softwareVersion: '[''3.12.0'', ''3.10.1'', ''3.9.0'']' url: https://github.com/pypa/flit --- - -flit -==== +# flit A simple packaging tool for simple packages. -https://github.com/pypa/flit -# Available modules +homepage: [https://github.com/pypa/flit](https://github.com/pypa/flit) + +## Available installations + + +|flit version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.12.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`flit/3.12.0-GCCcore-14.3.0`| +|3.10.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`flit/3.10.1-GCCcore-14.2.0`| +|3.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`flit/3.9.0-GCCcore-13.3.0`| +|3.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`flit/3.9.0-GCCcore-13.2.0`| +|3.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`flit/3.9.0-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in flit installations + + +### certifi + + +|`certifi` version|flit modules that include it| +| --- | --- | +|2025.7.14|`flit/3.12.0-GCCcore-14.3.0`| +|2025.1.31|`flit/3.10.1-GCCcore-14.2.0`| +|2024.6.2|`flit/3.9.0-GCCcore-13.3.0`| +|2023.7.22|`flit/3.9.0-GCCcore-13.2.0`| +|2023.5.7|`flit/3.9.0-GCCcore-12.3.0`| + +### charset-normalizer + + +|`charset-normalizer` version|flit modules that include it| +| --- | --- | +|3.4.2|`flit/3.12.0-GCCcore-14.3.0`| +|3.4.1|`flit/3.10.1-GCCcore-14.2.0`| +|3.3.2|`flit/3.9.0-GCCcore-13.3.0`| +|3.3.1|`flit/3.9.0-GCCcore-13.2.0`| +|3.1.0|`flit/3.9.0-GCCcore-12.3.0`| + +### docutils + + +|`docutils` version|flit modules that include it| +| --- | --- | +|0.21.2|`flit/3.12.0-GCCcore-14.3.0`
`flit/3.10.1-GCCcore-14.2.0`
`flit/3.9.0-GCCcore-13.3.0`| +|0.20.1|`flit/3.9.0-GCCcore-13.2.0`
`flit/3.9.0-GCCcore-12.3.0`| + +### flit + + +|`flit` version|flit modules that include it| +| --- | --- | +|3.12.0|`flit/3.12.0-GCCcore-14.3.0`| +|3.10.1|`flit/3.10.1-GCCcore-14.2.0`| +|3.9.0|`flit/3.9.0-GCCcore-13.3.0`
`flit/3.9.0-GCCcore-13.2.0`
`flit/3.9.0-GCCcore-12.3.0`| + +### flit-scm + + +|`flit-scm` version|flit modules that include it| +| --- | --- | +|1.7.0|`flit/3.12.0-GCCcore-14.3.0`
`flit/3.10.1-GCCcore-14.2.0`
`flit/3.9.0-GCCcore-13.3.0`| + +### flit_scm + + +|`flit_scm` version|flit modules that include it| +| --- | --- | +|1.7.0|`flit/3.9.0-GCCcore-13.2.0`
`flit/3.9.0-GCCcore-12.3.0`| + +### idna + + +|`idna` version|flit modules that include it| +| --- | --- | +|3.10|`flit/3.12.0-GCCcore-14.3.0`
`flit/3.10.1-GCCcore-14.2.0`| +|3.7|`flit/3.9.0-GCCcore-13.3.0`| +|3.4|`flit/3.9.0-GCCcore-13.2.0`
`flit/3.9.0-GCCcore-12.3.0`| + +### packaging + + +|`packaging` version|flit modules that include it| +| --- | --- | +|24.1|`flit/3.9.0-GCCcore-13.3.0`| +|23.2|`flit/3.9.0-GCCcore-13.2.0`| +|23.1|`flit/3.9.0-GCCcore-12.3.0`| + +### requests + + +|`requests` version|flit modules that include it| +| --- | --- | +|2.32.4|`flit/3.12.0-GCCcore-14.3.0`| +|2.32.3|`flit/3.10.1-GCCcore-14.2.0`
`flit/3.9.0-GCCcore-13.3.0`| +|2.31.0|`flit/3.9.0-GCCcore-13.2.0`
`flit/3.9.0-GCCcore-12.3.0`| + +### setuptools-scm + + +|`setuptools-scm` version|flit modules that include it| +| --- | --- | +|8.1.0|`flit/3.9.0-GCCcore-13.3.0`| +|8.0.4|`flit/3.9.0-GCCcore-13.2.0`| + +### setuptools_scm + + +|`setuptools_scm` version|flit modules that include it| +| --- | --- | +|7.1.0|`flit/3.9.0-GCCcore-12.3.0`| + +### tomli-w + +|`tomli-w` version|flit modules that include it| +| --- | --- | +|1.2.0|`flit/3.12.0-GCCcore-14.3.0`
`flit/3.10.1-GCCcore-14.2.0`| +|1.0.0|`flit/3.9.0-GCCcore-13.3.0`| -The overview below shows which flit installations are available per target architecture in EESSI, ordered based on software version (new to old). +### tomli_w -To start using flit, load one of these modules using a `module load` command like: -```shell -module load flit/3.9.0-GCCcore-13.2.0 -``` +|`tomli_w` version|flit modules that include it| +| --- | --- | +|1.0.0|`flit/3.9.0-GCCcore-13.2.0`
`flit/3.9.0-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### typing-extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|flit/3.9.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|flit/3.9.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`typing-extensions` version|flit modules that include it| +| --- | --- | +|4.12.2|`flit/3.9.0-GCCcore-13.3.0`| -### flit/3.9.0-GCCcore-13.2.0 +### typing_extensions -This is a list of extensions included in the module: -certifi-2023.7.22, charset-normalizer-3.3.1, docutils-0.20.1, flit-3.9.0, flit_scm-1.7.0, idna-3.4, packaging-23.2, requests-2.31.0, setuptools-scm-8.0.4, tomli_w-1.0.0, typing_extensions-4.8.0, urllib3-2.0.7 +|`typing_extensions` version|flit modules that include it| +| --- | --- | +|4.8.0|`flit/3.9.0-GCCcore-13.2.0`| +|4.6.3|`flit/3.9.0-GCCcore-12.3.0`| -### flit/3.9.0-GCCcore-12.3.0 +### urllib3 -This is a list of extensions included in the module: -certifi-2023.5.7, charset-normalizer-3.1.0, docutils-0.20.1, flit-3.9.0, flit_scm-1.7.0, idna-3.4, packaging-23.1, requests-2.31.0, setuptools_scm-7.1.0, tomli_w-1.0.0, typing_extensions-4.6.3, urllib3-1.26.16 \ No newline at end of file +|`urllib3` version|flit modules that include it| +| --- | --- | +|2.5.0|`flit/3.12.0-GCCcore-14.3.0`| +|2.4.0|`flit/3.10.1-GCCcore-14.2.0`| +|2.2.1|`flit/3.9.0-GCCcore-13.3.0`| +|2.0.7|`flit/3.9.0-GCCcore-13.2.0`| +|1.26.16|`flit/3.9.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/flook.md b/docs/available_software/detail/flook.md index 4c0facaab8..e39865d627 100644 --- a/docs/available_software/detail/flook.md +++ b/docs/available_software/detail/flook.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''flook/0.8.4-GCC-12.3.0'']' + softwareVersion: '[''0.8.4'']' url: https://github.com/ElectronicStructureLibrary/flook --- - -flook -===== +# flook The fortran-Lua-hook library. -https://github.com/ElectronicStructureLibrary/flook -# Available modules - - -The overview below shows which flook installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using flook, load one of these modules using a `module load` command like: +homepage: [https://github.com/ElectronicStructureLibrary/flook](https://github.com/ElectronicStructureLibrary/flook) -```shell -module load flook/0.8.4-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|flook/0.8.4-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|flook version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.8.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`flook/0.8.4-GCC-13.3.0`| +|0.8.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`flook/0.8.4-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/fmt.md b/docs/available_software/detail/fmt.md new file mode 100644 index 0000000000..cbed84a951 --- /dev/null +++ b/docs/available_software/detail/fmt.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: fmt (formerly cppformat) is an open-source formatting library. + license: Not confirmed + name: fmt + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''11.2.0'']' + url: http://fmtlib.net/ +--- +# fmt + + +fmt (formerly cppformat) is an open-source formatting library. + +homepage: [http://fmtlib.net/](http://fmtlib.net/) + +## Available installations + + +|fmt version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|11.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`fmt/11.2.0-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/fontconfig.md b/docs/available_software/detail/fontconfig.md index 86a917c571..4efffcbde0 100644 --- a/docs/available_software/detail/fontconfig.md +++ b/docs/available_software/detail/fontconfig.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Fontconfig is a library designed to provide system-wide font configuration, - customization and application access. + description: "\n Fontconfig is a library designed to provide system-wide font configuration,\n\ + \ customization and application access.\n" license: Not confirmed name: fontconfig offers: @@ -25,33 +23,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''fontconfig/2.14.1-GCCcore-12.2.0'', ''fontconfig/2.14.2-GCCcore-12.3.0'', - ''fontconfig/2.14.2-GCCcore-13.2.0'']' + softwareVersion: '[''2.17.0'', ''2.16.2'', ''2.15.0'', ''2.14.2'', ''2.14.1'']' url: https://www.freedesktop.org/wiki/Software/fontconfig/ --- +# fontconfig -fontconfig -========== -Fontconfig is a library designed to provide system-wide font configuration, customization and application access. + Fontconfig is a library designed to provide system-wide font configuration, + customization and application access. -https://www.freedesktop.org/wiki/Software/fontconfig/ -# Available modules +homepage: [https://www.freedesktop.org/wiki/Software/fontconfig/](https://www.freedesktop.org/wiki/Software/fontconfig/) -The overview below shows which fontconfig installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using fontconfig, load one of these modules using a `module load` command like: -```shell -module load fontconfig/2.14.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|fontconfig/2.14.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|fontconfig/2.14.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|fontconfig/2.14.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|fontconfig version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.17.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`fontconfig/2.17.0-GCCcore-14.3.0`| +|2.16.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`fontconfig/2.16.2-GCCcore-14.2.0`| +|2.15.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`fontconfig/2.15.0-GCCcore-13.3.0`| +|2.14.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`fontconfig/2.14.2-GCCcore-13.2.0`| +|2.14.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`fontconfig/2.14.2-GCCcore-12.3.0`| +|2.14.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`fontconfig/2.14.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/fonttools.md b/docs/available_software/detail/fonttools.md new file mode 100644 index 0000000000..d17e99d9e2 --- /dev/null +++ b/docs/available_software/detail/fonttools.md @@ -0,0 +1,56 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' + + fontTools is a library for manipulating fonts, written in Python. + + The project includes the TTX tool, that can convert TrueType and OpenType fonts + to and from an XML text format, + + which is also called TTX. + + It supports TrueType, OpenType, AFM and to an extent Type 1 and some Mac-specific + formats.' + license: Not confirmed + name: fonttools + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''4.58.5'', ''4.58.4'', ''4.53.1'']' + url: https://python-markdown.github.io/ +--- +# fonttools + + + +fontTools is a library for manipulating fonts, written in Python. +The project includes the TTX tool, that can convert TrueType and OpenType fonts to and from an XML text format, +which is also called TTX. +It supports TrueType, OpenType, AFM and to an extent Type 1 and some Mac-specific formats. + +homepage: [https://python-markdown.github.io/](https://python-markdown.github.io/) + +## Available installations + + +|fonttools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.58.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`fonttools/4.58.5-GCCcore-14.3.0`| +|4.58.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`fonttools/4.58.4-GCCcore-14.2.0`| +|4.53.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`fonttools/4.53.1-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/foss.md b/docs/available_software/detail/foss.md index d3ec81b34f..a67d14ddd1 100644 --- a/docs/available_software/detail/foss.md +++ b/docs/available_software/detail/foss.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI - for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. + description: "GNU Compiler Collection (GCC) based compiler toolchain, including\n\ + \ OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK." license: Not confirmed name: foss offers: @@ -25,32 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''foss/2022b'', ''foss/2023a'', ''foss/2023b'']' + softwareVersion: '[''2025b'', ''2025a'', ''2024a'', ''2023b'', ''2023a'', ''2022b'']' url: https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain --- +# foss -foss -==== +GNU Compiler Collection (GCC) based compiler toolchain, including + OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. -GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. +homepage: [https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain](https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain) -https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain -# Available modules +## Available installations -The overview below shows which foss installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using foss, load one of these modules using a `module load` command like: - -```shell -module load foss/2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|foss/2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|foss/2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|foss/2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|foss version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`foss/2025b`| +|2025a|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`foss/2025a`| +|2024a|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`foss/2024a`| +|2023b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`foss/2023b`| +|2023a|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`foss/2023a`| +|2022b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`foss/2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/freeglut.md b/docs/available_software/detail/freeglut.md index b660ace216..bf52df1ca8 100644 --- a/docs/available_software/detail/freeglut.md +++ b/docs/available_software/detail/freeglut.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''freeglut/3.4.0-GCCcore-12.2.0'', ''freeglut/3.4.0-GCCcore-12.3.0'']' + softwareVersion: '[''3.6.0'', ''3.4.0'']' url: http://freeglut.sourceforge.net/ --- - -freeglut -======== +# freeglut freeglut is a completely OpenSourced alternative to the OpenGL Utility Toolkit (GLUT) library. -http://freeglut.sourceforge.net/ -# Available modules - - -The overview below shows which freeglut installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using freeglut, load one of these modules using a `module load` command like: +homepage: [http://freeglut.sourceforge.net/](http://freeglut.sourceforge.net/) -```shell -module load freeglut/3.4.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|freeglut/3.4.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|freeglut/3.4.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|freeglut version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`freeglut/3.6.0-GCCcore-14.3.0`| +|3.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`freeglut/3.4.0-GCCcore-12.3.0`| +|3.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`freeglut/3.4.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/freetype.md b/docs/available_software/detail/freetype.md index 22e8285084..9be22b3bf0 100644 --- a/docs/available_software/detail/freetype.md +++ b/docs/available_software/detail/freetype.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: FreeType 2 is a software font engine that is designed to be small, - efficient, highly customizable, and portable while capable of producing high-quality - output (glyph images). It can be used in graphics libraries, display servers, - font conversion tools, text image generation tools, and many other products as - well. + description: "\n FreeType 2 is a software font engine that is designed to be small,\ + \ efficient,\n highly customizable, and portable while capable of producing high-quality\n\ + \ output (glyph images). It can be used in graphics libraries, display servers,\n\ + \ font conversion tools, text image generation tools, and many other products\n\ + \ as well.\n" license: Not confirmed name: freetype offers: @@ -28,33 +26,30 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''freetype/2.12.1-GCCcore-12.2.0'', ''freetype/2.13.0-GCCcore-12.3.0'', - ''freetype/2.13.2-GCCcore-13.2.0'']' + softwareVersion: '[''2.13.3'', ''2.13.2'', ''2.13.0'', ''2.12.1'']' url: https://www.freetype.org --- +# freetype -freetype -======== -FreeType 2 is a software font engine that is designed to be small, efficient, highly customizable, and portable while capable of producing high-quality output (glyph images). It can be used in graphics libraries, display servers, font conversion tools, text image generation tools, and many other products as well. + FreeType 2 is a software font engine that is designed to be small, efficient, + highly customizable, and portable while capable of producing high-quality + output (glyph images). It can be used in graphics libraries, display servers, + font conversion tools, text image generation tools, and many other products + as well. -https://www.freetype.org -# Available modules +homepage: [https://www.freetype.org](https://www.freetype.org) -The overview below shows which freetype installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using freetype, load one of these modules using a `module load` command like: -```shell -module load freetype/2.13.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|freetype/2.13.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|freetype/2.13.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|freetype/2.12.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|freetype version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.13.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`freetype/2.13.3-GCCcore-14.3.0`| +|2.13.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`freetype/2.13.3-GCCcore-14.2.0`| +|2.13.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`freetype/2.13.2-GCCcore-13.3.0`| +|2.13.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`freetype/2.13.2-GCCcore-13.2.0`| +|2.13.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`freetype/2.13.0-GCCcore-12.3.0`| +|2.12.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`freetype/2.12.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/gawk.md b/docs/available_software/detail/gawk.md index 9ef818ed53..f6cea23154 100644 --- a/docs/available_software/detail/gawk.md +++ b/docs/available_software/detail/gawk.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The awk utility interprets a special-purpose programming language that - makes it possible to handlesimple data-reformatting jobs with just a few lines - of code. + description: 'The awk utility interprets a special-purpose programming language + that makes it possible to handle + + simple data-reformatting jobs with just a few lines of code.' license: Not confirmed name: gawk offers: @@ -26,30 +25,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''gawk/5.3.0-GCC-12.3.0'']' + softwareVersion: '[''5.3.0'']' url: https://www.gnu.org/software/gawk --- - -gawk -==== - - -The awk utility interprets a special-purpose programming language that makes it possible to handlesimple data-reformatting jobs with just a few lines of code. - -https://www.gnu.org/software/gawk -# Available modules +# gawk -The overview below shows which gawk installations are available per target architecture in EESSI, ordered based on software version (new to old). +The awk utility interprets a special-purpose programming language that makes it possible to handle +simple data-reformatting jobs with just a few lines of code. -To start using gawk, load one of these modules using a `module load` command like: +homepage: [https://www.gnu.org/software/gawk](https://www.gnu.org/software/gawk) -```shell -module load gawk/5.3.0-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|gawk/5.3.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|gawk version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gawk/5.3.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/gc.md b/docs/available_software/detail/gc.md index 4a35673fa7..ca752c7edb 100644 --- a/docs/available_software/detail/gc.md +++ b/docs/available_software/detail/gc.md @@ -1,12 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Boehm-Demers-Weiser conservative garbage collector can be used - as agarbage collecting replacement for C malloc or C++ new. + description: 'The Boehm-Demers-Weiser conservative garbage collector can be used + as a + + garbage collecting replacement for C malloc or C++ new. + + ' license: Not confirmed name: gc offers: @@ -25,30 +27,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''gc/8.2.4-GCCcore-12.3.0'']' + softwareVersion: '[''8.2.4'']' url: https://hboehm.info/gc/ --- +# gc -gc -== - - -The Boehm-Demers-Weiser conservative garbage collector can be used as agarbage collecting replacement for C malloc or C++ new. - -https://hboehm.info/gc/ -# Available modules +The Boehm-Demers-Weiser conservative garbage collector can be used as a +garbage collecting replacement for C malloc or C++ new. -The overview below shows which gc installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using gc, load one of these modules using a `module load` command like: +homepage: [https://hboehm.info/gc/](https://hboehm.info/gc/) -```shell -module load gc/8.2.4-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|gc/8.2.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|gc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gc/8.2.4-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/gengetopt.md b/docs/available_software/detail/gengetopt.md index 49bf7e0ea2..14ab5d2b46 100644 --- a/docs/available_software/detail/gengetopt.md +++ b/docs/available_software/detail/gengetopt.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''gengetopt/2.23-GCCcore-13.2.0'']' + softwareVersion: '[''2.23'']' url: https://www.gnu.org/software/gengetopt/gengetopt.html --- - -gengetopt -========= +# gengetopt Gengetopt is a tool to write command line option parsing code for C programs. -https://www.gnu.org/software/gengetopt/gengetopt.html -# Available modules - - -The overview below shows which gengetopt installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using gengetopt, load one of these modules using a `module load` command like: +homepage: [https://www.gnu.org/software/gengetopt/gengetopt.html](https://www.gnu.org/software/gengetopt/gengetopt.html) -```shell -module load gengetopt/2.23-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|gengetopt/2.23-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|gengetopt version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.23|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gengetopt/2.23-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/geopandas.md b/docs/available_software/detail/geopandas.md index dc7b2ebaca..74aa2ac568 100644 --- a/docs/available_software/detail/geopandas.md +++ b/docs/available_software/detail/geopandas.md @@ -1,14 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GeoPandas is a project to add support for geographic data to pandas - objects.It currently implements GeoSeries and GeoDataFrame types which are subclasses - of pandas.Seriesand pandas.DataFrame respectively. GeoPandas objects can act on - shapely geometry objects andperform geometric operations. + description: 'GeoPandas is a project to add support for geographic data to pandas + objects. + + It currently implements GeoSeries and GeoDataFrame types which are subclasses + of pandas.Series + + and pandas.DataFrame respectively. GeoPandas objects can act on shapely geometry + objects and + + perform geometric operations.' license: Not confirmed name: geopandas offers: @@ -27,37 +31,41 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''geopandas/0.14.2-foss-2023a'']' + softwareVersion: '[''0.14.2'']' url: https://geopandas.org --- +# geopandas + -geopandas -========= +GeoPandas is a project to add support for geographic data to pandas objects. +It currently implements GeoSeries and GeoDataFrame types which are subclasses of pandas.Series +and pandas.DataFrame respectively. GeoPandas objects can act on shapely geometry objects and +perform geometric operations. +homepage: [https://geopandas.org](https://geopandas.org) -GeoPandas is a project to add support for geographic data to pandas objects.It currently implements GeoSeries and GeoDataFrame types which are subclasses of pandas.Seriesand pandas.DataFrame respectively. GeoPandas objects can act on shapely geometry objects andperform geometric operations. +## Available installations -https://geopandas.org -# Available modules +|geopandas version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.14.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`geopandas/0.14.2-foss-2023a`| -The overview below shows which geopandas installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using geopandas, load one of these modules using a `module load` command like: +Overview of extensions included in geopandas installations -```shell -module load geopandas/0.14.2-foss-2023a -``` -*(This data was automatically generated on {{ generated_time }})* +### geopandas -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|geopandas/0.14.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`geopandas` version|geopandas modules that include it| +| --- | --- | +|0.14.2|`geopandas/0.14.2-foss-2023a`| -### geopandas/0.14.2-foss-2023a +### mapclassify -This is a list of extensions included in the module: -geopandas-0.14.2, mapclassify-2.6.1 \ No newline at end of file +|`mapclassify` version|geopandas modules that include it| +| --- | --- | +|2.6.1|`geopandas/0.14.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/gfbf.md b/docs/available_software/detail/gfbf.md index db2e720ce1..6ce965fe0e 100644 --- a/docs/available_software/detail/gfbf.md +++ b/docs/available_software/detail/gfbf.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GNU Compiler Collection (GCC) based compiler toolchain, including FlexiBLAS - (BLAS and LAPACK support) and (serial) FFTW. + description: "GNU Compiler Collection (GCC) based compiler toolchain, including\n\ + \ FlexiBLAS (BLAS and LAPACK support) and (serial) FFTW." license: Not confirmed name: gfbf offers: @@ -25,32 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''gfbf/2022b'', ''gfbf/2023a'', ''gfbf/2023b'']' + softwareVersion: '[''2025b'', ''2025a'', ''2024a'', ''2023b'', ''2023a'', ''2022b'']' url: (none) --- +# gfbf -gfbf -==== +GNU Compiler Collection (GCC) based compiler toolchain, including + FlexiBLAS (BLAS and LAPACK support) and (serial) FFTW. -GNU Compiler Collection (GCC) based compiler toolchain, including FlexiBLAS (BLAS and LAPACK support) and (serial) FFTW. +homepage: [(none)]((none)) -(none) -# Available modules +## Available installations -The overview below shows which gfbf installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using gfbf, load one of these modules using a `module load` command like: - -```shell -module load gfbf/2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|gfbf/2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|gfbf/2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|gfbf/2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|gfbf version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gfbf/2025b`| +|2025a|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gfbf/2025a`| +|2024a|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gfbf/2024a`| +|2023b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gfbf/2023b`| +|2023a|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gfbf/2023a`| +|2022b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gfbf/2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/giflib.md b/docs/available_software/detail/giflib.md index 2bbb6368f1..9c8554a091 100644 --- a/docs/available_software/detail/giflib.md +++ b/docs/available_software/detail/giflib.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: giflib is a library for reading and writing gif images.It is API and - ABI compatible with libungif which was in wide use whilethe LZW compression algorithm - was patented. + description: 'giflib is a library for reading and writing gif images. + + It is API and ABI compatible with libungif which was in wide use while + + the LZW compression algorithm was patented.' license: Not confirmed name: giflib offers: @@ -26,33 +26,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''giflib/5.2.1-GCCcore-12.2.0'', ''giflib/5.2.1-GCCcore-12.3.0'', - ''giflib/5.2.1-GCCcore-13.2.0'']' + softwareVersion: '[''5.2.2'', ''5.2.1'']' url: http://giflib.sourceforge.net/ --- - -giflib -====== - - -giflib is a library for reading and writing gif images.It is API and ABI compatible with libungif which was in wide use whilethe LZW compression algorithm was patented. - -http://giflib.sourceforge.net/ -# Available modules +# giflib -The overview below shows which giflib installations are available per target architecture in EESSI, ordered based on software version (new to old). +giflib is a library for reading and writing gif images. +It is API and ABI compatible with libungif which was in wide use while +the LZW compression algorithm was patented. -To start using giflib, load one of these modules using a `module load` command like: +homepage: [http://giflib.sourceforge.net/](http://giflib.sourceforge.net/) -```shell -module load giflib/5.2.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|giflib/5.2.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|giflib/5.2.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|giflib/5.2.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|giflib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`giflib/5.2.2-GCCcore-14.3.0`| +|5.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`giflib/5.2.2-GCCcore-14.2.0`| +|5.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`giflib/5.2.1-GCCcore-13.3.0`| +|5.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`giflib/5.2.1-GCCcore-13.2.0`| +|5.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`giflib/5.2.1-GCCcore-12.3.0`| +|5.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`giflib/5.2.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/git.md b/docs/available_software/detail/git.md index 072157f58c..21792d6c09 100644 --- a/docs/available_software/detail/git.md +++ b/docs/available_software/detail/git.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Git is a free and open source distributed version control system designedto - handle everything from small to very large projects with speed and efficiency. + description: 'Git is a free and open source distributed version control system designed + + to handle everything from small to very large projects with speed and efficiency.' license: Not confirmed name: git offers: @@ -25,33 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''git/2.38.1-GCCcore-12.2.0-nodocs'', ''git/2.41.0-GCCcore-12.3.0-nodocs'', - ''git/2.42.0-GCCcore-13.2.0'']' + softwareVersion: '[''2.50.1'', ''2.49.0'', ''2.45.1'', ''2.42.0'', ''2.41.0'', ''2.38.1'']' url: https://git-scm.com --- - -git -=== - - -Git is a free and open source distributed version control system designedto handle everything from small to very large projects with speed and efficiency. - -https://git-scm.com -# Available modules +# git -The overview below shows which git installations are available per target architecture in EESSI, ordered based on software version (new to old). +Git is a free and open source distributed version control system designed +to handle everything from small to very large projects with speed and efficiency. -To start using git, load one of these modules using a `module load` command like: +homepage: [https://git-scm.com](https://git-scm.com) -```shell -module load git/2.42.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|git/2.42.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|git/2.41.0-GCCcore-12.3.0-nodocs|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|git/2.38.1-GCCcore-12.2.0-nodocs|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|git version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.50.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`git/2.50.1-GCCcore-14.3.0`| +|2.49.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`git/2.49.0-GCCcore-14.2.0`| +|2.45.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`git/2.45.1-GCCcore-13.3.0`| +|2.42.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`git/2.42.0-GCCcore-13.2.0`| +|2.41.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`git/2.41.0-GCCcore-12.3.0-nodocs`| +|2.38.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`git/2.38.1-GCCcore-12.2.0-nodocs`| \ No newline at end of file diff --git a/docs/available_software/detail/glew.md b/docs/available_software/detail/glew.md index dc0f418124..7a8493509e 100644 --- a/docs/available_software/detail/glew.md +++ b/docs/available_software/detail/glew.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The OpenGL Extension Wrangler Library (GLEW) is a cross-platform open-sourceC/C++ - extension loading library. GLEW provides efficient run-time mechanismsfor determining - which OpenGL extensions are supported on the target platform. + description: 'The OpenGL Extension Wrangler Library (GLEW) is a cross-platform open-source + + C/C++ extension loading library. GLEW provides efficient run-time mechanisms + + for determining which OpenGL extensions are supported on the target platform.' license: Not confirmed name: glew offers: @@ -26,30 +26,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''glew/2.2.0-GCCcore-12.3.0-osmesa'']' + softwareVersion: '[''2.2.0'']' url: https://github.com/nigels-com/glew --- - -glew -==== - - -The OpenGL Extension Wrangler Library (GLEW) is a cross-platform open-sourceC/C++ extension loading library. GLEW provides efficient run-time mechanismsfor determining which OpenGL extensions are supported on the target platform. - -https://github.com/nigels-com/glew -# Available modules +# glew -The overview below shows which glew installations are available per target architecture in EESSI, ordered based on software version (new to old). +The OpenGL Extension Wrangler Library (GLEW) is a cross-platform open-source +C/C++ extension loading library. GLEW provides efficient run-time mechanisms +for determining which OpenGL extensions are supported on the target platform. -To start using glew, load one of these modules using a `module load` command like: +homepage: [https://github.com/nigels-com/glew](https://github.com/nigels-com/glew) -```shell -module load glew/2.2.0-GCCcore-12.3.0-osmesa -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|glew/2.2.0-GCCcore-12.3.0-osmesa|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|glew version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`glew/2.2.0-GCCcore-12.3.0-osmesa`| \ No newline at end of file diff --git a/docs/available_software/detail/glib-networking.md b/docs/available_software/detail/glib-networking.md index 44c017641f..3827f3e3cb 100644 --- a/docs/available_software/detail/glib-networking.md +++ b/docs/available_software/detail/glib-networking.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''glib-networking/2.72.1-GCCcore-12.3.0'']' + softwareVersion: '[''2.72.1'']' url: https://gitlab.gnome.org/GNOME/glib-networking --- - -glib-networking -=============== +# glib-networking Network extensions for GLib -https://gitlab.gnome.org/GNOME/glib-networking -# Available modules - - -The overview below shows which glib-networking installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using glib-networking, load one of these modules using a `module load` command like: +homepage: [https://gitlab.gnome.org/GNOME/glib-networking](https://gitlab.gnome.org/GNOME/glib-networking) -```shell -module load glib-networking/2.72.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|glib-networking/2.72.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|glib-networking version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.72.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`glib-networking/2.72.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/glslang-SPIRV.md b/docs/available_software/detail/glslang-SPIRV.md new file mode 100644 index 0000000000..7908f08da8 --- /dev/null +++ b/docs/available_software/detail/glslang-SPIRV.md @@ -0,0 +1,54 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Glslang is the official reference compiler front end for the OpenGL + ES and OpenGL shading languages. + + It implements a strict interpretation of the specifications for these languages. + It is open and free for anyone to use, + + either from a command line or programmatically. The OpenGL and OpenGL ES working + groups are committed to maintaining + + consistency between the reference compiler and the corresponding shading language + specifications.' + license: Not confirmed + name: glslang-SPIRV + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''15.4.0'', ''15.3.0'']' + url: https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/ +--- +# glslang-SPIRV + + +Glslang is the official reference compiler front end for the OpenGL ES and OpenGL shading languages. +It implements a strict interpretation of the specifications for these languages. It is open and free for anyone to use, +either from a command line or programmatically. The OpenGL and OpenGL ES working groups are committed to maintaining +consistency between the reference compiler and the corresponding shading language specifications. + +homepage: [https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/](https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/) + +## Available installations + + +|glslang-SPIRV version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|15.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`glslang-SPIRV/15.4.0-GCCcore-14.3.0`| +|15.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`glslang-SPIRV/15.3.0-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/gmpy2.md b/docs/available_software/detail/gmpy2.md index ede18619a6..85702b20de 100644 --- a/docs/available_software/detail/gmpy2.md +++ b/docs/available_software/detail/gmpy2.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''gmpy2/2.1.5-GCC-12.3.0'', ''gmpy2/2.1.5-GCC-13.2.0'']' + softwareVersion: '[''2.2.0'', ''2.1.5'']' url: https://github.com/aleaxit/gmpy --- - -gmpy2 -===== +# gmpy2 GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x -https://github.com/aleaxit/gmpy -# Available modules - - -The overview below shows which gmpy2 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using gmpy2, load one of these modules using a `module load` command like: +homepage: [https://github.com/aleaxit/gmpy](https://github.com/aleaxit/gmpy) -```shell -module load gmpy2/2.1.5-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|gmpy2/2.1.5-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|gmpy2/2.1.5-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|gmpy2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gmpy2/2.2.0-GCCcore-13.3.0`| +|2.1.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gmpy2/2.1.5-GCC-13.2.0`| +|2.1.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gmpy2/2.1.5-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/gmsh.md b/docs/available_software/detail/gmsh.md index 2fccf320b3..18f83e31f6 100644 --- a/docs/available_software/detail/gmsh.md +++ b/docs/available_software/detail/gmsh.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''gmsh/4.12.2-foss-2023a'']' + softwareVersion: '[''4.15.0'', ''4.12.2'']' url: https://gmsh.info/ --- - -gmsh -==== +# gmsh Gmsh is a 3D finite element grid generator with a build-in CAD engine and post-processor. -https://gmsh.info/ -# Available modules - - -The overview below shows which gmsh installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using gmsh, load one of these modules using a `module load` command like: +homepage: [https://gmsh.info/](https://gmsh.info/) -```shell -module load gmsh/4.12.2-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|gmsh/4.12.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|gmsh version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.15.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gmsh/4.15.0-foss-2025a`| +|4.12.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gmsh/4.12.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/gnuplot.md b/docs/available_software/detail/gnuplot.md index 937fe3a963..d40f64dfb8 100644 --- a/docs/available_software/detail/gnuplot.md +++ b/docs/available_software/detail/gnuplot.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''gnuplot/5.4.6-GCCcore-12.2.0'', ''gnuplot/5.4.8-GCCcore-12.3.0'']' + softwareVersion: '[''5.4.8'', ''5.4.6'']' url: http://gnuplot.sourceforge.net --- - -gnuplot -======= +# gnuplot Portable interactive, function plotting utility -http://gnuplot.sourceforge.net -# Available modules - - -The overview below shows which gnuplot installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using gnuplot, load one of these modules using a `module load` command like: +homepage: [http://gnuplot.sourceforge.net](http://gnuplot.sourceforge.net) -```shell -module load gnuplot/5.4.8-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|gnuplot/5.4.8-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|gnuplot/5.4.6-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|gnuplot version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.4.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gnuplot/5.4.8-GCCcore-12.3.0`| +|5.4.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gnuplot/5.4.6-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/gompi.md b/docs/available_software/detail/gompi.md index 79a980d56d..d482e505f3 100644 --- a/docs/available_software/detail/gompi.md +++ b/docs/available_software/detail/gompi.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI - for MPI support. + description: "GNU Compiler Collection (GCC) based compiler toolchain,\n including\ + \ OpenMPI for MPI support." license: Not confirmed name: gompi offers: @@ -25,32 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''gompi/2022b'', ''gompi/2023a'', ''gompi/2023b'']' + softwareVersion: '[''2025b'', ''2025a'', ''2024a'', ''2023b'', ''2023a'', ''2022b'']' url: (none) --- +# gompi -gompi -===== +GNU Compiler Collection (GCC) based compiler toolchain, + including OpenMPI for MPI support. -GNU Compiler Collection (GCC) based compiler toolchain, including OpenMPI for MPI support. +homepage: [(none)]((none)) -(none) -# Available modules +## Available installations -The overview below shows which gompi installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using gompi, load one of these modules using a `module load` command like: - -```shell -module load gompi/2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|gompi/2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|gompi/2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|gompi/2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|gompi version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gompi/2025b`| +|2025a|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gompi/2025a`| +|2024a|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gompi/2024a`| +|2023b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gompi/2023b`| +|2023a|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gompi/2023a`| +|2022b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gompi/2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/googleapis-python.md b/docs/available_software/detail/googleapis-python.md new file mode 100644 index 0000000000..a2c407d047 --- /dev/null +++ b/docs/available_software/detail/googleapis-python.md @@ -0,0 +1,129 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Clients and tools for Google APIs in Python + license: Not confirmed + name: googleapis-python + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2025.03'']' + url: https://googleapis.github.io +--- +# googleapis-python + + +Clients and tools for Google APIs in Python + +homepage: [https://googleapis.github.io](https://googleapis.github.io) + +## Available installations + + +|googleapis-python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025.03|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`googleapis-python/2025.03-GCCcore-13.3.0`| + +## Extensions + +Overview of extensions included in googleapis-python installations + + +### cachetools + + +|`cachetools` version|googleapis-python modules that include it| +| --- | --- | +|5.5.2|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### google-api-core + + +|`google-api-core` version|googleapis-python modules that include it| +| --- | --- | +|2.24.2|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### google-auth + + +|`google-auth` version|googleapis-python modules that include it| +| --- | --- | +|2.37.0|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### google-cloud-core + + +|`google-cloud-core` version|googleapis-python modules that include it| +| --- | --- | +|2.4.3|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### google-cloud-storage + + +|`google-cloud-storage` version|googleapis-python modules that include it| +| --- | --- | +|2.19.0|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### google-crc32c + + +|`google-crc32c` version|googleapis-python modules that include it| +| --- | --- | +|1.7.1|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### google-resumable-media + + +|`google-resumable-media` version|googleapis-python modules that include it| +| --- | --- | +|2.7.2|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### googleapis-common-protos + + +|`googleapis-common-protos` version|googleapis-python modules that include it| +| --- | --- | +|1.66.0|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### proto-plus + + +|`proto-plus` version|googleapis-python modules that include it| +| --- | --- | +|1.26.1|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### pyasn1 + + +|`pyasn1` version|googleapis-python modules that include it| +| --- | --- | +|0.6.1|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### pyasn1-modules + + +|`pyasn1-modules` version|googleapis-python modules that include it| +| --- | --- | +|0.4.2|`googleapis-python/2025.03-GCCcore-13.3.0`| + +### rsa + + +|`rsa` version|googleapis-python modules that include it| +| --- | --- | +|4.9.1|`googleapis-python/2025.03-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/googletest.md b/docs/available_software/detail/googletest.md index 247729c156..7741f4e980 100644 --- a/docs/available_software/detail/googletest.md +++ b/docs/available_software/detail/googletest.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''googletest/1.12.1-GCCcore-12.2.0'', ''googletest/1.13.0-GCCcore-12.3.0'', - ''googletest/1.14.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.17.0'', ''1.15.2'', ''1.14.0'', ''1.13.0'', ''1.12.1'']' url: https://github.com/google/googletest --- - -googletest -========== +# googletest Google's framework for writing C++ tests on a variety of platforms -https://github.com/google/googletest -# Available modules - - -The overview below shows which googletest installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using googletest, load one of these modules using a `module load` command like: +homepage: [https://github.com/google/googletest](https://github.com/google/googletest) -```shell -module load googletest/1.14.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|googletest/1.14.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|googletest/1.13.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|googletest/1.12.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|googletest version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.17.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`googletest/1.17.0-GCCcore-14.3.0`| +|1.15.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`googletest/1.15.2-GCCcore-13.3.0`| +|1.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`googletest/1.14.0-GCCcore-13.2.0`| +|1.13.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`googletest/1.13.0-GCCcore-12.3.0`| +|1.12.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`googletest/1.12.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/graphite2.md b/docs/available_software/detail/graphite2.md index 348806056e..001e6e2b5a 100644 --- a/docs/available_software/detail/graphite2.md +++ b/docs/available_software/detail/graphite2.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Graphite is a "smart font" system developed specifically to handle - the complexities of lesser-known languages of the world. + description: "Graphite is a \"smart font\" system developed specifically to\n handle\ + \ the complexities of lesser-known languages of the world." license: Not confirmed name: graphite2 offers: @@ -25,33 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''graphite2/1.3.14-GCCcore-12.2.0'', ''graphite2/1.3.14-GCCcore-12.3.0'', - ''graphite2/1.3.14-GCCcore-13.2.0'']' + softwareVersion: '[''1.3.14'']' url: https://scripts.sil.org/cms/scripts/page.php?site_id=projects&item_id=graphite_home --- +# graphite2 -graphite2 -========= +Graphite is a "smart font" system developed specifically to + handle the complexities of lesser-known languages of the world. -Graphite is a "smart font" system developed specifically to handle the complexities of lesser-known languages of the world. +homepage: [https://scripts.sil.org/cms/scripts/page.php?site_id=projects&item_id=graphite_home](https://scripts.sil.org/cms/scripts/page.php?site_id=projects&item_id=graphite_home) -https://scripts.sil.org/cms/scripts/page.php?site_id=projects&item_id=graphite_home -# Available modules +## Available installations -The overview below shows which graphite2 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using graphite2, load one of these modules using a `module load` command like: - -```shell -module load graphite2/1.3.14-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|graphite2/1.3.14-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|graphite2/1.3.14-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|graphite2/1.3.14-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|graphite2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`graphite2/1.3.14-GCCcore-14.3.0`| +|1.3.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`graphite2/1.3.14-GCCcore-14.2.0`| +|1.3.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`graphite2/1.3.14-GCCcore-13.3.0`| +|1.3.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`graphite2/1.3.14-GCCcore-13.2.0`| +|1.3.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`graphite2/1.3.14-GCCcore-12.3.0`| +|1.3.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`graphite2/1.3.14-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/groff.md b/docs/available_software/detail/groff.md index 12eb7619e7..2a18bd2b93 100644 --- a/docs/available_software/detail/groff.md +++ b/docs/available_software/detail/groff.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Groff (GNU troff) is a typesetting system that reads plain text mixed - with formatting commands and produces formatted output. + description: "Groff (GNU troff) is a typesetting system that reads plain text mixed\ + \ with formatting commands\n and produces formatted output." license: Not confirmed name: groff offers: @@ -25,31 +23,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''groff/1.22.4-GCCcore-12.2.0'', ''groff/1.22.4-GCCcore-12.3.0'']' + softwareVersion: '[''1.23.0'', ''1.22.4'']' url: https://www.gnu.org/software/groff --- +# groff -groff -===== +Groff (GNU troff) is a typesetting system that reads plain text mixed with formatting commands + and produces formatted output. -Groff (GNU troff) is a typesetting system that reads plain text mixed with formatting commands and produces formatted output. +homepage: [https://www.gnu.org/software/groff](https://www.gnu.org/software/groff) -https://www.gnu.org/software/groff -# Available modules +## Available installations -The overview below shows which groff installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using groff, load one of these modules using a `module load` command like: - -```shell -module load groff/1.22.4-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|groff/1.22.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|groff/1.22.4-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|groff version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.23.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`groff/1.23.0-GCCcore-14.3.0`| +|1.23.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`groff/1.23.0-GCCcore-14.2.0`| +|1.23.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`groff/1.23.0-GCCcore-13.3.0`| +|1.22.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`groff/1.22.4-GCCcore-12.3.0`| +|1.22.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`groff/1.22.4-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/grpcio.md b/docs/available_software/detail/grpcio.md index 62dcfdb5ef..c443f9fbbe 100644 --- a/docs/available_software/detail/grpcio.md +++ b/docs/available_software/detail/grpcio.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: gRPC is a modern, open source, high-performance remote procedure call - (RPC)framework that can run anywhere. gRPC enables client and server applications - tocommunicate transparently, and simplifies the building of connected systems. + description: 'gRPC is a modern, open source, high-performance remote procedure call + (RPC) + + framework that can run anywhere. gRPC enables client and server applications to + + communicate transparently, and simplifies the building of connected systems.' license: Not confirmed name: grpcio offers: @@ -26,37 +27,35 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''grpcio/1.57.0-GCCcore-12.3.0'']' + softwareVersion: '[''1.70.0'', ''1.57.0'']' url: https://grpc.io/ --- +# grpcio -grpcio -====== - - -gRPC is a modern, open source, high-performance remote procedure call (RPC)framework that can run anywhere. gRPC enables client and server applications tocommunicate transparently, and simplifies the building of connected systems. -https://grpc.io/ -# Available modules +gRPC is a modern, open source, high-performance remote procedure call (RPC) +framework that can run anywhere. gRPC enables client and server applications to +communicate transparently, and simplifies the building of connected systems. +homepage: [https://grpc.io/](https://grpc.io/) -The overview below shows which grpcio installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using grpcio, load one of these modules using a `module load` command like: -```shell -module load grpcio/1.57.0-GCCcore-12.3.0 -``` +|grpcio version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.70.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`grpcio/1.70.0-GCCcore-13.3.0`| +|1.57.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`grpcio/1.57.0-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|grpcio/1.57.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in grpcio installations -### grpcio/1.57.0-GCCcore-12.3.0 +### grpcio -This is a list of extensions included in the module: -grpcio-1.57.0 \ No newline at end of file +|`grpcio` version|grpcio modules that include it| +| --- | --- | +|1.70.0|`grpcio/1.70.0-GCCcore-13.3.0`| +|1.57.0|`grpcio/1.57.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/gtk-doc.md b/docs/available_software/detail/gtk-doc.md index aec2736373..cc7cbc096b 100644 --- a/docs/available_software/detail/gtk-doc.md +++ b/docs/available_software/detail/gtk-doc.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''gtk-doc/1.34.0-GCCcore-12.3.0'']' + softwareVersion: '[''1.35.1'', ''1.34.0'']' url: https://gitlab.gnome.org/GNOME/gtk-doc --- - -gtk-doc -======= +# gtk-doc Documentation tool for public library API -https://gitlab.gnome.org/GNOME/gtk-doc -# Available modules - - -The overview below shows which gtk-doc installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using gtk-doc, load one of these modules using a `module load` command like: +homepage: [https://gitlab.gnome.org/GNOME/gtk-doc](https://gitlab.gnome.org/GNOME/gtk-doc) -```shell -module load gtk-doc/1.34.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|gtk-doc/1.34.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|gtk-doc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.35.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gtk-doc/1.35.1-GCCcore-14.3.0`| +|1.34.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gtk-doc/1.34.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/gtk-layer-shell.md b/docs/available_software/detail/gtk-layer-shell.md new file mode 100644 index 0000000000..043d1bf4a2 --- /dev/null +++ b/docs/available_software/detail/gtk-layer-shell.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'A library to create panels and other desktop components for Wayland + using the Layer Shell protocol. + + GTK3 version.' + license: Not confirmed + name: gtk-layer-shell + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.2'']' + url: https://github.com/wmww/gtk-layer-shell +--- +# gtk-layer-shell + + +A library to create panels and other desktop components for Wayland using the Layer Shell protocol. +GTK3 version. + +homepage: [https://github.com/wmww/gtk-layer-shell](https://github.com/wmww/gtk-layer-shell) + +## Available installations + + +|gtk-layer-shell version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gtk-layer-shell/0.9.2-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/gzip.md b/docs/available_software/detail/gzip.md index 12d0f23b0b..f2dc5399a4 100644 --- a/docs/available_software/detail/gzip.md +++ b/docs/available_software/detail/gzip.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,32 +23,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''gzip/1.12-GCCcore-12.2.0'', ''gzip/1.12-GCCcore-12.3.0'', ''gzip/1.13-GCCcore-13.2.0'']' + softwareVersion: '[''1.14'', ''1.13'', ''1.12'']' url: https://www.gnu.org/software/gzip/ --- - -gzip -==== +# gzip gzip (GNU zip) is a popular data compression program as a replacement for compress -https://www.gnu.org/software/gzip/ -# Available modules - - -The overview below shows which gzip installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using gzip, load one of these modules using a `module load` command like: +homepage: [https://www.gnu.org/software/gzip/](https://www.gnu.org/software/gzip/) -```shell -module load gzip/1.13-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|gzip/1.13-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|gzip/1.12-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|gzip/1.12-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|gzip version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gzip/1.14-GCCcore-14.3.0`| +|1.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gzip/1.13-GCCcore-14.2.0`| +|1.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`gzip/1.13-GCCcore-13.3.0`| +|1.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gzip/1.13-GCCcore-13.2.0`| +|1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gzip/1.12-GCCcore-12.3.0`| +|1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`gzip/1.12-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/h5netcdf.md b/docs/available_software/detail/h5netcdf.md index db093ec5fc..710c02ae03 100644 --- a/docs/available_software/detail/h5netcdf.md +++ b/docs/available_software/detail/h5netcdf.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A Python interface for the netCDF4 file-format that reads and writes - local orremote HDF5 files directly via h5py or h5pyd, without relying on the UnidatanetCDF - library. + description: 'A Python interface for the netCDF4 file-format that reads and writes + local or + + remote HDF5 files directly via h5py or h5pyd, without relying on the Unidata + + netCDF library.' license: Not confirmed name: h5netcdf offers: @@ -26,37 +27,33 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''h5netcdf/1.2.0-foss-2023a'']' + softwareVersion: '[''1.2.0'']' url: https://h5netcdf.org/ --- +# h5netcdf -h5netcdf -======== - - -A Python interface for the netCDF4 file-format that reads and writes local orremote HDF5 files directly via h5py or h5pyd, without relying on the UnidatanetCDF library. -https://h5netcdf.org/ -# Available modules +A Python interface for the netCDF4 file-format that reads and writes local or +remote HDF5 files directly via h5py or h5pyd, without relying on the Unidata +netCDF library. +homepage: [https://h5netcdf.org/](https://h5netcdf.org/) -The overview below shows which h5netcdf installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using h5netcdf, load one of these modules using a `module load` command like: -```shell -module load h5netcdf/1.2.0-foss-2023a -``` +|h5netcdf version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`h5netcdf/1.2.0-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|h5netcdf/1.2.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in h5netcdf installations -### h5netcdf/1.2.0-foss-2023a +### h5netcdf -This is a list of extensions included in the module: -h5netcdf-1.2.0 \ No newline at end of file +|`h5netcdf` version|h5netcdf modules that include it| +| --- | --- | +|1.2.0|`h5netcdf/1.2.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/h5py.md b/docs/available_software/detail/h5py.md index eceb4cf6d8..b47f925e3b 100644 --- a/docs/available_software/detail/h5py.md +++ b/docs/available_software/detail/h5py.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: HDF5 for Python (h5py) is a general-purpose Python interface to the - Hierarchical Data Format library, version 5. HDF5 is a versatile, mature scientific - software library designed for the fast, flexible storage of enormous amounts of - data. + description: "HDF5 for Python (h5py) is a general-purpose Python interface to the\ + \ Hierarchical Data Format library,\n version 5. HDF5 is a versatile, mature scientific\ + \ software library designed for the fast, flexible storage of enormous\n amounts\ + \ of data." license: Not confirmed name: h5py offers: @@ -27,32 +25,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''h5py/3.8.0-foss-2022b'', ''h5py/3.9.0-foss-2023a'', ''h5py/3.11.0-foss-2023b'']' + softwareVersion: '[''3.14.0'', ''3.11.0'', ''3.9.0'', ''3.8.0'']' url: https://www.h5py.org/ --- +# h5py -h5py -==== +HDF5 for Python (h5py) is a general-purpose Python interface to the Hierarchical Data Format library, + version 5. HDF5 is a versatile, mature scientific software library designed for the fast, flexible storage of enormous + amounts of data. -HDF5 for Python (h5py) is a general-purpose Python interface to the Hierarchical Data Format library, version 5. HDF5 is a versatile, mature scientific software library designed for the fast, flexible storage of enormous amounts of data. +homepage: [https://www.h5py.org/](https://www.h5py.org/) -https://www.h5py.org/ -# Available modules +## Available installations -The overview below shows which h5py installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using h5py, load one of these modules using a `module load` command like: - -```shell -module load h5py/3.11.0-foss-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|h5py/3.11.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|h5py/3.9.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|h5py/3.8.0-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|h5py version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`h5py/3.14.0-foss-2025b`| +|3.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`h5py/3.14.0-foss-2025a`| +|3.11.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`h5py/3.11.0-foss-2023b`| +|3.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`h5py/3.9.0-foss-2023a`| +|3.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`h5py/3.8.0-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/hatch-jupyter-builder.md b/docs/available_software/detail/hatch-jupyter-builder.md index 99e4e1bace..30c192df06 100644 --- a/docs/available_software/detail/hatch-jupyter-builder.md +++ b/docs/available_software/detail/hatch-jupyter-builder.md @@ -1,14 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Hatch Jupyter Builder is a plugin for the hatchling Python build backend. - It isprimarily targeted for package authors who are providing JavaScript as part - oftheir Python packages.Typical use cases are Jupyter Lab Extensions and Jupyter - Widgets. + description: 'Hatch Jupyter Builder is a plugin for the hatchling Python build backend. + It is + + primarily targeted for package authors who are providing JavaScript as part of + + their Python packages. + + Typical use cases are Jupyter Lab Extensions and Jupyter Widgets.' license: Not confirmed name: hatch-jupyter-builder offers: @@ -27,37 +29,46 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''hatch-jupyter-builder/0.9.1-GCCcore-12.3.0'']' + softwareVersion: '[''0.9.1'']' url: https://hatch-jupyter-builder.readthedocs.io --- +# hatch-jupyter-builder + -hatch-jupyter-builder -===================== +Hatch Jupyter Builder is a plugin for the hatchling Python build backend. It is +primarily targeted for package authors who are providing JavaScript as part of +their Python packages. +Typical use cases are Jupyter Lab Extensions and Jupyter Widgets. +homepage: [https://hatch-jupyter-builder.readthedocs.io](https://hatch-jupyter-builder.readthedocs.io) -Hatch Jupyter Builder is a plugin for the hatchling Python build backend. It isprimarily targeted for package authors who are providing JavaScript as part oftheir Python packages.Typical use cases are Jupyter Lab Extensions and Jupyter Widgets. +## Available installations -https://hatch-jupyter-builder.readthedocs.io -# Available modules +|hatch-jupyter-builder version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hatch-jupyter-builder/0.9.1-GCCcore-14.3.0`| +|0.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hatch-jupyter-builder/0.9.1-GCCcore-14.2.0`| +|0.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hatch-jupyter-builder/0.9.1-GCCcore-13.3.0`| +|0.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hatch-jupyter-builder/0.9.1-GCCcore-13.2.0`| +|0.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hatch-jupyter-builder/0.9.1-GCCcore-12.3.0`| -The overview below shows which hatch-jupyter-builder installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using hatch-jupyter-builder, load one of these modules using a `module load` command like: +Overview of extensions included in hatch-jupyter-builder installations -```shell -module load hatch-jupyter-builder/0.9.1-GCCcore-12.3.0 -``` -*(This data was automatically generated on {{ generated_time }})* +### hatch_jupyter_builder -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|hatch-jupyter-builder/0.9.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`hatch_jupyter_builder` version|hatch-jupyter-builder modules that include it| +| --- | --- | +|0.9.1|`hatch-jupyter-builder/0.9.1-GCCcore-14.3.0`
`hatch-jupyter-builder/0.9.1-GCCcore-14.2.0`
`hatch-jupyter-builder/0.9.1-GCCcore-13.3.0`
`hatch-jupyter-builder/0.9.1-GCCcore-13.2.0`
`hatch-jupyter-builder/0.9.1-GCCcore-12.3.0`| -### hatch-jupyter-builder/0.9.1-GCCcore-12.3.0 +### hatch_nodejs_version -This is a list of extensions included in the module: -hatch_jupyter_builder-0.9.1, hatch_nodejs_version-0.3.2 \ No newline at end of file +|`hatch_nodejs_version` version|hatch-jupyter-builder modules that include it| +| --- | --- | +|0.4.0|`hatch-jupyter-builder/0.9.1-GCCcore-14.3.0`| +|0.3.2|`hatch-jupyter-builder/0.9.1-GCCcore-14.2.0`
`hatch-jupyter-builder/0.9.1-GCCcore-13.3.0`
`hatch-jupyter-builder/0.9.1-GCCcore-13.2.0`
`hatch-jupyter-builder/0.9.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/hatchling.md b/docs/available_software/detail/hatchling.md index 36bd358174..3615679a5b 100644 --- a/docs/available_software/detail/hatchling.md +++ b/docs/available_software/detail/hatchling.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Extensible, standards compliant build backend used by Hatch,a modern, - extensible Python project manager. + description: 'Extensible, standards compliant build backend used by Hatch, + + a modern, extensible Python project manager.' license: Not confirmed name: hatchling offers: @@ -25,44 +24,126 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''hatchling/1.18.0-GCCcore-12.3.0'', ''hatchling/1.18.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.27.0'', ''1.24.2'', ''1.18.0'']' url: https://hatch.pypa.io --- +# hatchling + + +Extensible, standards compliant build backend used by Hatch, +a modern, extensible Python project manager. + +homepage: [https://hatch.pypa.io](https://hatch.pypa.io) + +## Available installations + + +|hatchling version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.27.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hatchling/1.27.0-GCCcore-14.3.0`| +|1.27.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hatchling/1.27.0-GCCcore-14.2.0`| +|1.24.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hatchling/1.24.2-GCCcore-13.3.0`| +|1.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hatchling/1.18.0-GCCcore-13.2.0`| +|1.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hatchling/1.18.0-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in hatchling installations + + +### editables + + +|`editables` version|hatchling modules that include it| +| --- | --- | +|0.5|`hatchling/1.27.0-GCCcore-14.3.0`
`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`
`hatchling/1.18.0-GCCcore-13.2.0`| +|0.3|`hatchling/1.18.0-GCCcore-12.3.0`| + +### hatch-docstring-description + + +|`hatch-docstring-description` version|hatchling modules that include it| +| --- | --- | +|1.1.1|`hatchling/1.27.0-GCCcore-14.3.0`| + +### hatch-fancy-pypi-readme + + +|`hatch-fancy-pypi-readme` version|hatchling modules that include it| +| --- | --- | +|25.1.0|`hatchling/1.27.0-GCCcore-14.3.0`| +|24.1.0|`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`| + +### hatch-requirements-txt + + +|`hatch-requirements-txt` version|hatchling modules that include it| +| --- | --- | +|0.4.1|`hatchling/1.27.0-GCCcore-14.3.0`
`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`
`hatchling/1.18.0-GCCcore-13.2.0`
`hatchling/1.18.0-GCCcore-12.3.0`| + +### hatch-vcs + + +|`hatch-vcs` version|hatchling modules that include it| +| --- | --- | +|0.5.0|`hatchling/1.27.0-GCCcore-14.3.0`| +|0.4.0|`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`| + +### hatch_fancy_pypi_readme + + +|`hatch_fancy_pypi_readme` version|hatchling modules that include it| +| --- | --- | +|23.1.0|`hatchling/1.18.0-GCCcore-13.2.0`
`hatchling/1.18.0-GCCcore-12.3.0`| + +### hatch_vcs -hatchling -========= +|`hatch_vcs` version|hatchling modules that include it| +| --- | --- | +|0.3.0|`hatchling/1.18.0-GCCcore-13.2.0`
`hatchling/1.18.0-GCCcore-12.3.0`| -Extensible, standards compliant build backend used by Hatch,a modern, extensible Python project manager. +### hatchling -https://hatch.pypa.io -# Available modules +|`hatchling` version|hatchling modules that include it| +| --- | --- | +|1.27.0|`hatchling/1.27.0-GCCcore-14.3.0`
`hatchling/1.27.0-GCCcore-14.2.0`| +|1.24.2|`hatchling/1.24.2-GCCcore-13.3.0`| +|1.18.0|`hatchling/1.18.0-GCCcore-13.2.0`
`hatchling/1.18.0-GCCcore-12.3.0`| -The overview below shows which hatchling installations are available per target architecture in EESSI, ordered based on software version (new to old). +### pathspec -To start using hatchling, load one of these modules using a `module load` command like: -```shell -module load hatchling/1.18.0-GCCcore-13.2.0 -``` +|`pathspec` version|hatchling modules that include it| +| --- | --- | +|0.12.1|`hatchling/1.27.0-GCCcore-14.3.0`
`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`| +|0.11.2|`hatchling/1.18.0-GCCcore-13.2.0`| +|0.11.1|`hatchling/1.18.0-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### pluggy -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|hatchling/1.18.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|hatchling/1.18.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`pluggy` version|hatchling modules that include it| +| --- | --- | +|1.6.0|`hatchling/1.27.0-GCCcore-14.3.0`| +|1.5.0|`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`| +|1.3.0|`hatchling/1.18.0-GCCcore-13.2.0`| +|1.2.0|`hatchling/1.18.0-GCCcore-12.3.0`| -### hatchling/1.18.0-GCCcore-13.2.0 +### trove-classifiers -This is a list of extensions included in the module: -editables-0.5, hatch-requirements-txt-0.4.1, hatch_fancy_pypi_readme-23.1.0, hatch_vcs-0.3.0, hatchling-1.18.0, pathspec-0.11.2, pluggy-1.3.0, trove_classifiers-2023.10.18 +|`trove-classifiers` version|hatchling modules that include it| +| --- | --- | +|2025.5.9.12|`hatchling/1.27.0-GCCcore-14.3.0`| +|2025.2.18.16|`hatchling/1.27.0-GCCcore-14.2.0`| +|2024.5.22|`hatchling/1.24.2-GCCcore-13.3.0`| -### hatchling/1.18.0-GCCcore-12.3.0 +### trove_classifiers -This is a list of extensions included in the module: -editables-0.3, hatch-requirements-txt-0.4.1, hatch_fancy_pypi_readme-23.1.0, hatch_vcs-0.3.0, hatchling-1.18.0, pathspec-0.11.1, pluggy-1.2.0, trove_classifiers-2023.5.24 \ No newline at end of file +|`trove_classifiers` version|hatchling modules that include it| +| --- | --- | +|2023.10.18|`hatchling/1.18.0-GCCcore-13.2.0`| +|2023.5.24|`hatchling/1.18.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/hic-straw.md b/docs/available_software/detail/hic-straw.md index 0d5fc9605a..7f5cd91be5 100644 --- a/docs/available_software/detail/hic-straw.md +++ b/docs/available_software/detail/hic-straw.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''hic-straw/1.3.1-foss-2023b'']' + softwareVersion: '[''1.3.1'']' url: https://github.com/aidenlab/straw --- - -hic-straw -========= +# hic-straw Straw is a library which allows rapid streaming of contact data from .hic files. -https://github.com/aidenlab/straw -# Available modules - - -The overview below shows which hic-straw installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using hic-straw, load one of these modules using a `module load` command like: +homepage: [https://github.com/aidenlab/straw](https://github.com/aidenlab/straw) -```shell -module load hic-straw/1.3.1-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|hic-straw/1.3.1-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|hic-straw version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hic-straw/1.3.1-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/hiredis.md b/docs/available_software/detail/hiredis.md index 825794693f..a8261f6357 100644 --- a/docs/available_software/detail/hiredis.md +++ b/docs/available_software/detail/hiredis.md @@ -1,15 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Hiredis is a minimalistic C client library for the Redis database.It - is minimalistic because it just adds minimal support for the protocol,but at the - same time it uses a high level printf-alike API in order tomake it much higher - level than otherwise suggested by its minimal code baseand the lack of explicit - bindings for every Redis command. + description: 'Hiredis is a minimalistic C client library for the Redis database. + + + It is minimalistic because it just adds minimal support for the protocol, + + but at the same time it uses a high level printf-alike API in order to + + make it much higher level than otherwise suggested by its minimal code base + + and the lack of explicit bindings for every Redis command.' license: Not confirmed name: hiredis offers: @@ -28,30 +31,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''hiredis/1.2.0-GCCcore-12.3.0'']' + softwareVersion: '[''1.2.0'']' url: https://github.com/redis/hiredis --- +# hiredis -hiredis -======= - - -Hiredis is a minimalistic C client library for the Redis database.It is minimalistic because it just adds minimal support for the protocol,but at the same time it uses a high level printf-alike API in order tomake it much higher level than otherwise suggested by its minimal code baseand the lack of explicit bindings for every Redis command. - -https://github.com/redis/hiredis -# Available modules +Hiredis is a minimalistic C client library for the Redis database. -The overview below shows which hiredis installations are available per target architecture in EESSI, ordered based on software version (new to old). +It is minimalistic because it just adds minimal support for the protocol, +but at the same time it uses a high level printf-alike API in order to +make it much higher level than otherwise suggested by its minimal code base +and the lack of explicit bindings for every Redis command. -To start using hiredis, load one of these modules using a `module load` command like: +homepage: [https://github.com/redis/hiredis](https://github.com/redis/hiredis) -```shell -module load hiredis/1.2.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|hiredis/1.2.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|hiredis version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hiredis/1.2.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/hunspell.md b/docs/available_software/detail/hunspell.md index 5d880af384..03adf0f4cd 100644 --- a/docs/available_software/detail/hunspell.md +++ b/docs/available_software/detail/hunspell.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Hunspell is a spell checker and morphological analyzerlibrary and program - designed for languages with rich morphology andcomplex word compounding or character - encoding. + description: 'Hunspell is a spell checker and morphological analyzer + + library and program designed for languages with rich morphology and + + complex word compounding or character encoding.' license: Not confirmed name: hunspell offers: @@ -26,30 +26,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''hunspell/1.7.2-GCCcore-12.3.0'']' + softwareVersion: '[''1.7.2'']' url: https://hunspell.github.io/ --- - -hunspell -======== - - -Hunspell is a spell checker and morphological analyzerlibrary and program designed for languages with rich morphology andcomplex word compounding or character encoding. - -https://hunspell.github.io/ -# Available modules +# hunspell -The overview below shows which hunspell installations are available per target architecture in EESSI, ordered based on software version (new to old). +Hunspell is a spell checker and morphological analyzer +library and program designed for languages with rich morphology and +complex word compounding or character encoding. -To start using hunspell, load one of these modules using a `module load` command like: +homepage: [https://hunspell.github.io/](https://hunspell.github.io/) -```shell -module load hunspell/1.7.2-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|hunspell/1.7.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|hunspell version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hunspell/1.7.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/hwdata.md b/docs/available_software/detail/hwdata.md new file mode 100644 index 0000000000..efaf3d268e --- /dev/null +++ b/docs/available_software/detail/hwdata.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'hwdata contains various hardware identification and configuration + data, such as the pci.ids and + + usb.ids databases.' + license: Not confirmed + name: hwdata + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.403'']' + url: https://github.com/vcrhonek/hwdata +--- +# hwdata + + +hwdata contains various hardware identification and configuration data, such as the pci.ids and +usb.ids databases. + +homepage: [https://github.com/vcrhonek/hwdata](https://github.com/vcrhonek/hwdata) + +## Available installations + + +|hwdata version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.403|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hwdata/0.403-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/hwloc.md b/docs/available_software/detail/hwloc.md index 9570d9a285..47710f8e15 100644 --- a/docs/available_software/detail/hwloc.md +++ b/docs/available_software/detail/hwloc.md @@ -1,18 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Portable Hardware Locality (hwloc) software package provides a - portable abstraction (across OS, versions, architectures, ...) of the hierarchical - topology of modern architectures, including NUMA memory nodes, sockets, shared - caches, cores and simultaneous multithreading. It also gathers various system - attributes such as cache and memory information as well as the locality of I/O - devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily aims - at helping applications with gathering information about modern computing hardware - so as to exploit it accordingly and efficiently. + description: "\n The Portable Hardware Locality (hwloc) software package provides\ + \ a portable\n abstraction (across OS, versions, architectures, ...) of the hierarchical\n\ + \ topology of modern architectures, including NUMA memory nodes, sockets, shared\n\ + \ caches, cores and simultaneous multithreading. It also gathers various system\n\ + \ attributes such as cache and memory information as well as the locality of I/O\n\ + \ devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily\n\ + \ aims at helping applications with gathering information about modern computing\n\ + \ hardware so as to exploit it accordingly and efficiently.\n" license: Not confirmed name: hwloc offers: @@ -31,33 +29,33 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''hwloc/2.8.0-GCCcore-12.2.0'', ''hwloc/2.9.1-GCCcore-12.3.0'', - ''hwloc/2.9.2-GCCcore-13.2.0'']' + softwareVersion: '[''2.12.1'', ''2.11.2'', ''2.10.0'', ''2.9.2'', ''2.9.1'', ''2.8.0'']' url: https://www.open-mpi.org/projects/hwloc/ --- +# hwloc -hwloc -===== -The Portable Hardware Locality (hwloc) software package provides a portable abstraction (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various system attributes such as cache and memory information as well as the locality of I/O devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily aims at helping applications with gathering information about modern computing hardware so as to exploit it accordingly and efficiently. + The Portable Hardware Locality (hwloc) software package provides a portable + abstraction (across OS, versions, architectures, ...) of the hierarchical + topology of modern architectures, including NUMA memory nodes, sockets, shared + caches, cores and simultaneous multithreading. It also gathers various system + attributes such as cache and memory information as well as the locality of I/O + devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily + aims at helping applications with gathering information about modern computing + hardware so as to exploit it accordingly and efficiently. -https://www.open-mpi.org/projects/hwloc/ -# Available modules +homepage: [https://www.open-mpi.org/projects/hwloc/](https://www.open-mpi.org/projects/hwloc/) -The overview below shows which hwloc installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using hwloc, load one of these modules using a `module load` command like: -```shell -module load hwloc/2.9.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|hwloc/2.9.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|hwloc/2.9.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|hwloc/2.8.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|hwloc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.12.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hwloc/2.12.1-GCCcore-14.3.0`| +|2.11.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hwloc/2.11.2-GCCcore-14.2.0`| +|2.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hwloc/2.10.0-GCCcore-13.3.0`| +|2.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hwloc/2.9.2-GCCcore-13.2.0`| +|2.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hwloc/2.9.1-GCCcore-12.3.0`| +|2.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hwloc/2.8.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/hypothesis.md b/docs/available_software/detail/hypothesis.md index 52ed384192..0f853d5e5e 100644 --- a/docs/available_software/detail/hypothesis.md +++ b/docs/available_software/detail/hypothesis.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Hypothesis is an advanced testing library for Python. It lets you write - tests which are parametrized by a source of examples, and then generates simple - and comprehensible examples that make your tests fail. This lets you find more - bugs in your code with less work. + description: "Hypothesis is an advanced testing library for Python. It lets you\ + \ write tests which are parametrized\n by a source of examples, and then generates\ + \ simple and comprehensible examples that make your tests fail. This lets\n you\ + \ find more bugs in your code with less work." license: Not confirmed name: hypothesis offers: @@ -27,33 +25,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''hypothesis/6.68.2-GCCcore-12.2.0'', ''hypothesis/6.82.0-GCCcore-12.3.0'', - ''hypothesis/6.90.0-GCCcore-13.2.0'']' + softwareVersion: '[''6.136.6'', ''6.133.2'', ''6.103.1'', ''6.90.0'', ''6.82.0'', + ''6.68.2'']' url: https://github.com/HypothesisWorks/hypothesis --- +# hypothesis -hypothesis -========== +Hypothesis is an advanced testing library for Python. It lets you write tests which are parametrized + by a source of examples, and then generates simple and comprehensible examples that make your tests fail. This lets + you find more bugs in your code with less work. -Hypothesis is an advanced testing library for Python. It lets you write tests which are parametrized by a source of examples, and then generates simple and comprehensible examples that make your tests fail. This lets you find more bugs in your code with less work. +homepage: [https://github.com/HypothesisWorks/hypothesis](https://github.com/HypothesisWorks/hypothesis) -https://github.com/HypothesisWorks/hypothesis -# Available modules +## Available installations -The overview below shows which hypothesis installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using hypothesis, load one of these modules using a `module load` command like: - -```shell -module load hypothesis/6.90.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|hypothesis/6.90.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|hypothesis/6.82.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|hypothesis/6.68.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|hypothesis version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.136.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hypothesis/6.136.6-GCCcore-14.3.0`| +|6.133.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hypothesis/6.133.2-GCCcore-14.2.0`| +|6.103.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hypothesis/6.103.1-GCCcore-13.3.0`| +|6.90.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hypothesis/6.90.0-GCCcore-13.2.0`| +|6.82.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hypothesis/6.82.0-GCCcore-12.3.0`| +|6.68.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hypothesis/6.68.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/imageio.md b/docs/available_software/detail/imageio.md new file mode 100644 index 0000000000..295daef902 --- /dev/null +++ b/docs/available_software/detail/imageio.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "Imageio is a Python library that provides an easy interface to read\ + \ and write a wide range of\n image data, including animated images, video, volumetric\ + \ data, and scientific formats." + license: Not confirmed + name: imageio + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.37.0'', ''2.36.1'']' + url: https://imageio.github.io +--- +# imageio + + +Imageio is a Python library that provides an easy interface to read and write a wide range of + image data, including animated images, video, volumetric data, and scientific formats. + +homepage: [https://imageio.github.io](https://imageio.github.io) + +## Available installations + + +|imageio version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.37.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`imageio/2.37.0-gfbf-2025a`| +|2.36.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`imageio/2.36.1-gfbf-2024a`| \ No newline at end of file diff --git a/docs/available_software/detail/ipympl.md b/docs/available_software/detail/ipympl.md index 886b1a905c..36e6dfdee3 100644 --- a/docs/available_software/detail/ipympl.md +++ b/docs/available_software/detail/ipympl.md @@ -1,14 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Leveraging the Jupyter interactive widgets framework, ipympl enables - theinteractive features of matplotlib in the Jupyter notebook and in JupyterLab.Besides, - the figure canvas element is a proper Jupyter interactive widget whichcan be positioned - in interactive widget layouts. + description: 'Leveraging the Jupyter interactive widgets framework, ipympl enables + the + + interactive features of matplotlib in the Jupyter notebook and in JupyterLab. + + Besides, the figure canvas element is a proper Jupyter interactive widget which + + can be positioned in interactive widget layouts. + + ' license: Not confirmed name: ipympl offers: @@ -27,37 +31,35 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ipympl/0.9.3-gfbf-2023a'']' + softwareVersion: '[''0.9.3'']' url: https://matplotlib.org/ipympl --- - -ipympl -====== +# ipympl -Leveraging the Jupyter interactive widgets framework, ipympl enables theinteractive features of matplotlib in the Jupyter notebook and in JupyterLab.Besides, the figure canvas element is a proper Jupyter interactive widget whichcan be positioned in interactive widget layouts. +Leveraging the Jupyter interactive widgets framework, ipympl enables the +interactive features of matplotlib in the Jupyter notebook and in JupyterLab. +Besides, the figure canvas element is a proper Jupyter interactive widget which +can be positioned in interactive widget layouts. -https://matplotlib.org/ipympl -# Available modules +homepage: [https://matplotlib.org/ipympl](https://matplotlib.org/ipympl) -The overview below shows which ipympl installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using ipympl, load one of these modules using a `module load` command like: -```shell -module load ipympl/0.9.3-gfbf-2023a -``` +|ipympl version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ipympl/0.9.3-gfbf-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ipympl/0.9.3-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in ipympl installations -### ipympl/0.9.3-gfbf-2023a +### ipympl -This is a list of extensions included in the module: -ipympl-0.9.3 \ No newline at end of file +|`ipympl` version|ipympl modules that include it| +| --- | --- | +|0.9.3|`ipympl/0.9.3-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ipywidgets.md b/docs/available_software/detail/ipywidgets.md new file mode 100644 index 0000000000..cf938012eb --- /dev/null +++ b/docs/available_software/detail/ipywidgets.md @@ -0,0 +1,73 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Jupyter Widgets are interactive browser controls for Jupyter notebooks + license: Not confirmed + name: ipywidgets + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''8.1.2'']' + url: https://jupyter.org/ +--- +# ipywidgets + + +Jupyter Widgets are interactive browser controls for Jupyter notebooks + +homepage: [https://jupyter.org/](https://jupyter.org/) + +## Available installations + + +|ipywidgets version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ipywidgets/8.1.2-GCCcore-13.2.0`| + +## Extensions + +Overview of extensions included in ipywidgets installations + + +### comm + + +|`comm` version|ipywidgets modules that include it| +| --- | --- | +|0.2.2|`ipywidgets/8.1.2-GCCcore-13.2.0`| + +### ipywidgets + + +|`ipywidgets` version|ipywidgets modules that include it| +| --- | --- | +|8.1.2|`ipywidgets/8.1.2-GCCcore-13.2.0`| + +### jupyterlab_widgets + + +|`jupyterlab_widgets` version|ipywidgets modules that include it| +| --- | --- | +|3.0.10|`ipywidgets/8.1.2-GCCcore-13.2.0`| + +### widgetsnbextension + + +|`widgetsnbextension` version|ipywidgets modules that include it| +| --- | --- | +|4.0.10|`ipywidgets/8.1.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/jbigkit.md b/docs/available_software/detail/jbigkit.md index 983c80c34d..c2c0b80cfd 100644 --- a/docs/available_software/detail/jbigkit.md +++ b/docs/available_software/detail/jbigkit.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: JBIG-KIT is a software implementation of the JBIG1 data compression - standard (ITU-T T.82), which was designed for bi-level image data, such as scanned - documents. + description: "JBIG-KIT is a software implementation of the JBIG1 data\n compression\ + \ standard (ITU-T T.82), which was designed for bi-level image\n data, such as\ + \ scanned documents." license: Not confirmed name: jbigkit offers: @@ -26,33 +24,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''jbigkit/2.1-GCCcore-12.2.0'', ''jbigkit/2.1-GCCcore-12.3.0'', - ''jbigkit/2.1-GCCcore-13.2.0'']' + softwareVersion: '[''2.1'']' url: https://www.cl.cam.ac.uk/~mgk25/jbigkit/ --- +# jbigkit -jbigkit -======= +JBIG-KIT is a software implementation of the JBIG1 data + compression standard (ITU-T T.82), which was designed for bi-level image + data, such as scanned documents. -JBIG-KIT is a software implementation of the JBIG1 data compression standard (ITU-T T.82), which was designed for bi-level image data, such as scanned documents. +homepage: [https://www.cl.cam.ac.uk/~mgk25/jbigkit/](https://www.cl.cam.ac.uk/~mgk25/jbigkit/) -https://www.cl.cam.ac.uk/~mgk25/jbigkit/ -# Available modules +## Available installations -The overview below shows which jbigkit installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using jbigkit, load one of these modules using a `module load` command like: - -```shell -module load jbigkit/2.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|jbigkit/2.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|jbigkit/2.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|jbigkit/2.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|jbigkit version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jbigkit/2.1-GCCcore-14.3.0`| +|2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jbigkit/2.1-GCCcore-14.2.0`| +|2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jbigkit/2.1-GCCcore-13.3.0`| +|2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jbigkit/2.1-GCCcore-13.2.0`| +|2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jbigkit/2.1-GCCcore-12.3.0`| +|2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jbigkit/2.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/jedi.md b/docs/available_software/detail/jedi.md index e722a24048..297da2c15a 100644 --- a/docs/available_software/detail/jedi.md +++ b/docs/available_software/detail/jedi.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Jedi - an awesome autocompletion, static analysis and refactoring library - for Python. + description: "\n Jedi - an awesome autocompletion, static analysis and refactoring\ + \ library for Python.\n It is typically used in IDEs/editors plugins. Jedi has\ + \ a focus on autocompletion and goto functionality.\n Other features include\ + \ refactoring, code search and finding references.\n" license: Not confirmed name: jedi offers: @@ -25,44 +25,49 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''jedi/0.19.0-GCCcore-12.3.0'', ''jedi/0.19.1-GCCcore-13.2.0'']' + softwareVersion: '[''0.19.2'', ''0.19.1'', ''0.19.0'']' url: https://github.com/davidhalter/jedi --- +# jedi -jedi -==== -Jedi - an awesome autocompletion, static analysis and refactoring library for Python. + Jedi - an awesome autocompletion, static analysis and refactoring library for Python. + It is typically used in IDEs/editors plugins. Jedi has a focus on autocompletion and goto functionality. + Other features include refactoring, code search and finding references. -https://github.com/davidhalter/jedi -# Available modules +homepage: [https://github.com/davidhalter/jedi](https://github.com/davidhalter/jedi) -The overview below shows which jedi installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using jedi, load one of these modules using a `module load` command like: -```shell -module load jedi/0.19.1-GCCcore-13.2.0 -``` +|jedi version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.19.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jedi/0.19.2-GCCcore-14.3.0`| +|0.19.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jedi/0.19.1-GCCcore-14.2.0`| +|0.19.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jedi/0.19.1-GCCcore-13.3.0`| +|0.19.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jedi/0.19.1-GCCcore-13.2.0`| +|0.19.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jedi/0.19.0-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|jedi/0.19.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|jedi/0.19.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in jedi installations -### jedi/0.19.1-GCCcore-13.2.0 +### jedi -This is a list of extensions included in the module: -jedi-0.19.1, parso-0.8.3 +|`jedi` version|jedi modules that include it| +| --- | --- | +|0.19.2|`jedi/0.19.2-GCCcore-14.3.0`| +|0.19.1|`jedi/0.19.1-GCCcore-14.2.0`
`jedi/0.19.1-GCCcore-13.3.0`
`jedi/0.19.1-GCCcore-13.2.0`| +|0.19.0|`jedi/0.19.0-GCCcore-12.3.0`| -### jedi/0.19.0-GCCcore-12.3.0 +### parso -This is a list of extensions included in the module: -jedi-0.19.0, parso-0.8.3 \ No newline at end of file +|`parso` version|jedi modules that include it| +| --- | --- | +|0.8.4|`jedi/0.19.2-GCCcore-14.3.0`
`jedi/0.19.1-GCCcore-14.2.0`| +|0.8.3|`jedi/0.19.1-GCCcore-13.3.0`
`jedi/0.19.1-GCCcore-13.2.0`
`jedi/0.19.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/jemalloc.md b/docs/available_software/detail/jemalloc.md index 9c5cae05c1..852339976c 100644 --- a/docs/available_software/detail/jemalloc.md +++ b/docs/available_software/detail/jemalloc.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: jemalloc is a general purpose malloc(3) implementation that emphasizes - fragmentation avoidance and scalable concurrency support. + description: "jemalloc is a general purpose malloc(3) implementation that emphasizes\ + \ fragmentation avoidance and\n scalable concurrency support." license: Not confirmed name: jemalloc offers: @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''jemalloc/5.3.0-GCCcore-12.2.0'', ''jemalloc/5.3.0-GCCcore-12.3.0'']' + softwareVersion: '[''5.3.0'']' url: http://jemalloc.net --- +# jemalloc -jemalloc -======== +jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and + scalable concurrency support. -jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support. +homepage: [http://jemalloc.net](http://jemalloc.net) -http://jemalloc.net -# Available modules +## Available installations -The overview below shows which jemalloc installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using jemalloc, load one of these modules using a `module load` command like: - -```shell -module load jemalloc/5.3.0-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|jemalloc/5.3.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|jemalloc/5.3.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|jemalloc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jemalloc/5.3.0-GCCcore-12.3.0`| +|5.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jemalloc/5.3.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/jgmenu.md b/docs/available_software/detail/jgmenu.md new file mode 100644 index 0000000000..075cf75c8e --- /dev/null +++ b/docs/available_software/detail/jgmenu.md @@ -0,0 +1,42 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "jgmenu is simple, independent and contemporary-looking X11 menu, designed\ + \ for\n scripting, modding and tweaking." + license: Not confirmed + name: jgmenu + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''4.5.0'']' + url: https://jgmenu.github.io/ +--- +# jgmenu + + +jgmenu is simple, independent and contemporary-looking X11 menu, designed for + scripting, modding and tweaking. + +homepage: [https://jgmenu.github.io/](https://jgmenu.github.io/) + +## Available installations + + +|jgmenu version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jgmenu/4.5.0-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/jq.md b/docs/available_software/detail/jq.md index 41c7c9d003..6742606773 100644 --- a/docs/available_software/detail/jq.md +++ b/docs/available_software/detail/jq.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''jq/1.6-GCCcore-12.2.0'']' + softwareVersion: '[''1.7.1'', ''1.6'']' url: https://stedolan.github.io/jq/ --- - -jq -== +# jq jq is a lightweight and flexible command-line JSON processor. -https://stedolan.github.io/jq/ -# Available modules - - -The overview below shows which jq installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using jq, load one of these modules using a `module load` command like: +homepage: [https://stedolan.github.io/jq/](https://stedolan.github.io/jq/) -```shell -module load jq/1.6-GCCcore-12.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|jq/1.6-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|jq version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jq/1.7.1-GCCcore-13.3.0`| +|1.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jq/1.6-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/json-c.md b/docs/available_software/detail/json-c.md index ed3e7f8f9a..967871868d 100644 --- a/docs/available_software/detail/json-c.md +++ b/docs/available_software/detail/json-c.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: JSON-C implements a reference counting object model that allows you - to easily construct JSON objects in C, output them as JSON formatted strings and - parse JSON formatted strings back into the C representation of JSONobjects. + description: "JSON-C implements a reference counting object model that allows you\ + \ to easily construct JSON objects\n in C, output them as JSON formatted strings\ + \ and parse JSON formatted strings back into the C representation of JSON\nobjects." license: Not confirmed name: json-c offers: @@ -26,33 +24,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''json-c/0.16-GCCcore-12.2.0'', ''json-c/0.16-GCCcore-12.3.0'', - ''json-c/0.17-GCCcore-13.2.0'']' + softwareVersion: '[''0.17'', ''0.16'']' url: https://github.com/json-c/json-c --- +# json-c -json-c -====== +JSON-C implements a reference counting object model that allows you to easily construct JSON objects + in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSON +objects. -JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into the C representation of JSONobjects. +homepage: [https://github.com/json-c/json-c](https://github.com/json-c/json-c) -https://github.com/json-c/json-c -# Available modules +## Available installations -The overview below shows which json-c installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using json-c, load one of these modules using a `module load` command like: - -```shell -module load json-c/0.17-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|json-c/0.17-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|json-c/0.16-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|json-c/0.16-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|json-c version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`json-c/0.17-GCCcore-13.3.0`| +|0.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`json-c/0.17-GCCcore-13.2.0`| +|0.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`json-c/0.16-GCCcore-12.3.0`| +|0.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`json-c/0.16-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/json-fortran.md b/docs/available_software/detail/json-fortran.md index 870793fa21..2093cf1f93 100644 --- a/docs/available_software/detail/json-fortran.md +++ b/docs/available_software/detail/json-fortran.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''json-fortran/9.0.2-GCC-12.3.0'', ''json-fortran/9.0.2-GCC-13.2.0'']' + softwareVersion: '[''9.0.5'', ''9.0.3'', ''9.0.2'']' url: https://github.com/jacobwilliams/json-fortran --- - -json-fortran -============ +# json-fortran JSON-Fortran: A Modern Fortran JSON API -https://github.com/jacobwilliams/json-fortran -# Available modules - - -The overview below shows which json-fortran installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using json-fortran, load one of these modules using a `module load` command like: +homepage: [https://github.com/jacobwilliams/json-fortran](https://github.com/jacobwilliams/json-fortran) -```shell -module load json-fortran/9.0.2-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|json-fortran/9.0.2-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|json-fortran/9.0.2-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|json-fortran version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.0.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`json-fortran/9.0.5-GCC-14.2.0`| +|9.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`json-fortran/9.0.3-GCC-13.3.0`| +|9.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`json-fortran/9.0.2-GCC-13.2.0`| +|9.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`json-fortran/9.0.2-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/jupyter-server-proxy.md b/docs/available_software/detail/jupyter-server-proxy.md new file mode 100644 index 0000000000..e6c4d37924 --- /dev/null +++ b/docs/available_software/detail/jupyter-server-proxy.md @@ -0,0 +1,77 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Jupyter Server Proxy lets you run arbitrary external processes + + (such as RStudio, Shiny Server, Syncthing, PostgreSQL, Code Server, etc) + + alongside your notebook server and provide authenticated web access to them + + using a path like /rstudio next to others like /lab. Alongside the python + + package that provides the main functionality, the JupyterLab extension + + (@jupyterlab/server-proxy) provides buttons in the JupyterLab launcher window + + to get to RStudio for example.' + license: Not confirmed + name: jupyter-server-proxy + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''4.1.2'']' + url: https://github.com/jupyterhub/jupyter-server-proxy +--- +# jupyter-server-proxy + + +Jupyter Server Proxy lets you run arbitrary external processes +(such as RStudio, Shiny Server, Syncthing, PostgreSQL, Code Server, etc) +alongside your notebook server and provide authenticated web access to them +using a path like /rstudio next to others like /lab. Alongside the python +package that provides the main functionality, the JupyterLab extension +(@jupyterlab/server-proxy) provides buttons in the JupyterLab launcher window +to get to RStudio for example. + +homepage: [https://github.com/jupyterhub/jupyter-server-proxy](https://github.com/jupyterhub/jupyter-server-proxy) + +## Available installations + + +|jupyter-server-proxy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jupyter-server-proxy/4.1.2-GCCcore-13.2.0`| + +## Extensions + +Overview of extensions included in jupyter-server-proxy installations + + +### jupyter_server_proxy + + +|`jupyter_server_proxy` version|jupyter-server-proxy modules that include it| +| --- | --- | +|4.1.2|`jupyter-server-proxy/4.1.2-GCCcore-13.2.0`| + +### simpervisor + + +|`simpervisor` version|jupyter-server-proxy modules that include it| +| --- | --- | +|1.0.0|`jupyter-server-proxy/4.1.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/jupyter-server.md b/docs/available_software/detail/jupyter-server.md index 3785bd4713..5bd08692cc 100644 --- a/docs/available_software/detail/jupyter-server.md +++ b/docs/available_software/detail/jupyter-server.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The Jupyter Server provides the backend (i.e. the core services, APIs, - and RESTendpoints) for Jupyter web applications like Jupyter notebook, JupyterLab, - andVoila. + description: 'The Jupyter Server provides the backend (i.e. the core services, APIs, + and REST + + endpoints) for Jupyter web applications like Jupyter notebook, JupyterLab, and + + Voila.' license: Not confirmed name: jupyter-server offers: @@ -26,37 +27,437 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''jupyter-server/2.7.2-GCCcore-12.3.0'']' + softwareVersion: '[''2.17.0'', ''2.16.0'', ''2.14.2'', ''2.14.0'', ''2.7.2'']' url: https://jupyter.org/ --- +# jupyter-server + + +The Jupyter Server provides the backend (i.e. the core services, APIs, and REST +endpoints) for Jupyter web applications like Jupyter notebook, JupyterLab, and +Voila. + +homepage: [https://jupyter.org/](https://jupyter.org/) + +## Available installations + + +|jupyter-server version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.17.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|2.16.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jupyter-server/2.16.0-GCCcore-14.2.0`| +|2.14.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|2.14.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jupyter-server/2.14.0-GCCcore-13.2.0`| +|2.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in jupyter-server installations + + +### anyio + + +|`anyio` version|jupyter-server modules that include it| +| --- | --- | +|4.11.0|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|4.9.0|`jupyter-server/2.16.0-GCCcore-14.2.0`| +|4.3.0|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|3.7.1|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### argon2-cffi-bindings + + +|`argon2-cffi-bindings` version|jupyter-server modules that include it| +| --- | --- | +|21.2.0|`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`
`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### argon2_cffi + + +|`argon2_cffi` version|jupyter-server modules that include it| +| --- | --- | +|25.1.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|23.1.0|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`
`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### argon2_cffi_bindings + + +|`argon2_cffi_bindings` version|jupyter-server modules that include it| +| --- | --- | +|25.1.0|`jupyter-server/2.17.0-GCCcore-14.3.0`| + +### arrow + + +|`arrow` version|jupyter-server modules that include it| +| --- | --- | +|1.2.3|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### bleach + + +|`bleach` version|jupyter-server modules that include it| +| --- | --- | +|6.2.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|6.1.0|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|6.0.0|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### comm + + +|`comm` version|jupyter-server modules that include it| +| --- | --- | +|0.2.3|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|0.2.2|`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`| +|0.1.4|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### debugpy + + +|`debugpy` version|jupyter-server modules that include it| +| --- | --- | +|1.8.17|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|1.8.14|`jupyter-server/2.16.0-GCCcore-14.2.0`| +|1.8.7|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|1.6.7.post1|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### defusedxml + + +|`defusedxml` version|jupyter-server modules that include it| +| --- | --- | +|0.7.1|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`
`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### deprecation + + +|`deprecation` version|jupyter-server modules that include it| +| --- | --- | +|2.1.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### fastjsonschema + + +|`fastjsonschema` version|jupyter-server modules that include it| +| --- | --- | +|2.21.2|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|2.21.1|`jupyter-server/2.16.0-GCCcore-14.2.0`| +|2.20.0|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|2.19.1|`jupyter-server/2.14.0-GCCcore-13.2.0`| +|2.18.0|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### hatch_jupyter_builder + + +|`hatch_jupyter_builder` version|jupyter-server modules that include it| +| --- | --- | +|0.8.3|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### hatch_nodejs_version + + +|`hatch_nodejs_version` version|jupyter-server modules that include it| +| --- | --- | +|0.3.1|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### ipykernel + + +|`ipykernel` version|jupyter-server modules that include it| +| --- | --- | +|6.30.1|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|6.29.5|`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`| +|6.29.4|`jupyter-server/2.14.0-GCCcore-13.2.0`| +|6.25.1|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### ipython_genutils + + +|`ipython_genutils` version|jupyter-server modules that include it| +| --- | --- | +|0.2.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`
`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### ipywidgets + + +|`ipywidgets` version|jupyter-server modules that include it| +| --- | --- | +|8.1.7|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|8.1.5|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|8.1.0|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### jsonschema + + +|`jsonschema` version|jupyter-server modules that include it| +| --- | --- | +|4.25.1|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|4.24.0|`jupyter-server/2.16.0-GCCcore-14.2.0`| +|4.23.0|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|4.22.0|`jupyter-server/2.14.0-GCCcore-13.2.0`| +|4.18.0|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### jsonschema_specifications + + +|`jsonschema_specifications` version|jupyter-server modules that include it| +| --- | --- | +|2025.9.1|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|2025.4.1|`jupyter-server/2.16.0-GCCcore-14.2.0`| +|2024.10.1|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|2023.12.1|`jupyter-server/2.14.0-GCCcore-13.2.0`| +|2023.7.1|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### jupyter_client + + +|`jupyter_client` version|jupyter-server modules that include it| +| --- | --- | +|8.6.3|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`| +|8.6.1|`jupyter-server/2.14.0-GCCcore-13.2.0`| +|8.3.0|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### jupyter_core + + +|`jupyter_core` version|jupyter-server modules that include it| +| --- | --- | +|5.8.1|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|5.7.2|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|5.3.1|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### jupyter_events + + +|`jupyter_events` version|jupyter-server modules that include it| +| --- | --- | +|0.12.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|0.10.0|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|0.7.0|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### jupyter_packaging + + +|`jupyter_packaging` version|jupyter-server modules that include it| +| --- | --- | +|0.12.3|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### jupyter_server + + +|`jupyter_server` version|jupyter-server modules that include it| +| --- | --- | +|2.17.0|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|2.16.0|`jupyter-server/2.16.0-GCCcore-14.2.0`| +|2.14.2|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|2.14.0|`jupyter-server/2.14.0-GCCcore-13.2.0`| +|2.7.2|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### jupyter_server_terminals + + +|`jupyter_server_terminals` version|jupyter-server modules that include it| +| --- | --- | +|0.5.3|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|0.4.4|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### jupyterlab_pygments + + +|`jupyterlab_pygments` version|jupyter-server modules that include it| +| --- | --- | +|0.3.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|0.2.2|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### jupyterlab_widgets + + +|`jupyterlab_widgets` version|jupyter-server modules that include it| +| --- | --- | +|3.0.15|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|3.0.13|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|3.0.8|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### mistune + + +|`mistune` version|jupyter-server modules that include it| +| --- | --- | +|3.1.4|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|3.1.3|`jupyter-server/2.16.0-GCCcore-14.2.0`| +|3.0.2|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|3.0.1|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### nbclient + + +|`nbclient` version|jupyter-server modules that include it| +| --- | --- | +|0.10.2|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|0.10.0|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|0.8.0|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### nbconvert + + +|`nbconvert` version|jupyter-server modules that include it| +| --- | --- | +|7.16.6|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|7.16.4|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|7.7.4|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### nbformat + + +|`nbformat` version|jupyter-server modules that include it| +| --- | --- | +|5.10.4|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|5.9.2|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### nest_asyncio + + +|`nest_asyncio` version|jupyter-server modules that include it| +| --- | --- | +|1.6.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|1.5.7|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### notebook_shim + + +|`notebook_shim` version|jupyter-server modules that include it| +| --- | --- | +|0.2.4|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|0.2.3|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### overrides + + +|`overrides` version|jupyter-server modules that include it| +| --- | --- | +|7.7.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|7.4.0|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### pandocfilters + + +|`pandocfilters` version|jupyter-server modules that include it| +| --- | --- | +|1.5.1|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|1.5.0|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### prometheus_client + + +|`prometheus_client` version|jupyter-server modules that include it| +| --- | --- | +|0.23.1|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|0.22.1|`jupyter-server/2.16.0-GCCcore-14.2.0`| +|0.21.0|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|0.20.0|`jupyter-server/2.14.0-GCCcore-13.2.0`| +|0.17.1|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### python-json-logger + + +|`python-json-logger` version|jupyter-server modules that include it| +| --- | --- | +|2.0.7|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`
`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### python_json_logger + + +|`python_json_logger` version|jupyter-server modules that include it| +| --- | --- | +|3.3.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| + +### referencing + + +|`referencing` version|jupyter-server modules that include it| +| --- | --- | +|0.36.2|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|0.35.1|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|0.30.2|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### rfc3339_validator + + +|`rfc3339_validator` version|jupyter-server modules that include it| +| --- | --- | +|0.1.4|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`
`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### rfc3986_validator + + +|`rfc3986_validator` version|jupyter-server modules that include it| +| --- | --- | +|0.1.1|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`
`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### rpds_py + + +|`rpds_py` version|jupyter-server modules that include it| +| --- | --- | +|0.27.1|`jupyter-server/2.17.0-GCCcore-14.3.0`| +|0.25.1|`jupyter-server/2.16.0-GCCcore-14.2.0`| +|0.20.0|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|0.18.1|`jupyter-server/2.14.0-GCCcore-13.2.0`| +|0.9.2|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### Send2Trash + + +|`Send2Trash` version|jupyter-server modules that include it| +| --- | --- | +|1.8.3|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|1.8.2|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### sniffio + + +|`sniffio` version|jupyter-server modules that include it| +| --- | --- | +|1.3.1|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|1.3.0|`jupyter-server/2.7.2-GCCcore-12.3.0`| + +### terminado -jupyter-server -============== +|`terminado` version|jupyter-server modules that include it| +| --- | --- | +|0.18.1|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|0.17.1|`jupyter-server/2.7.2-GCCcore-12.3.0`| -The Jupyter Server provides the backend (i.e. the core services, APIs, and RESTendpoints) for Jupyter web applications like Jupyter notebook, JupyterLab, andVoila. +### tinycss2 -https://jupyter.org/ -# Available modules +|`tinycss2` version|jupyter-server modules that include it| +| --- | --- | +|1.4.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|1.3.0|`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| +|1.2.1|`jupyter-server/2.7.2-GCCcore-12.3.0`| -The overview below shows which jupyter-server installations are available per target architecture in EESSI, ordered based on software version (new to old). +### websocket-client -To start using jupyter-server, load one of these modules using a `module load` command like: -```shell -module load jupyter-server/2.7.2-GCCcore-12.3.0 -``` +|`websocket-client` version|jupyter-server modules that include it| +| --- | --- | +|1.6.1|`jupyter-server/2.7.2-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### websocket_client -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|jupyter-server/2.7.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`websocket_client` version|jupyter-server modules that include it| +| --- | --- | +|1.8.0|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`
`jupyter-server/2.14.2-GCCcore-13.3.0`
`jupyter-server/2.14.0-GCCcore-13.2.0`| -### jupyter-server/2.7.2-GCCcore-12.3.0 +### widgetsnbextension -This is a list of extensions included in the module: -anyio-3.7.1, argon2-cffi-bindings-21.2.0, argon2_cffi-23.1.0, arrow-1.2.3, bleach-6.0.0, comm-0.1.4, debugpy-1.6.7.post1, defusedxml-0.7.1, deprecation-2.1.0, fastjsonschema-2.18.0, hatch_jupyter_builder-0.8.3, hatch_nodejs_version-0.3.1, ipykernel-6.25.1, ipython_genutils-0.2.0, ipywidgets-8.1.0, jsonschema-4.18.0, jsonschema_specifications-2023.7.1, jupyter_client-8.3.0, jupyter_core-5.3.1, jupyter_events-0.7.0, jupyter_packaging-0.12.3, jupyter_server-2.7.2, jupyter_server_terminals-0.4.4, jupyterlab_pygments-0.2.2, jupyterlab_widgets-3.0.8, mistune-3.0.1, nbclient-0.8.0, nbconvert-7.7.4, nbformat-5.9.2, nest_asyncio-1.5.7, notebook_shim-0.2.3, overrides-7.4.0, pandocfilters-1.5.0, prometheus_client-0.17.1, python-json-logger-2.0.7, referencing-0.30.2, rfc3339_validator-0.1.4, rfc3986_validator-0.1.1, rpds_py-0.9.2, Send2Trash-1.8.2, sniffio-1.3.0, terminado-0.17.1, tinycss2-1.2.1, websocket-client-1.6.1, widgetsnbextension-4.0.8 \ No newline at end of file +|`widgetsnbextension` version|jupyter-server modules that include it| +| --- | --- | +|4.0.14|`jupyter-server/2.17.0-GCCcore-14.3.0`
`jupyter-server/2.16.0-GCCcore-14.2.0`| +|4.0.13|`jupyter-server/2.14.2-GCCcore-13.3.0`| +|4.0.8|`jupyter-server/2.7.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/jupyter_packaging.md b/docs/available_software/detail/jupyter_packaging.md new file mode 100644 index 0000000000..056d63c019 --- /dev/null +++ b/docs/available_software/detail/jupyter_packaging.md @@ -0,0 +1,43 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Tools to help build and install Jupyter Python packages + + that require a pre-build step that may include JavaScript build steps.' + license: Not confirmed + name: jupyter_packaging + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.12.3'']' + url: http://jupyter.org/ +--- +# jupyter_packaging + + +Tools to help build and install Jupyter Python packages +that require a pre-build step that may include JavaScript build steps. + +homepage: [http://jupyter.org/](http://jupyter.org/) + +## Available installations + + +|jupyter_packaging version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.12.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jupyter_packaging/0.12.3-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/jupyterlmod.md b/docs/available_software/detail/jupyterlmod.md index f69ed4b539..3489436321 100644 --- a/docs/available_software/detail/jupyterlmod.md +++ b/docs/available_software/detail/jupyterlmod.md @@ -1,14 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Jupyter interactive notebook server extension that allows users to - interact withenvironment modules before launching kernels. The extension uses - Lmod's Pythoninterface to accomplish module-related tasks like loading, unloading, - savingcollections, etc. + description: 'Jupyter interactive notebook server extension that allows users to + interact with + + environment modules before launching kernels. The extension uses Lmod''s Python + + interface to accomplish module-related tasks like loading, unloading, saving + + collections, etc.' license: Not confirmed name: jupyterlmod offers: @@ -27,37 +29,39 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''jupyterlmod/4.0.3-GCCcore-12.3.0'']' + softwareVersion: '[''5.3.0'', ''5.2.2'', ''4.0.3'']' url: https://github.com/cmd-ntrf/jupyter-lmod --- +# jupyterlmod -jupyterlmod -=========== - - -Jupyter interactive notebook server extension that allows users to interact withenvironment modules before launching kernels. The extension uses Lmod's Pythoninterface to accomplish module-related tasks like loading, unloading, savingcollections, etc. -https://github.com/cmd-ntrf/jupyter-lmod -# Available modules +Jupyter interactive notebook server extension that allows users to interact with +environment modules before launching kernels. The extension uses Lmod's Python +interface to accomplish module-related tasks like loading, unloading, saving +collections, etc. +homepage: [https://github.com/cmd-ntrf/jupyter-lmod](https://github.com/cmd-ntrf/jupyter-lmod) -The overview below shows which jupyterlmod installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using jupyterlmod, load one of these modules using a `module load` command like: -```shell -module load jupyterlmod/4.0.3-GCCcore-12.3.0 -``` +|jupyterlmod version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jupyterlmod/5.3.0-GCCcore-14.3.0`| +|5.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jupyterlmod/5.2.2-GCCcore-14.2.0`| +|5.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jupyterlmod/5.2.2-GCCcore-13.3.0`| +|4.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`jupyterlmod/4.0.3-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|jupyterlmod/4.0.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in jupyterlmod installations -### jupyterlmod/4.0.3-GCCcore-12.3.0 +### jupyterlmod -This is a list of extensions included in the module: -jupyterlmod-4.0.3 \ No newline at end of file +|`jupyterlmod` version|jupyterlmod modules that include it| +| --- | --- | +|5.3.0|`jupyterlmod/5.3.0-GCCcore-14.3.0`| +|5.2.2|`jupyterlmod/5.2.2-GCCcore-14.2.0`
`jupyterlmod/5.2.2-GCCcore-13.3.0`| +|4.0.3|`jupyterlmod/4.0.3-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/jxrlib.md b/docs/available_software/detail/jxrlib.md new file mode 100644 index 0000000000..1761c53e50 --- /dev/null +++ b/docs/available_software/detail/jxrlib.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Open source implementation of jpegxr + license: Not confirmed + name: jxrlib + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2019.10.9'']' + url: https://github.com/4creators/jxrlib +--- +# jxrlib + + +Open source implementation of jpegxr + +homepage: [https://github.com/4creators/jxrlib](https://github.com/4creators/jxrlib) + +## Available installations + + +|jxrlib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2019.10.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`jxrlib/2019.10.9-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/kim-api.md b/docs/available_software/detail/kim-api.md index d72585ce96..0e70fcdfa3 100644 --- a/docs/available_software/detail/kim-api.md +++ b/docs/available_software/detail/kim-api.md @@ -1,17 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Open Knowledgebase of Interatomic Models.KIM is an API and OpenKIM - is a collection of interatomic models (potentials) foratomistic simulations. This - is a library that can be used by simulation programsto get access to the models - in the OpenKIM database.This EasyBuild only installs the API, the models can be - installed with thepackage openkim-models, or the user can install them manually - by running kim-api-collections-management install user MODELNAMEor kim-api-collections-management - install user OpenKIMto install them all. + description: "Open Knowledgebase of Interatomic Models.\n\nKIM is an API and OpenKIM\ + \ is a collection of interatomic models (potentials) for\natomistic simulations.\ + \ This is a library that can be used by simulation programs\nto get access to\ + \ the models in the OpenKIM database.\n\nThis EasyBuild only installs the API,\ + \ the models can be installed with the\npackage openkim-models, or the user can\ + \ install them manually by running\n kim-api-collections-management install\ + \ user MODELNAME\nor\n kim-api-collections-management install user OpenKIM\n\ + to install them all.\n " license: Not confirmed name: kim-api offers: @@ -30,31 +29,33 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''kim-api/2.3.0-GCC-12.3.0'', ''kim-api/2.3.0-GCC-13.2.0'']' + softwareVersion: '[''2.4.1'', ''2.3.0'']' url: https://openkim.org/ --- +# kim-api -kim-api -======= +Open Knowledgebase of Interatomic Models. -Open Knowledgebase of Interatomic Models.KIM is an API and OpenKIM is a collection of interatomic models (potentials) foratomistic simulations. This is a library that can be used by simulation programsto get access to the models in the OpenKIM database.This EasyBuild only installs the API, the models can be installed with thepackage openkim-models, or the user can install them manually by running kim-api-collections-management install user MODELNAMEor kim-api-collections-management install user OpenKIMto install them all. +KIM is an API and OpenKIM is a collection of interatomic models (potentials) for +atomistic simulations. This is a library that can be used by simulation programs +to get access to the models in the OpenKIM database. -https://openkim.org/ -# Available modules +This EasyBuild only installs the API, the models can be installed with the +package openkim-models, or the user can install them manually by running + kim-api-collections-management install user MODELNAME +or + kim-api-collections-management install user OpenKIM +to install them all. + +homepage: [https://openkim.org/](https://openkim.org/) -The overview below shows which kim-api installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using kim-api, load one of these modules using a `module load` command like: -```shell -module load kim-api/2.3.0-GCC-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|kim-api/2.3.0-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|kim-api/2.3.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|kim-api version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`kim-api/2.4.1-GCC-13.3.0`| +|2.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`kim-api/2.3.0-GCC-13.2.0`| +|2.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`kim-api/2.3.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/labwc.md b/docs/available_software/detail/labwc.md new file mode 100644 index 0000000000..3d71c0b513 --- /dev/null +++ b/docs/available_software/detail/labwc.md @@ -0,0 +1,60 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Labwc is a wlroots-based window-stacking compositor for Wayland, inspired + by Openbox. + license: Not confirmed + name: labwc + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.3'']' + url: https://labwc.github.io +--- +# labwc + + +Labwc is a wlroots-based window-stacking compositor for Wayland, inspired by Openbox. + +homepage: [https://labwc.github.io](https://labwc.github.io) + +## Available installations + + +|labwc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`labwc/0.9.3-GCCcore-14.3.0`| + +## Extensions + +Overview of extensions included in labwc installations + + +### labwc + + +|`labwc` version|labwc modules that include it| +| --- | --- | +|0.9.3|`labwc/0.9.3-GCCcore-14.3.0`| + +### wlroots + + +|`wlroots` version|labwc modules that include it| +| --- | --- | +|0.19.2|`labwc/0.9.3-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/lfoss.md b/docs/available_software/detail/lfoss.md new file mode 100644 index 0000000000..9b595ba50b --- /dev/null +++ b/docs/available_software/detail/lfoss.md @@ -0,0 +1,42 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "GNU Compiler Collection (GCC) based compiler toolchain, including\n\ + \ OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK." + license: Not confirmed + name: lfoss + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2025b'']' + url: https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain +--- +# lfoss + + +GNU Compiler Collection (GCC) based compiler toolchain, including + OpenMPI for MPI support, OpenBLAS (BLAS and LAPACK support), FFTW and ScaLAPACK. + +homepage: [https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain](https://easybuild.readthedocs.io/en/master/Common-toolchains.html#foss-toolchain) + +## Available installations + + +|lfoss version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lfoss/2025b`| \ No newline at end of file diff --git a/docs/available_software/detail/libGLU.md b/docs/available_software/detail/libGLU.md index 4fbc5803ee..12052572b1 100644 --- a/docs/available_software/detail/libGLU.md +++ b/docs/available_software/detail/libGLU.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The OpenGL Utility Library (GLU) is a computer graphics library for - OpenGL. + description: 'The OpenGL Utility Library (GLU) is a computer graphics library for + OpenGL. ' license: Not confirmed name: libGLU offers: @@ -25,33 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libGLU/9.0.2-GCCcore-12.2.0'', ''libGLU/9.0.3-GCCcore-12.3.0'', - ''libGLU/9.0.3-GCCcore-13.2.0'']' + softwareVersion: '[''9.0.3'', ''9.0.2'']' url: https://mesa.freedesktop.org/archive/glu/ --- +# libGLU -libGLU -====== +The OpenGL Utility Library (GLU) is a computer graphics library for OpenGL. -The OpenGL Utility Library (GLU) is a computer graphics library for OpenGL. +homepage: [https://mesa.freedesktop.org/archive/glu/](https://mesa.freedesktop.org/archive/glu/) -https://mesa.freedesktop.org/archive/glu/ -# Available modules +## Available installations -The overview below shows which libGLU installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libGLU, load one of these modules using a `module load` command like: - -```shell -module load libGLU/9.0.3-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libGLU/9.0.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libGLU/9.0.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libGLU/9.0.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libGLU version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libGLU/9.0.3-GCCcore-14.2.0`| +|9.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libGLU/9.0.3-GCCcore-13.3.0`| +|9.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libGLU/9.0.3-GCCcore-13.2.0`| +|9.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libGLU/9.0.3-GCCcore-12.3.0`| +|9.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libGLU/9.0.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libGridXC.md b/docs/available_software/detail/libGridXC.md index 8065234350..51835e3abb 100644 --- a/docs/available_software/detail/libGridXC.md +++ b/docs/available_software/detail/libGridXC.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A library to compute the exchange and correlation energy and potential - in spherical (i.e. atoms) or periodic systems. + description: "A library to compute the exchange and correlation energy\n and potential\ + \ in spherical (i.e. atoms) or periodic systems." license: Not confirmed name: libGridXC offers: @@ -25,30 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libGridXC/2.0.2-gompi-2023a'']' + softwareVersion: '[''2.0.2'']' url: https://gitlab.com/siesta-project/libraries/libgridxc --- +# libGridXC -libGridXC -========= +A library to compute the exchange and correlation energy + and potential in spherical (i.e. atoms) or periodic systems. -A library to compute the exchange and correlation energy and potential in spherical (i.e. atoms) or periodic systems. +homepage: [https://gitlab.com/siesta-project/libraries/libgridxc](https://gitlab.com/siesta-project/libraries/libgridxc) -https://gitlab.com/siesta-project/libraries/libgridxc -# Available modules +## Available installations -The overview below shows which libGridXC installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libGridXC, load one of these modules using a `module load` command like: - -```shell -module load libGridXC/2.0.2-gompi-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libGridXC/2.0.2-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libGridXC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libGridXC/2.0.2-gompi-2024a`| +|2.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libGridXC/2.0.2-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/libPSML.md b/docs/available_software/detail/libPSML.md index bbfa00e72c..897596decc 100644 --- a/docs/available_software/detail/libPSML.md +++ b/docs/available_software/detail/libPSML.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libPSML/2.1.0-GCC-12.3.0'']' + softwareVersion: '[''2.1.0'']' url: https://gitlab.com/siesta-project/libraries/libpsml --- - -libPSML -======= +# libPSML A library to handle pseudopotentials in PSML format -https://gitlab.com/siesta-project/libraries/libpsml -# Available modules - - -The overview below shows which libPSML installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libPSML, load one of these modules using a `module load` command like: +homepage: [https://gitlab.com/siesta-project/libraries/libpsml](https://gitlab.com/siesta-project/libraries/libpsml) -```shell -module load libPSML/2.1.0-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libPSML/2.1.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libPSML version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libPSML/2.1.0-GCC-13.3.0`| +|2.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libPSML/2.1.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libaec.md b/docs/available_software/detail/libaec.md index d9fad9ef33..b81b7c1671 100644 --- a/docs/available_software/detail/libaec.md +++ b/docs/available_software/detail/libaec.md @@ -1,16 +1,19 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Libaec provides fast lossless compression of 1 up to 32 bit wide signed - or unsigned integers(samples). The library achieves best results for low entropy - data as often encountered in space imaginginstrument data or numerical model output - from weather or climate simulations. While floating point representationsare not - directly supported, they can also be efficiently coded by grouping exponents and - mantissa. + description: 'Libaec provides fast lossless compression of 1 up to 32 bit wide signed + or unsigned integers + + (samples). The library achieves best results for low entropy data as often encountered + in space imaging + + instrument data or numerical model output from weather or climate simulations. + While floating point representations + + are not directly supported, they can also be efficiently coded by grouping exponents + and mantissa.' license: Not confirmed name: libaec offers: @@ -29,31 +32,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libaec/1.0.6-GCCcore-12.3.0'', ''libaec/1.0.6-GCCcore-13.2.0'']' + softwareVersion: '[''1.1.4'', ''1.0.6'']' url: https://gitlab.dkrz.de/k202009/libaec --- - -libaec -====== - - -Libaec provides fast lossless compression of 1 up to 32 bit wide signed or unsigned integers(samples). The library achieves best results for low entropy data as often encountered in space imaginginstrument data or numerical model output from weather or climate simulations. While floating point representationsare not directly supported, they can also be efficiently coded by grouping exponents and mantissa. - -https://gitlab.dkrz.de/k202009/libaec -# Available modules +# libaec -The overview below shows which libaec installations are available per target architecture in EESSI, ordered based on software version (new to old). +Libaec provides fast lossless compression of 1 up to 32 bit wide signed or unsigned integers +(samples). The library achieves best results for low entropy data as often encountered in space imaging +instrument data or numerical model output from weather or climate simulations. While floating point representations +are not directly supported, they can also be efficiently coded by grouping exponents and mantissa. -To start using libaec, load one of these modules using a `module load` command like: +homepage: [https://gitlab.dkrz.de/k202009/libaec](https://gitlab.dkrz.de/k202009/libaec) -```shell -module load libaec/1.0.6-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libaec/1.0.6-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libaec/1.0.6-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libaec version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.1.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libaec/1.1.4-GCCcore-14.3.0`| +|1.0.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libaec/1.0.6-GCCcore-13.2.0`| +|1.0.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libaec/1.0.6-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libaio.md b/docs/available_software/detail/libaio.md index 9722179590..09b50487cd 100644 --- a/docs/available_software/detail/libaio.md +++ b/docs/available_software/detail/libaio.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libaio/0.3.113-GCCcore-12.2.0'', ''libaio/0.3.113-GCCcore-12.3.0'']' + softwareVersion: '[''0.3.113'']' url: https://pagure.io/libaio --- - -libaio -====== +# libaio Asynchronous input/output library that uses the kernels native interface. -https://pagure.io/libaio -# Available modules - - -The overview below shows which libaio installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libaio, load one of these modules using a `module load` command like: +homepage: [https://pagure.io/libaio](https://pagure.io/libaio) -```shell -module load libaio/0.3.113-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libaio/0.3.113-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libaio/0.3.113-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libaio version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.3.113|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libaio/0.3.113-GCCcore-12.3.0`| +|0.3.113|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libaio/0.3.113-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libaom.md b/docs/available_software/detail/libaom.md new file mode 100644 index 0000000000..ea17ee0409 --- /dev/null +++ b/docs/available_software/detail/libaom.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: AV1 video codec library reference implementation, published by the + Alliance for Open Media. + license: Not confirmed + name: libaom + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''3.10.0'']' + url: https://aomedia.googlesource.com/aom/ +--- +# libaom + + +AV1 video codec library reference implementation, published by the Alliance for Open Media. + +homepage: [https://aomedia.googlesource.com/aom/](https://aomedia.googlesource.com/aom/) + +## Available installations + + +|libaom version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libaom/3.10.0-GCCcore-14.3.0`| +|3.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libaom/3.10.0-GCCcore-14.2.0`| +|3.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libaom/3.10.0-GCCcore-13.3.0`| +|3.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libaom/3.10.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libarchive.md b/docs/available_software/detail/libarchive.md index 01ab60ad91..5f19931001 100644 --- a/docs/available_software/detail/libarchive.md +++ b/docs/available_software/detail/libarchive.md @@ -1,11 +1,9 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Multi-format archive and compression library + description: "\n Multi-format archive and compression library\n" license: Not confirmed name: libarchive offers: @@ -24,33 +22,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libarchive/3.6.1-GCCcore-12.2.0'', ''libarchive/3.6.2-GCCcore-12.3.0'', - ''libarchive/3.7.2-GCCcore-13.2.0'']' + softwareVersion: '[''3.8.1'', ''3.7.7'', ''3.7.4'', ''3.7.2'', ''3.6.2'', ''3.6.1'']' url: https://www.libarchive.org/ --- +# libarchive -libarchive -========== -Multi-format archive and compression library + Multi-format archive and compression library -https://www.libarchive.org/ -# Available modules +homepage: [https://www.libarchive.org/](https://www.libarchive.org/) -The overview below shows which libarchive installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using libarchive, load one of these modules using a `module load` command like: -```shell -module load libarchive/3.7.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libarchive/3.7.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libarchive/3.6.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libarchive/3.6.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libarchive version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libarchive/3.8.1-GCCcore-14.3.0`| +|3.7.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libarchive/3.7.7-GCCcore-14.2.0`| +|3.7.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libarchive/3.7.4-GCCcore-13.3.0`| +|3.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libarchive/3.7.2-GCCcore-13.2.0`| +|3.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libarchive/3.6.2-GCCcore-12.3.0`| +|3.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libarchive/3.6.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libavif.md b/docs/available_software/detail/libavif.md index f080f54275..ed0c4b9f00 100644 --- a/docs/available_software/detail/libavif.md +++ b/docs/available_software/detail/libavif.md @@ -1,12 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication description: 'This library aims to be a friendly, portable C implementation of the - AV1 Image File Format,as described here: https://aomediacodec.github.io/av1-avif/' + AV1 Image File Format, + + as described here: https://aomediacodec.github.io/av1-avif/ + + ' license: Not confirmed name: libavif offers: @@ -25,30 +27,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libavif/1.0.4-GCCcore-12.3.0'']' + softwareVersion: '[''1.0.4'']' url: https://github.com/AOMediaCodec/libavif --- +# libavif -libavif -======= - - -This library aims to be a friendly, portable C implementation of the AV1 Image File Format,as described here: https://aomediacodec.github.io/av1-avif/ - -https://github.com/AOMediaCodec/libavif -# Available modules +This library aims to be a friendly, portable C implementation of the AV1 Image File Format, +as described here: https://aomediacodec.github.io/av1-avif/ -The overview below shows which libavif installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using libavif, load one of these modules using a `module load` command like: +homepage: [https://github.com/AOMediaCodec/libavif](https://github.com/AOMediaCodec/libavif) -```shell -module load libavif/1.0.4-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libavif/1.0.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libavif version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libavif/1.0.4-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libcerf.md b/docs/available_software/detail/libcerf.md index e4f3431147..a0a3dc78b4 100644 --- a/docs/available_software/detail/libcerf.md +++ b/docs/available_software/detail/libcerf.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: libcerf is a self-contained numeric library that provides an efficient - and accurate implementation of complex error functions, along with Dawson, Faddeeva, - and Voigt functions. + description: "\n libcerf is a self-contained numeric library that provides an efficient\ + \ and\n accurate implementation of complex error functions, along with Dawson,\n\ + \ Faddeeva, and Voigt functions.\n" license: Not confirmed name: libcerf offers: @@ -26,31 +24,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libcerf/2.3-GCCcore-12.2.0'', ''libcerf/2.3-GCCcore-12.3.0'']' + softwareVersion: '[''2.3'']' url: https://jugit.fz-juelich.de/mlz/libcerf --- +# libcerf -libcerf -======= -libcerf is a self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions. + libcerf is a self-contained numeric library that provides an efficient and + accurate implementation of complex error functions, along with Dawson, + Faddeeva, and Voigt functions. -https://jugit.fz-juelich.de/mlz/libcerf -# Available modules +homepage: [https://jugit.fz-juelich.de/mlz/libcerf](https://jugit.fz-juelich.de/mlz/libcerf) -The overview below shows which libcerf installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using libcerf, load one of these modules using a `module load` command like: -```shell -module load libcerf/2.3-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libcerf/2.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libcerf/2.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libcerf version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libcerf/2.3-GCCcore-12.3.0`| +|2.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libcerf/2.3-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libcint.md b/docs/available_software/detail/libcint.md index 727121d861..3d852d3de3 100644 --- a/docs/available_software/detail/libcint.md +++ b/docs/available_software/detail/libcint.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libcint/5.4.0-gfbf-2023a'']' + softwareVersion: '[''5.4.0'']' url: https://github.com/sunqm/libcint --- - -libcint -======= +# libcint libcint is an open source library for analytical Gaussian integrals. -https://github.com/sunqm/libcint -# Available modules - - -The overview below shows which libcint installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libcint, load one of these modules using a `module load` command like: +homepage: [https://github.com/sunqm/libcint](https://github.com/sunqm/libcint) -```shell -module load libcint/5.4.0-gfbf-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libcint/5.4.0-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libcint version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libcint/5.4.0-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/libclc.md b/docs/available_software/detail/libclc.md new file mode 100644 index 0000000000..bb1fdc9a14 --- /dev/null +++ b/docs/available_software/detail/libclc.md @@ -0,0 +1,50 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' + + libclc is an open source, BSD/MIT dual licensed implementation of the library + requirements of the OpenCL + + C programming language, as specified by the OpenCL 1.1 Specification. + + ' + license: Not confirmed + name: libclc + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''20.1.8'']' + url: https://libclc.llvm.org/ +--- +# libclc + + + +libclc is an open source, BSD/MIT dual licensed implementation of the library requirements of the OpenCL +C programming language, as specified by the OpenCL 1.1 Specification. + + +homepage: [https://libclc.llvm.org/](https://libclc.llvm.org/) + +## Available installations + + +|libclc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|20.1.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libclc/20.1.8-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libconfig.md b/docs/available_software/detail/libconfig.md new file mode 100644 index 0000000000..85fa3c61dd --- /dev/null +++ b/docs/available_software/detail/libconfig.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Libconfig is a simple library for processing structured configuration + files + license: Not confirmed + name: libconfig + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.8.1'']' + url: https://hyperrealm.github.io/libconfig +--- +# libconfig + + +Libconfig is a simple library for processing structured configuration files + +homepage: [https://hyperrealm.github.io/libconfig](https://hyperrealm.github.io/libconfig) + +## Available installations + + +|libconfig version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libconfig/1.8.1-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libcroco.md b/docs/available_software/detail/libcroco.md new file mode 100644 index 0000000000..6de55e886a --- /dev/null +++ b/docs/available_software/detail/libcroco.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Libcroco is a standalone css2 parsing and manipulation library. + license: Not confirmed + name: libcroco + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.6.13'']' + url: https://gitlab.gnome.org/Archive/libcroco +--- +# libcroco + + +Libcroco is a standalone css2 parsing and manipulation library. + +homepage: [https://gitlab.gnome.org/Archive/libcroco](https://gitlab.gnome.org/Archive/libcroco) + +## Available installations + + +|libcroco version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.6.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libcroco/0.6.13-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libdap.md b/docs/available_software/detail/libdap.md index 397f4ed91a..fa15ff5e31 100644 --- a/docs/available_software/detail/libdap.md +++ b/docs/available_software/detail/libdap.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A C++ SDK which contains an implementation of DAP 2.0 and DAP4.0. This - includes both Client- and Server-side support classes. + description: "A C++ SDK which contains an implementation of DAP 2.0 and\n DAP4.0.\ + \ This includes both Client- and Server-side support classes." license: Not confirmed name: libdap offers: @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libdap/3.20.11-GCCcore-12.3.0'']' + softwareVersion: '[''3.20.11'']' url: https://www.opendap.org/software/libdap --- +# libdap -libdap -====== +A C++ SDK which contains an implementation of DAP 2.0 and + DAP4.0. This includes both Client- and Server-side support classes. -A C++ SDK which contains an implementation of DAP 2.0 and DAP4.0. This includes both Client- and Server-side support classes. +homepage: [https://www.opendap.org/software/libdap](https://www.opendap.org/software/libdap) -https://www.opendap.org/software/libdap -# Available modules +## Available installations -The overview below shows which libdap installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libdap, load one of these modules using a `module load` command like: - -```shell -module load libdap/3.20.11-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libdap/3.20.11-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libdap version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.20.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libdap/3.20.11-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libde265.md b/docs/available_software/detail/libde265.md index bb7e84a87b..1c4b0e8202 100644 --- a/docs/available_software/detail/libde265.md +++ b/docs/available_software/detail/libde265.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libde265/1.0.15-GCCcore-12.3.0'', ''libde265/1.0.15-GCCcore-13.2.0'']' + softwareVersion: '[''1.0.16'', ''1.0.15'']' url: https://github.com/strukturag/libde265 --- - -libde265 -======== +# libde265 libde265 is an open source implementation of the h.265 video codec -https://github.com/strukturag/libde265 -# Available modules - - -The overview below shows which libde265 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libde265, load one of these modules using a `module load` command like: +homepage: [https://github.com/strukturag/libde265](https://github.com/strukturag/libde265) -```shell -module load libde265/1.0.15-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libde265/1.0.15-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libde265/1.0.15-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libde265 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libde265/1.0.16-GCCcore-14.3.0`| +|1.0.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libde265/1.0.16-GCCcore-14.2.0`| +|1.0.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libde265/1.0.15-GCCcore-13.3.0`| +|1.0.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libde265/1.0.15-GCCcore-13.2.0`| +|1.0.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libde265/1.0.15-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libdeflate.md b/docs/available_software/detail/libdeflate.md index 077f366fbf..949eed3fef 100644 --- a/docs/available_software/detail/libdeflate.md +++ b/docs/available_software/detail/libdeflate.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libdeflate/1.15-GCCcore-12.2.0'', ''libdeflate/1.18-GCCcore-12.3.0'', - ''libdeflate/1.19-GCCcore-13.2.0'']' + softwareVersion: '[''1.24'', ''1.20'', ''1.19'', ''1.18'', ''1.15'']' url: https://github.com/ebiggers/libdeflate --- - -libdeflate -========== +# libdeflate Heavily optimized library for DEFLATE/zlib/gzip compression and decompression. -https://github.com/ebiggers/libdeflate -# Available modules - - -The overview below shows which libdeflate installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libdeflate, load one of these modules using a `module load` command like: +homepage: [https://github.com/ebiggers/libdeflate](https://github.com/ebiggers/libdeflate) -```shell -module load libdeflate/1.19-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libdeflate/1.19-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libdeflate/1.18-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libdeflate/1.15-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libdeflate version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.24|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libdeflate/1.24-GCCcore-14.3.0`| +|1.24|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libdeflate/1.24-GCCcore-14.2.0`| +|1.20|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libdeflate/1.20-GCCcore-13.3.0`| +|1.19|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libdeflate/1.19-GCCcore-13.2.0`| +|1.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libdeflate/1.18-GCCcore-12.3.0`| +|1.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libdeflate/1.15-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libdisplay-info.md b/docs/available_software/detail/libdisplay-info.md new file mode 100644 index 0000000000..760d331e81 --- /dev/null +++ b/docs/available_software/detail/libdisplay-info.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: EDID and DisplayID library + license: Not confirmed + name: libdisplay-info + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.3.0'']' + url: https://gitlab.freedesktop.org/emersion/libdisplay-info +--- +# libdisplay-info + + +EDID and DisplayID library + +homepage: [https://gitlab.freedesktop.org/emersion/libdisplay-info](https://gitlab.freedesktop.org/emersion/libdisplay-info) + +## Available installations + + +|libdisplay-info version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libdisplay-info/0.3.0-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libdrm.md b/docs/available_software/detail/libdrm.md index 1f8a06f9dd..e22d4f2581 100644 --- a/docs/available_software/detail/libdrm.md +++ b/docs/available_software/detail/libdrm.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libdrm/2.4.114-GCCcore-12.2.0'', ''libdrm/2.4.115-GCCcore-12.3.0'', - ''libdrm/2.4.117-GCCcore-13.2.0'']' + softwareVersion: '[''2.4.125'', ''2.4.122'', ''2.4.117'', ''2.4.115'', ''2.4.114'']' url: https://dri.freedesktop.org --- - -libdrm -====== +# libdrm Direct Rendering Manager runtime library. -https://dri.freedesktop.org -# Available modules - - -The overview below shows which libdrm installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libdrm, load one of these modules using a `module load` command like: +homepage: [https://dri.freedesktop.org](https://dri.freedesktop.org) -```shell -module load libdrm/2.4.117-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libdrm/2.4.117-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libdrm/2.4.115-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libdrm/2.4.114-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libdrm version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.4.125|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libdrm/2.4.125-GCCcore-14.3.0`| +|2.4.125|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libdrm/2.4.125-GCCcore-14.2.0`| +|2.4.122|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libdrm/2.4.122-GCCcore-13.3.0`| +|2.4.117|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libdrm/2.4.117-GCCcore-13.2.0`| +|2.4.115|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libdrm/2.4.115-GCCcore-12.3.0`| +|2.4.114|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libdrm/2.4.114-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libdwarf.md b/docs/available_software/detail/libdwarf.md index 9c6784ad68..8ec7f6ef9b 100644 --- a/docs/available_software/detail/libdwarf.md +++ b/docs/available_software/detail/libdwarf.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The DWARF Debugging Information Format is of interest to programmers - working on compilersand debuggers (and anyone interested in reading or writing - DWARF information)) + description: 'The DWARF Debugging Information Format is of interest to programmers + working on compilers + + and debuggers (and anyone interested in reading or writing DWARF information))' license: Not confirmed name: libdwarf offers: @@ -26,30 +25,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libdwarf/0.9.2-GCCcore-13.2.0'']' + softwareVersion: '[''0.9.2'']' url: https://www.prevanders.net/dwarf.html --- - -libdwarf -======== - - -The DWARF Debugging Information Format is of interest to programmers working on compilersand debuggers (and anyone interested in reading or writing DWARF information)) - -https://www.prevanders.net/dwarf.html -# Available modules +# libdwarf -The overview below shows which libdwarf installations are available per target architecture in EESSI, ordered based on software version (new to old). +The DWARF Debugging Information Format is of interest to programmers working on compilers +and debuggers (and anyone interested in reading or writing DWARF information)) -To start using libdwarf, load one of these modules using a `module load` command like: +homepage: [https://www.prevanders.net/dwarf.html](https://www.prevanders.net/dwarf.html) -```shell -module load libdwarf/0.9.2-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libdwarf/0.9.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libdwarf version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libdwarf/0.9.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libedit.md b/docs/available_software/detail/libedit.md new file mode 100644 index 0000000000..5ddd0b8c4b --- /dev/null +++ b/docs/available_software/detail/libedit.md @@ -0,0 +1,45 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "\n This BSD-style licensed command line editor library provides generic\ + \ line editing,\n history, and tokenization functions, similar to those found\ + \ in GNU Readline.\n" + license: Not confirmed + name: libedit + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''20240808'']' + url: https://thrysoee.dk/editline/ +--- +# libedit + + + + This BSD-style licensed command line editor library provides generic line editing, + history, and tokenization functions, similar to those found in GNU Readline. + + +homepage: [https://thrysoee.dk/editline/](https://thrysoee.dk/editline/) + +## Available installations + + +|libedit version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|20240808|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libedit/20240808-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libepoxy.md b/docs/available_software/detail/libepoxy.md index 54cb934ece..0814b33826 100644 --- a/docs/available_software/detail/libepoxy.md +++ b/docs/available_software/detail/libepoxy.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libepoxy/1.5.10-GCCcore-12.2.0'', ''libepoxy/1.5.10-GCCcore-12.3.0'', - ''libepoxy/1.5.10-GCCcore-13.2.0'']' + softwareVersion: '[''1.5.10'']' url: https://github.com/anholt/libepoxy --- - -libepoxy -======== +# libepoxy Epoxy is a library for handling OpenGL function pointer management for you -https://github.com/anholt/libepoxy -# Available modules - - -The overview below shows which libepoxy installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libepoxy, load one of these modules using a `module load` command like: +homepage: [https://github.com/anholt/libepoxy](https://github.com/anholt/libepoxy) -```shell -module load libepoxy/1.5.10-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libepoxy/1.5.10-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libepoxy/1.5.10-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libepoxy/1.5.10-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libepoxy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.5.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libepoxy/1.5.10-GCCcore-14.3.0`| +|1.5.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libepoxy/1.5.10-GCCcore-13.3.0`| +|1.5.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libepoxy/1.5.10-GCCcore-13.2.0`| +|1.5.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libepoxy/1.5.10-GCCcore-12.3.0`| +|1.5.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libepoxy/1.5.10-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libev.md b/docs/available_software/detail/libev.md index 59c22a8586..c35aabb799 100644 --- a/docs/available_software/detail/libev.md +++ b/docs/available_software/detail/libev.md @@ -1,14 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A full-featured and high-performance (see benchmark)event loop that - is loosely modelled after libevent, but without itslimitations and bugs. It is - used in GNU Virtual Private Ethernet,rxvt-unicode, auditd, the Deliantra MORPG - Server and Client, and manyother programs. + description: 'A full-featured and high-performance (see benchmark) + + event loop that is loosely modelled after libevent, but without its + + limitations and bugs. It is used in GNU Virtual Private Ethernet, + + rxvt-unicode, auditd, the Deliantra MORPG Server and Client, and many + + other programs.' license: Not confirmed name: libev offers: @@ -27,30 +30,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libev/4.33-GCC-12.3.0'']' + softwareVersion: '[''4.33'']' url: http://software.schmorp.de/pkg/libev.html --- - -libev -===== - - -A full-featured and high-performance (see benchmark)event loop that is loosely modelled after libevent, but without itslimitations and bugs. It is used in GNU Virtual Private Ethernet,rxvt-unicode, auditd, the Deliantra MORPG Server and Client, and manyother programs. - -http://software.schmorp.de/pkg/libev.html -# Available modules +# libev -The overview below shows which libev installations are available per target architecture in EESSI, ordered based on software version (new to old). +A full-featured and high-performance (see benchmark) +event loop that is loosely modelled after libevent, but without its +limitations and bugs. It is used in GNU Virtual Private Ethernet, +rxvt-unicode, auditd, the Deliantra MORPG Server and Client, and many +other programs. -To start using libev, load one of these modules using a `module load` command like: +homepage: [http://software.schmorp.de/pkg/libev.html](http://software.schmorp.de/pkg/libev.html) -```shell -module load libev/4.33-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libev/4.33-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libev version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.33|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libev/4.33-GCC-12.3.0`| +|4.33|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libev/4.33-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libevdev.md b/docs/available_software/detail/libevdev.md new file mode 100644 index 0000000000..b9a171d13a --- /dev/null +++ b/docs/available_software/detail/libevdev.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Wrapper library for evdev devices + license: Not confirmed + name: libevdev + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.13.6'']' + url: https://gitlab.freedesktop.org/libevdev/libevdev +--- +# libevdev + + +Wrapper library for evdev devices + +homepage: [https://gitlab.freedesktop.org/libevdev/libevdev](https://gitlab.freedesktop.org/libevdev/libevdev) + +## Available installations + + +|libevdev version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.13.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libevdev/1.13.6-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libevent.md b/docs/available_software/detail/libevent.md index 3c9daff621..c8dc41a771 100644 --- a/docs/available_software/detail/libevent.md +++ b/docs/available_software/detail/libevent.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The libevent API provides a mechanism to execute a callback function - when a specific event occurs on a file descriptor or after a timeout has been - reached. Furthermore, libevent also support callbacks due to signals or regular - timeouts. + description: "\n The libevent API provides a mechanism to execute a callback function\ + \ when\n a specific event occurs on a file descriptor or after a timeout has been\n\ + \ reached. Furthermore, libevent also support callbacks due to signals or\n regular\ + \ timeouts.\n" license: Not confirmed name: libevent offers: @@ -27,33 +25,29 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libevent/2.1.12-GCCcore-12.2.0'', ''libevent/2.1.12-GCCcore-12.3.0'', - ''libevent/2.1.12-GCCcore-13.2.0'']' + softwareVersion: '[''2.1.12'']' url: https://libevent.org/ --- +# libevent -libevent -======== -The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. Furthermore, libevent also support callbacks due to signals or regular timeouts. + The libevent API provides a mechanism to execute a callback function when + a specific event occurs on a file descriptor or after a timeout has been + reached. Furthermore, libevent also support callbacks due to signals or + regular timeouts. -https://libevent.org/ -# Available modules +homepage: [https://libevent.org/](https://libevent.org/) -The overview below shows which libevent installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using libevent, load one of these modules using a `module load` command like: -```shell -module load libevent/2.1.12-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libevent/2.1.12-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libevent/2.1.12-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libevent/2.1.12-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libevent version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libevent/2.1.12-GCCcore-14.3.0`| +|2.1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libevent/2.1.12-GCCcore-14.2.0`| +|2.1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libevent/2.1.12-GCCcore-13.3.0`| +|2.1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libevent/2.1.12-GCCcore-13.2.0`| +|2.1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libevent/2.1.12-GCCcore-12.3.0`| +|2.1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libevent/2.1.12-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libexif.md b/docs/available_software/detail/libexif.md new file mode 100644 index 0000000000..a861f86428 --- /dev/null +++ b/docs/available_software/detail/libexif.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: A library for parsing, editing, and saving EXIF data. + license: Not confirmed + name: libexif + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.6.25'']' + url: https://libexif.github.io/ +--- +# libexif + + +A library for parsing, editing, and saving EXIF data. + +homepage: [https://libexif.github.io/](https://libexif.github.io/) + +## Available installations + + +|libexif version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.6.25|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libexif/0.6.25-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libfabric.md b/docs/available_software/detail/libfabric.md index a94d18aaa5..55b3c2e4a6 100644 --- a/docs/available_software/detail/libfabric.md +++ b/docs/available_software/detail/libfabric.md @@ -1,14 +1,19 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Libfabric is a core component of OFI. It is the library that defines - and exportsthe user-space API of OFI, and is typically the only software that - applicationsdeal with directly. It works in conjunction with provider libraries, - which areoften integrated directly into libfabric. + description: ' + + Libfabric is a core component of OFI. It is the library that defines and exports + + the user-space API of OFI, and is typically the only software that applications + + deal with directly. It works in conjunction with provider libraries, which are + + often integrated directly into libfabric. + + ' license: Not confirmed name: libfabric offers: @@ -27,33 +32,29 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libfabric/1.16.1-GCCcore-12.2.0'', ''libfabric/1.18.0-GCCcore-12.3.0'', - ''libfabric/1.19.0-GCCcore-13.2.0'']' + softwareVersion: '[''2.1.0'', ''2.0.0'', ''1.21.0'', ''1.19.0'', ''1.18.0'', ''1.16.1'']' url: https://ofiwg.github.io/libfabric/ --- +# libfabric -libfabric -========= - - -Libfabric is a core component of OFI. It is the library that defines and exportsthe user-space API of OFI, and is typically the only software that applicationsdeal with directly. It works in conjunction with provider libraries, which areoften integrated directly into libfabric. -https://ofiwg.github.io/libfabric/ -# Available modules +Libfabric is a core component of OFI. It is the library that defines and exports +the user-space API of OFI, and is typically the only software that applications +deal with directly. It works in conjunction with provider libraries, which are +often integrated directly into libfabric. -The overview below shows which libfabric installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using libfabric, load one of these modules using a `module load` command like: +homepage: [https://ofiwg.github.io/libfabric/](https://ofiwg.github.io/libfabric/) -```shell -module load libfabric/1.19.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libfabric/1.19.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libfabric/1.18.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libfabric/1.16.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libfabric version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libfabric/2.1.0-GCCcore-14.3.0`| +|2.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libfabric/2.0.0-GCCcore-14.2.0`| +|1.21.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libfabric/1.21.0-GCCcore-13.3.0`| +|1.19.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libfabric/1.19.0-GCCcore-13.2.0`| +|1.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libfabric/1.18.0-GCCcore-12.3.0`| +|1.16.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libfabric/1.16.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libfdf.md b/docs/available_software/detail/libfdf.md index 817ba57766..bca78d71f4 100644 --- a/docs/available_software/detail/libfdf.md +++ b/docs/available_software/detail/libfdf.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libfdf/0.5.1-GCC-12.3.0'']' + softwareVersion: '[''0.5.1'']' url: https://gitlab.com/siesta-project/libraries/libfdf --- - -libfdf -====== +# libfdf LibFDF is the official implementation of the FDF specifications for use in client codes. -https://gitlab.com/siesta-project/libraries/libfdf -# Available modules - - -The overview below shows which libfdf installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libfdf, load one of these modules using a `module load` command like: +homepage: [https://gitlab.com/siesta-project/libraries/libfdf](https://gitlab.com/siesta-project/libraries/libfdf) -```shell -module load libfdf/0.5.1-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libfdf/0.5.1-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libfdf version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libfdf/0.5.1-GCC-13.3.0`| +|0.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libfdf/0.5.1-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libffi.md b/docs/available_software/detail/libffi.md index c1cd3f89db..b03578176c 100644 --- a/docs/available_software/detail/libffi.md +++ b/docs/available_software/detail/libffi.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The libffi library provides a portable, high level programming interface - to various calling conventions. This allows a programmer to call any function - specified by a call interface description at run-time. + description: "The libffi library provides a portable, high level programming interface\ + \ to\n various calling conventions. This allows a programmer to call any function\n\ + \ specified by a call interface description at run-time." license: Not confirmed name: libffi offers: @@ -26,33 +24,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libffi/3.4.4-GCCcore-12.2.0'', ''libffi/3.4.4-GCCcore-12.3.0'', - ''libffi/3.4.4-GCCcore-13.2.0'']' + softwareVersion: '[''3.5.1'', ''3.4.5'', ''3.4.4'']' url: https://sourceware.org/libffi/ --- +# libffi -libffi -====== +The libffi library provides a portable, high level programming interface to + various calling conventions. This allows a programmer to call any function + specified by a call interface description at run-time. -The libffi library provides a portable, high level programming interface to various calling conventions. This allows a programmer to call any function specified by a call interface description at run-time. +homepage: [https://sourceware.org/libffi/](https://sourceware.org/libffi/) -https://sourceware.org/libffi/ -# Available modules +## Available installations -The overview below shows which libffi installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libffi, load one of these modules using a `module load` command like: - -```shell -module load libffi/3.4.4-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libffi/3.4.4-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libffi/3.4.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libffi/3.4.4-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libffi version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libffi/3.5.1-GCCcore-14.3.0`| +|3.4.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libffi/3.4.5-GCCcore-14.2.0`| +|3.4.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libffi/3.4.5-GCCcore-13.3.0`| +|3.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libffi/3.4.4-GCCcore-13.2.0`| +|3.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libffi/3.4.4-GCCcore-12.3.0`| +|3.4.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libffi/3.4.4-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libgcrypt.md b/docs/available_software/detail/libgcrypt.md index 1cba185548..709957857b 100644 --- a/docs/available_software/detail/libgcrypt.md +++ b/docs/available_software/detail/libgcrypt.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libgcrypt/1.10.3-GCCcore-12.3.0'']' + softwareVersion: '[''1.10.3'']' url: https://gnupg.org/related_software/libgcrypt/index.html --- - -libgcrypt -========= +# libgcrypt Libgcrypt is a general purpose cryptographic library originally based on code from GnuPG -https://gnupg.org/related_software/libgcrypt/index.html -# Available modules - - -The overview below shows which libgcrypt installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libgcrypt, load one of these modules using a `module load` command like: +homepage: [https://gnupg.org/related_software/libgcrypt/index.html](https://gnupg.org/related_software/libgcrypt/index.html) -```shell -module load libgcrypt/1.10.3-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libgcrypt/1.10.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libgcrypt version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.10.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libgcrypt/1.10.3-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libgd.md b/docs/available_software/detail/libgd.md index 4644b18255..750386ae45 100644 --- a/docs/available_software/detail/libgd.md +++ b/docs/available_software/detail/libgd.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libgd/2.3.3-GCCcore-12.2.0'', ''libgd/2.3.3-GCCcore-12.3.0'']' + softwareVersion: '[''2.3.3'']' url: https://libgd.github.io --- - -libgd -===== +# libgd GD is an open source code library for the dynamic creation of images by programmers. -https://libgd.github.io -# Available modules - - -The overview below shows which libgd installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libgd, load one of these modules using a `module load` command like: +homepage: [https://libgd.github.io](https://libgd.github.io) -```shell -module load libgd/2.3.3-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libgd/2.3.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libgd/2.3.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libgd version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.3.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libgd/2.3.3-GCCcore-14.3.0`| +|2.3.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libgd/2.3.3-GCCcore-12.3.0`| +|2.3.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libgd/2.3.3-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libgeotiff.md b/docs/available_software/detail/libgeotiff.md index baaf3ff3cb..c41a9d1fed 100644 --- a/docs/available_software/detail/libgeotiff.md +++ b/docs/available_software/detail/libgeotiff.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libgeotiff/1.7.1-GCCcore-12.2.0'', ''libgeotiff/1.7.1-GCCcore-12.3.0'', - ''libgeotiff/1.7.3-GCCcore-13.2.0'']' + softwareVersion: '[''1.7.3'', ''1.7.1'']' url: https://directory.fsf.org/wiki/Libgeotiff --- - -libgeotiff -========== +# libgeotiff Library for reading and writing coordinate system information from/to GeoTIFF files -https://directory.fsf.org/wiki/Libgeotiff -# Available modules - - -The overview below shows which libgeotiff installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libgeotiff, load one of these modules using a `module load` command like: +homepage: [https://directory.fsf.org/wiki/Libgeotiff](https://directory.fsf.org/wiki/Libgeotiff) -```shell -module load libgeotiff/1.7.3-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libgeotiff/1.7.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libgeotiff/1.7.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libgeotiff/1.7.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libgeotiff version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libgeotiff/1.7.3-GCCcore-13.3.0`| +|1.7.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libgeotiff/1.7.3-GCCcore-13.2.0`| +|1.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libgeotiff/1.7.1-GCCcore-12.3.0`| +|1.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libgeotiff/1.7.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libgit2.md b/docs/available_software/detail/libgit2.md index 69a8f3197b..fd39598cd2 100644 --- a/docs/available_software/detail/libgit2.md +++ b/docs/available_software/detail/libgit2.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: libgit2 is a portable, pure C implementation of the Git core methods - provided as a re-entrantlinkable library with a solid API, allowing you to write - native speed custom Git applications in any languagewhich supports C bindings. + description: 'libgit2 is a portable, pure C implementation of the Git core methods + provided as a re-entrant + + linkable library with a solid API, allowing you to write native speed custom Git + applications in any language + + which supports C bindings.' license: Not confirmed name: libgit2 offers: @@ -26,33 +28,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libgit2/1.5.0-GCCcore-12.2.0'', ''libgit2/1.7.1-GCCcore-12.3.0'', - ''libgit2/1.7.2-GCCcore-13.2.0'']' + softwareVersion: '[''1.9.1'', ''1.8.1'', ''1.7.2'', ''1.7.1'', ''1.5.0'']' url: https://libgit2.org/ --- - -libgit2 -======= - - -libgit2 is a portable, pure C implementation of the Git core methods provided as a re-entrantlinkable library with a solid API, allowing you to write native speed custom Git applications in any languagewhich supports C bindings. - -https://libgit2.org/ -# Available modules +# libgit2 -The overview below shows which libgit2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +libgit2 is a portable, pure C implementation of the Git core methods provided as a re-entrant +linkable library with a solid API, allowing you to write native speed custom Git applications in any language +which supports C bindings. -To start using libgit2, load one of these modules using a `module load` command like: +homepage: [https://libgit2.org/](https://libgit2.org/) -```shell -module load libgit2/1.7.2-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libgit2/1.7.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libgit2/1.7.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libgit2/1.5.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libgit2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libgit2/1.9.1-GCCcore-14.2.0`| +|1.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libgit2/1.8.1-GCCcore-13.3.0`| +|1.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libgit2/1.7.2-GCCcore-13.2.0`| +|1.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libgit2/1.7.1-GCCcore-12.3.0`| +|1.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libgit2/1.5.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libglvnd.md b/docs/available_software/detail/libglvnd.md index b4d0735447..c4e2ca1c8b 100644 --- a/docs/available_software/detail/libglvnd.md +++ b/docs/available_software/detail/libglvnd.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libglvnd/1.6.0-GCCcore-12.2.0'', ''libglvnd/1.6.0-GCCcore-12.3.0'', - ''libglvnd/1.7.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.7.0'', ''1.6.0'']' url: https://gitlab.freedesktop.org/glvnd/libglvnd --- - -libglvnd -======== +# libglvnd libglvnd is a vendor-neutral dispatch layer for arbitrating OpenGL API calls between multiple vendors. -https://gitlab.freedesktop.org/glvnd/libglvnd -# Available modules - - -The overview below shows which libglvnd installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libglvnd, load one of these modules using a `module load` command like: +homepage: [https://gitlab.freedesktop.org/glvnd/libglvnd](https://gitlab.freedesktop.org/glvnd/libglvnd) -```shell -module load libglvnd/1.7.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libglvnd/1.7.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libglvnd/1.6.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libglvnd/1.6.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libglvnd version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libglvnd/1.7.0-GCCcore-14.2.0`| +|1.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libglvnd/1.7.0-GCCcore-13.3.0`| +|1.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libglvnd/1.7.0-GCCcore-13.2.0`| +|1.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libglvnd/1.6.0-GCCcore-12.3.0`| +|1.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libglvnd/1.6.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libgpg-error.md b/docs/available_software/detail/libgpg-error.md index c246f28451..13e762b2bf 100644 --- a/docs/available_software/detail/libgpg-error.md +++ b/docs/available_software/detail/libgpg-error.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libgpg-error/1.48-GCCcore-12.3.0'']' + softwareVersion: '[''1.48'']' url: https://gnupg.org/related_software/libgpg-error/index.html --- - -libgpg-error -============ +# libgpg-error Libgpg-error is a small library that defines common error values for all GnuPG components. -https://gnupg.org/related_software/libgpg-error/index.html -# Available modules - - -The overview below shows which libgpg-error installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libgpg-error, load one of these modules using a `module load` command like: +homepage: [https://gnupg.org/related_software/libgpg-error/index.html](https://gnupg.org/related_software/libgpg-error/index.html) -```shell -module load libgpg-error/1.48-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libgpg-error/1.48-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libgpg-error version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.48|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libgpg-error/1.48-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libheif.md b/docs/available_software/detail/libheif.md index 7a77e81962..8f312fdc3d 100644 --- a/docs/available_software/detail/libheif.md +++ b/docs/available_software/detail/libheif.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libheif/1.17.6-GCCcore-12.3.0'', ''libheif/1.19.5-GCCcore-13.2.0'']' + softwareVersion: '[''1.20.2'', ''1.19.8'', ''1.19.5'', ''1.17.6'']' url: https://github.com/strukturag/libheif --- - -libheif -======= +# libheif libheif is an HEIF and AVIF file format decoder and encoder -https://github.com/strukturag/libheif -# Available modules - - -The overview below shows which libheif installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libheif, load one of these modules using a `module load` command like: +homepage: [https://github.com/strukturag/libheif](https://github.com/strukturag/libheif) -```shell -module load libheif/1.19.5-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libheif/1.19.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libheif/1.17.6-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libheif version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.20.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libheif/1.20.2-GCCcore-14.3.0`| +|1.19.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libheif/1.19.8-GCCcore-14.2.0`| +|1.19.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libheif/1.19.5-GCCcore-13.3.0`| +|1.19.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libheif/1.19.5-GCCcore-13.2.0`| +|1.17.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libheif/1.17.6-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libiconv.md b/docs/available_software/detail/libiconv.md index ee9ebea010..7441610e89 100644 --- a/docs/available_software/detail/libiconv.md +++ b/docs/available_software/detail/libiconv.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,33 +23,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libiconv/1.17-GCCcore-12.2.0'', ''libiconv/1.17-GCCcore-12.3.0'', - ''libiconv/1.17-GCCcore-13.2.0'']' + softwareVersion: '[''1.18'', ''1.17'']' url: https://www.gnu.org/software/libiconv --- - -libiconv -======== +# libiconv Libiconv converts from one character encoding to another through Unicode conversion -https://www.gnu.org/software/libiconv -# Available modules - - -The overview below shows which libiconv installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libiconv, load one of these modules using a `module load` command like: +homepage: [https://www.gnu.org/software/libiconv](https://www.gnu.org/software/libiconv) -```shell -module load libiconv/1.17-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libiconv/1.17-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libiconv/1.17-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libiconv/1.17-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libiconv version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libiconv/1.18-GCCcore-14.3.0`| +|1.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libiconv/1.18-GCCcore-14.2.0`| +|1.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libiconv/1.17-GCCcore-13.3.0`| +|1.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libiconv/1.17-GCCcore-13.2.0`| +|1.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libiconv/1.17-GCCcore-12.3.0`| +|1.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libiconv/1.17-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libidn2.md b/docs/available_software/detail/libidn2.md index 6bcab500c1..d5abeebb8f 100644 --- a/docs/available_software/detail/libidn2.md +++ b/docs/available_software/detail/libidn2.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,31 +23,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libidn2/2.3.2-GCCcore-13.2.0'', ''libidn2/2.3.7-GCCcore-12.3.0'']' + softwareVersion: '[''2.3.8'', ''2.3.7'', ''2.3.2'']' url: http://www.gnu.org/software/libidn2 --- - -libidn2 -======= +# libidn2 Libidn2 implements the revised algorithm for internationalized domain names called IDNA2008/TR46. -http://www.gnu.org/software/libidn2 -# Available modules - - -The overview below shows which libidn2 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libidn2, load one of these modules using a `module load` command like: +homepage: [http://www.gnu.org/software/libidn2](http://www.gnu.org/software/libidn2) -```shell -module load libidn2/2.3.7-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libidn2/2.3.7-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libidn2/2.3.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libidn2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.3.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libidn2/2.3.8-GCCcore-14.3.0`| +|2.3.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libidn2/2.3.7-GCCcore-14.2.0`| +|2.3.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libidn2/2.3.7-GCCcore-12.3.0`| +|2.3.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libidn2/2.3.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libinput.md b/docs/available_software/detail/libinput.md new file mode 100644 index 0000000000..c4440c42a6 --- /dev/null +++ b/docs/available_software/detail/libinput.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Input device management and event handling library + license: Not confirmed + name: libinput + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.30.1'']' + url: https://gitlab.freedesktop.org/libinput/libinput/ +--- +# libinput + + +Input device management and event handling library + +homepage: [https://gitlab.freedesktop.org/libinput/libinput/](https://gitlab.freedesktop.org/libinput/libinput/) + +## Available installations + + +|libinput version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.30.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libinput/1.30.1-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libjpeg-turbo.md b/docs/available_software/detail/libjpeg-turbo.md index 8160cb8e07..546bd83260 100644 --- a/docs/available_software/detail/libjpeg-turbo.md +++ b/docs/available_software/detail/libjpeg-turbo.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD - to accelerate baseline JPEG compression and decompression. libjpeg is a library - that implements JPEG image encoding, decoding and transcoding. + description: "\n libjpeg-turbo is a fork of the original IJG libjpeg which uses\ + \ SIMD to\n accelerate baseline JPEG compression and decompression. libjpeg is\ + \ a library\n that implements JPEG image encoding, decoding and transcoding.\n" license: Not confirmed name: libjpeg-turbo offers: @@ -26,33 +24,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libjpeg-turbo/2.1.4-GCCcore-12.2.0'', ''libjpeg-turbo/2.1.5.1-GCCcore-12.3.0'', - ''libjpeg-turbo/3.0.1-GCCcore-13.2.0'']' + softwareVersion: '[''3.1.1'', ''3.1.0'', ''3.0.1'', ''2.1.5.1'', ''2.1.4'']' url: https://sourceforge.net/projects/libjpeg-turbo/ --- +# libjpeg-turbo -libjpeg-turbo -============= -libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to accelerate baseline JPEG compression and decompression. libjpeg is a library that implements JPEG image encoding, decoding and transcoding. + libjpeg-turbo is a fork of the original IJG libjpeg which uses SIMD to + accelerate baseline JPEG compression and decompression. libjpeg is a library + that implements JPEG image encoding, decoding and transcoding. -https://sourceforge.net/projects/libjpeg-turbo/ -# Available modules +homepage: [https://sourceforge.net/projects/libjpeg-turbo/](https://sourceforge.net/projects/libjpeg-turbo/) -The overview below shows which libjpeg-turbo installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using libjpeg-turbo, load one of these modules using a `module load` command like: -```shell -module load libjpeg-turbo/3.0.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libjpeg-turbo/3.0.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libjpeg-turbo/2.1.5.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libjpeg-turbo/2.1.4-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libjpeg-turbo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libjpeg-turbo/3.1.1-GCCcore-14.3.0`| +|3.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libjpeg-turbo/3.1.0-GCCcore-14.2.0`| +|3.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libjpeg-turbo/3.0.1-GCCcore-13.3.0`| +|3.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libjpeg-turbo/3.0.1-GCCcore-13.2.0`| +|2.1.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libjpeg-turbo/2.1.5.1-GCCcore-12.3.0`| +|2.1.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libjpeg-turbo/2.1.4-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libliftoff.md b/docs/available_software/detail/libliftoff.md new file mode 100644 index 0000000000..5623d99592 --- /dev/null +++ b/docs/available_software/detail/libliftoff.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Lightweight KMS plane library. + license: Not confirmed + name: libliftoff + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.5.0'']' + url: https://gitlab.freedesktop.org/emersion/libliftoff +--- +# libliftoff + + +Lightweight KMS plane library. + +homepage: [https://gitlab.freedesktop.org/emersion/libliftoff](https://gitlab.freedesktop.org/emersion/libliftoff) + +## Available installations + + +|libliftoff version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libliftoff/0.5.0-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libnotify.md b/docs/available_software/detail/libnotify.md new file mode 100644 index 0000000000..2f8140c717 --- /dev/null +++ b/docs/available_software/detail/libnotify.md @@ -0,0 +1,48 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'libnotify is a library for sending desktop notifications to a notification + daemon, as defined in the + + org.freedesktop.Notifications Desktop Specification. These notifications can be + used to inform the user about an event + + or display some form of information without getting in the user''s way.' + license: Not confirmed + name: libnotify + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.8.7'']' + url: https://gitlab.gnome.org/GNOME/libnotify +--- +# libnotify + + +libnotify is a library for sending desktop notifications to a notification daemon, as defined in the +org.freedesktop.Notifications Desktop Specification. These notifications can be used to inform the user about an event +or display some form of information without getting in the user's way. + +homepage: [https://gitlab.gnome.org/GNOME/libnotify](https://gitlab.gnome.org/GNOME/libnotify) + +## Available installations + + +|libnotify version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.8.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libnotify/0.8.7-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libogg.md b/docs/available_software/detail/libogg.md index d0996fdffd..072ee56ce1 100644 --- a/docs/available_software/detail/libogg.md +++ b/docs/available_software/detail/libogg.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Ogg is a multimedia container format, and the native file and stream - format for the Xiph.orgmultimedia codecs. + description: 'Ogg is a multimedia container format, and the native file and stream + format for the Xiph.org + + multimedia codecs.' license: Not confirmed name: libogg offers: @@ -25,33 +25,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libogg/1.3.5-GCCcore-12.2.0'', ''libogg/1.3.5-GCCcore-12.3.0'', - ''libogg/1.3.5-GCCcore-13.2.0'']' + softwareVersion: '[''1.3.6'', ''1.3.5'']' url: https://xiph.org/ogg/ --- - -libogg -====== - - -Ogg is a multimedia container format, and the native file and stream format for the Xiph.orgmultimedia codecs. - -https://xiph.org/ogg/ -# Available modules +# libogg -The overview below shows which libogg installations are available per target architecture in EESSI, ordered based on software version (new to old). +Ogg is a multimedia container format, and the native file and stream format for the Xiph.org +multimedia codecs. -To start using libogg, load one of these modules using a `module load` command like: +homepage: [https://xiph.org/ogg/](https://xiph.org/ogg/) -```shell -module load libogg/1.3.5-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libogg/1.3.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libogg/1.3.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libogg/1.3.5-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libogg version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libogg/1.3.6-GCCcore-14.3.0`| +|1.3.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libogg/1.3.6-GCCcore-14.2.0`| +|1.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libogg/1.3.5-GCCcore-13.3.0`| +|1.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libogg/1.3.5-GCCcore-13.2.0`| +|1.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libogg/1.3.5-GCCcore-12.3.0`| +|1.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libogg/1.3.5-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libopus.md b/docs/available_software/detail/libopus.md index d80b9315e1..4d83ab3adf 100644 --- a/docs/available_software/detail/libopus.md +++ b/docs/available_software/detail/libopus.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication description: "Opus is a totally open, royalty-free, highly versatile audio codec.\ - \ Opus is unmatched for interactive speech and music transmission over the Internet,\ - \ but is also intended for storage and streaming applications. It is standardized\ + \ Opus is unmatched for interactive\n speech and music transmission over the Internet,\ + \ but is also intended for storage and streaming applications. It is\n standardized\ \ by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated\ - \ technology from Skype\u2019s SILK codec and Xiph.Org\u2019s CELT codec." + \ technology from Skype\u2019s\n SILK codec and Xiph.Org\u2019s CELT codec." license: Not confirmed name: libopus offers: @@ -28,33 +26,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libopus/1.3.1-GCCcore-12.2.0'', ''libopus/1.4-GCCcore-12.3.0'', - ''libopus/1.5.2-GCCcore-13.2.0'']' + softwareVersion: '[''1.5.2'', ''1.4'', ''1.3.1'']' url: https://www.opus-codec.org/ --- +# libopus -libopus -======= +Opus is a totally open, royalty-free, highly versatile audio codec. Opus is unmatched for interactive + speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is + standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype’s + SILK codec and Xiph.Org’s CELT codec. -Opus is a totally open, royalty-free, highly versatile audio codec. Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype’s SILK codec and Xiph.Org’s CELT codec. +homepage: [https://www.opus-codec.org/](https://www.opus-codec.org/) -https://www.opus-codec.org/ -# Available modules +## Available installations -The overview below shows which libopus installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libopus, load one of these modules using a `module load` command like: - -```shell -module load libopus/1.5.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libopus/1.5.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libopus/1.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libopus/1.3.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libopus version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libopus/1.5.2-GCCcore-14.3.0`| +|1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libopus/1.5.2-GCCcore-14.2.0`| +|1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libopus/1.5.2-GCCcore-13.3.0`| +|1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libopus/1.5.2-GCCcore-13.2.0`| +|1.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libopus/1.4-GCCcore-12.3.0`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libopus/1.3.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libpciaccess.md b/docs/available_software/detail/libpciaccess.md index 623552c3a4..272ee7e673 100644 --- a/docs/available_software/detail/libpciaccess.md +++ b/docs/available_software/detail/libpciaccess.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libpciaccess/0.17-GCCcore-12.2.0'', ''libpciaccess/0.17-GCCcore-12.3.0'', - ''libpciaccess/0.17-GCCcore-13.2.0'']' + softwareVersion: '[''0.18.1'', ''0.17'']' url: https://cgit.freedesktop.org/xorg/lib/libpciaccess/ --- - -libpciaccess -============ +# libpciaccess Generic PCI access library. -https://cgit.freedesktop.org/xorg/lib/libpciaccess/ -# Available modules - - -The overview below shows which libpciaccess installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libpciaccess, load one of these modules using a `module load` command like: +homepage: [https://cgit.freedesktop.org/xorg/lib/libpciaccess/](https://cgit.freedesktop.org/xorg/lib/libpciaccess/) -```shell -module load libpciaccess/0.17-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libpciaccess/0.17-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libpciaccess/0.17-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libpciaccess/0.17-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libpciaccess version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.18.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libpciaccess/0.18.1-GCCcore-14.3.0`| +|0.18.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libpciaccess/0.18.1-GCCcore-14.2.0`| +|0.18.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libpciaccess/0.18.1-GCCcore-13.3.0`| +|0.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libpciaccess/0.17-GCCcore-13.2.0`| +|0.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libpciaccess/0.17-GCCcore-12.3.0`| +|0.17|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libpciaccess/0.17-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libpng.md b/docs/available_software/detail/libpng.md index 9c9b7110c6..3db745cdfe 100644 --- a/docs/available_software/detail/libpng.md +++ b/docs/available_software/detail/libpng.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libpng/1.6.38-GCCcore-12.2.0'', ''libpng/1.6.39-GCCcore-12.3.0'', - ''libpng/1.6.40-GCCcore-13.2.0'']' + softwareVersion: '[''1.6.50'', ''1.6.48'', ''1.6.43'', ''1.6.40'', ''1.6.39'', ''1.6.38'']' url: http://www.libpng.org/pub/png/libpng.html --- - -libpng -====== +# libpng libpng is the official PNG reference library -http://www.libpng.org/pub/png/libpng.html -# Available modules - - -The overview below shows which libpng installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libpng, load one of these modules using a `module load` command like: +homepage: [http://www.libpng.org/pub/png/libpng.html](http://www.libpng.org/pub/png/libpng.html) -```shell -module load libpng/1.6.40-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libpng/1.6.40-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libpng/1.6.39-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libpng/1.6.38-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libpng version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.6.50|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libpng/1.6.50-GCCcore-14.3.0`| +|1.6.48|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libpng/1.6.48-GCCcore-14.2.0`| +|1.6.43|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libpng/1.6.43-GCCcore-13.3.0`| +|1.6.40|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libpng/1.6.40-GCCcore-13.2.0`| +|1.6.39|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libpng/1.6.39-GCCcore-12.3.0`| +|1.6.38|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libpng/1.6.38-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libpsl.md b/docs/available_software/detail/libpsl.md index 4c46034bae..e2f1d2db49 100644 --- a/docs/available_software/detail/libpsl.md +++ b/docs/available_software/detail/libpsl.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libpsl/0.21.5-GCCcore-12.3.0'']' + softwareVersion: '[''0.21.5'']' url: https://rockdaboot.github.io/libpsl --- - -libpsl -====== +# libpsl C library for the Public Suffix List -https://rockdaboot.github.io/libpsl -# Available modules - - -The overview below shows which libpsl installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libpsl, load one of these modules using a `module load` command like: +homepage: [https://rockdaboot.github.io/libpsl](https://rockdaboot.github.io/libpsl) -```shell -module load libpsl/0.21.5-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libpsl/0.21.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libpsl version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.21.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libpsl/0.21.5-GCCcore-14.3.0`| +|0.21.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libpsl/0.21.5-GCCcore-14.2.0`| +|0.21.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libpsl/0.21.5-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/librosa.md b/docs/available_software/detail/librosa.md index f7fa49b4c0..b32cc34abc 100644 --- a/docs/available_software/detail/librosa.md +++ b/docs/available_software/detail/librosa.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,66 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''librosa/0.10.1-foss-2023a'']' + softwareVersion: '[''0.10.1'']' url: https://librosa.org/ --- - -librosa -======= +# librosa Audio and music processing in Python -https://librosa.org/ -# Available modules +homepage: [https://librosa.org/](https://librosa.org/) + +## Available installations + + +|librosa version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.10.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`librosa/0.10.1-foss-2023a`| + +## Extensions + +Overview of extensions included in librosa installations + + +### audioread + + +|`audioread` version|librosa modules that include it| +| --- | --- | +|3.0.1|`librosa/0.10.1-foss-2023a`| + +### lazy_loader + + +|`lazy_loader` version|librosa modules that include it| +| --- | --- | +|0.3|`librosa/0.10.1-foss-2023a`| + +### librosa + +|`librosa` version|librosa modules that include it| +| --- | --- | +|0.10.1|`librosa/0.10.1-foss-2023a`| -The overview below shows which librosa installations are available per target architecture in EESSI, ordered based on software version (new to old). +### resampy -To start using librosa, load one of these modules using a `module load` command like: -```shell -module load librosa/0.10.1-foss-2023a -``` +|`resampy` version|librosa modules that include it| +| --- | --- | +|0.4.3|`librosa/0.10.1-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### soundfile -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|librosa/0.10.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`soundfile` version|librosa modules that include it| +| --- | --- | +|0.12.1|`librosa/0.10.1-foss-2023a`| -### librosa/0.10.1-foss-2023a +### soxr -This is a list of extensions included in the module: -audioread-3.0.1, lazy_loader-0.3, librosa-0.10.1, resampy-0.4.3, soundfile-0.12.1, soxr-0.3.7 \ No newline at end of file +|`soxr` version|librosa modules that include it| +| --- | --- | +|0.3.7|`librosa/0.10.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/librsvg.md b/docs/available_software/detail/librsvg.md new file mode 100644 index 0000000000..e59983ca96 --- /dev/null +++ b/docs/available_software/detail/librsvg.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Librsvg is a library to render SVG files using cairo. + license: Not confirmed + name: librsvg + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.61.0'', ''2.60.0'']' + url: https://wiki.gnome.org/Projects/LibRsvg +--- +# librsvg + + +Librsvg is a library to render SVG files using cairo. + +homepage: [https://wiki.gnome.org/Projects/LibRsvg](https://wiki.gnome.org/Projects/LibRsvg) + +## Available installations + + +|librsvg version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.61.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`librsvg/2.61.0-GCCcore-14.3.0`| +|2.60.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`librsvg/2.60.0-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/librttopo.md b/docs/available_software/detail/librttopo.md index 15ed1f1b0a..318b4d2a5e 100644 --- a/docs/available_software/detail/librttopo.md +++ b/docs/available_software/detail/librttopo.md @@ -1,12 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The RT Topology Library exposes an API to create andmanage standard - (ISO 13249 aka SQL/MM) topologies using user-provideddata stores. + description: 'The RT Topology Library exposes an API to create and + + manage standard (ISO 13249 aka SQL/MM) topologies using user-provided + + data stores.' license: Not confirmed name: librttopo offers: @@ -25,30 +26,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''librttopo/1.1.0-GCC-12.3.0'']' + softwareVersion: '[''1.1.0'']' url: https://git.osgeo.org/gitea/rttopo/librttopo --- - -librttopo -========= - - -The RT Topology Library exposes an API to create andmanage standard (ISO 13249 aka SQL/MM) topologies using user-provideddata stores. - -https://git.osgeo.org/gitea/rttopo/librttopo -# Available modules +# librttopo -The overview below shows which librttopo installations are available per target architecture in EESSI, ordered based on software version (new to old). +The RT Topology Library exposes an API to create and +manage standard (ISO 13249 aka SQL/MM) topologies using user-provided +data stores. -To start using librttopo, load one of these modules using a `module load` command like: +homepage: [https://git.osgeo.org/gitea/rttopo/librttopo](https://git.osgeo.org/gitea/rttopo/librttopo) -```shell -module load librttopo/1.1.0-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|librttopo/1.1.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|librttopo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`librttopo/1.1.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libsfdo.md b/docs/available_software/detail/libsfdo.md new file mode 100644 index 0000000000..e0e8468038 --- /dev/null +++ b/docs/available_software/detail/libsfdo.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: A collection of libraries which implement some of the freedesktop.org + specifications. + license: Not confirmed + name: libsfdo + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.1.4'']' + url: https://gitlab.freedesktop.org/vyivel/libsfdo +--- +# libsfdo + + +A collection of libraries which implement some of the freedesktop.org specifications. + +homepage: [https://gitlab.freedesktop.org/vyivel/libsfdo](https://gitlab.freedesktop.org/vyivel/libsfdo) + +## Available installations + + +|libsfdo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.1.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libsfdo/0.1.4-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libsndfile.md b/docs/available_software/detail/libsndfile.md index 073f26e816..bbf56a3f3a 100644 --- a/docs/available_software/detail/libsndfile.md +++ b/docs/available_software/detail/libsndfile.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Libsndfile is a C library for reading and writing files containing - sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one - standard library interface. + description: "Libsndfile is a C library for reading and writing files containing\ + \ sampled sound\n (such as MS Windows WAV and the Apple/SGI AIFF format) through\ + \ one standard library interface." license: Not confirmed name: libsndfile offers: @@ -26,33 +24,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libsndfile/1.2.0-GCCcore-12.2.0'', ''libsndfile/1.2.2-GCCcore-12.3.0'', - ''libsndfile/1.2.2-GCCcore-13.2.0'']' + softwareVersion: '[''1.2.2'', ''1.2.0'']' url: http://www.mega-nerd.com/libsndfile --- +# libsndfile -libsndfile -========== +Libsndfile is a C library for reading and writing files containing sampled sound + (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. -Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. +homepage: [http://www.mega-nerd.com/libsndfile](http://www.mega-nerd.com/libsndfile) -http://www.mega-nerd.com/libsndfile -# Available modules +## Available installations -The overview below shows which libsndfile installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libsndfile, load one of these modules using a `module load` command like: - -```shell -module load libsndfile/1.2.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libsndfile/1.2.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libsndfile/1.2.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libsndfile/1.2.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libsndfile version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libsndfile/1.2.2-GCCcore-13.3.0`| +|1.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libsndfile/1.2.2-GCCcore-13.2.0`| +|1.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libsndfile/1.2.2-GCCcore-12.3.0`| +|1.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libsndfile/1.2.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libsodium.md b/docs/available_software/detail/libsodium.md index 4668a84c49..8e89d801eb 100644 --- a/docs/available_software/detail/libsodium.md +++ b/docs/available_software/detail/libsodium.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Sodium is a modern, easy-to-use software library for encryption, decryption, - signatures, password hashing and more. + description: "\n Sodium is a modern, easy-to-use software library for encryption,\ + \ decryption,\n signatures, password hashing and more.\n" license: Not confirmed name: libsodium offers: @@ -25,31 +23,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libsodium/1.0.18-GCCcore-12.3.0'', ''libsodium/1.0.19-GCCcore-13.2.0'']' + softwareVersion: '[''1.0.20'', ''1.0.19'', ''1.0.18'']' url: https://doc.libsodium.org/ --- +# libsodium -libsodium -========= -Sodium is a modern, easy-to-use software library for encryption, decryption, signatures, password hashing and more. + Sodium is a modern, easy-to-use software library for encryption, decryption, + signatures, password hashing and more. -https://doc.libsodium.org/ -# Available modules +homepage: [https://doc.libsodium.org/](https://doc.libsodium.org/) -The overview below shows which libsodium installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using libsodium, load one of these modules using a `module load` command like: -```shell -module load libsodium/1.0.19-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libsodium/1.0.19-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libsodium/1.0.18-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libsodium version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.20|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libsodium/1.0.20-GCCcore-14.3.0`| +|1.0.20|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libsodium/1.0.20-GCCcore-14.2.0`| +|1.0.20|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libsodium/1.0.20-GCCcore-13.3.0`| +|1.0.19|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libsodium/1.0.19-GCCcore-13.2.0`| +|1.0.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libsodium/1.0.18-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libspatialindex.md b/docs/available_software/detail/libspatialindex.md index 439fad9b89..8bfaec1e74 100644 --- a/docs/available_software/detail/libspatialindex.md +++ b/docs/available_software/detail/libspatialindex.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libspatialindex/1.9.3-GCCcore-13.2.0'']' + softwareVersion: '[''1.9.3'']' url: https://libspatialindex.org --- - -libspatialindex -=============== +# libspatialindex C++ implementation of R*-tree, an MVR-tree and a TPR-tree with C API -https://libspatialindex.org -# Available modules - - -The overview below shows which libspatialindex installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libspatialindex, load one of these modules using a `module load` command like: +homepage: [https://libspatialindex.org](https://libspatialindex.org) -```shell -module load libspatialindex/1.9.3-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libspatialindex/1.9.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libspatialindex version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libspatialindex/1.9.3-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libspatialite.md b/docs/available_software/detail/libspatialite.md index e9bb622b10..87c9b45665 100644 --- a/docs/available_software/detail/libspatialite.md +++ b/docs/available_software/detail/libspatialite.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SpatiaLite is an open source library intended to extend the SQLite - core to support fully fledged Spatial SQL capabilities. + description: "SpatiaLite is an open source library intended to extend the SQLite\ + \ core to support\n fully fledged Spatial SQL capabilities." license: Not confirmed name: libspatialite offers: @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libspatialite/5.1.0-GCC-12.3.0'']' + softwareVersion: '[''5.1.0'']' url: https://www.gaia-gis.it/fossil/libspatialite/home --- +# libspatialite -libspatialite -============= +SpatiaLite is an open source library intended to extend the SQLite core to support + fully fledged Spatial SQL capabilities. -SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities. +homepage: [https://www.gaia-gis.it/fossil/libspatialite/home](https://www.gaia-gis.it/fossil/libspatialite/home) -https://www.gaia-gis.it/fossil/libspatialite/home -# Available modules +## Available installations -The overview below shows which libspatialite installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libspatialite, load one of these modules using a `module load` command like: - -```shell -module load libspatialite/5.1.0-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libspatialite/5.1.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libspatialite version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libspatialite/5.1.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libtasn1.md b/docs/available_software/detail/libtasn1.md index d9ab06ac66..5f0fdb8d0d 100644 --- a/docs/available_software/detail/libtasn1.md +++ b/docs/available_software/detail/libtasn1.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some other - packages. It was written by Fabio Fiorina, and has been shipped as part of GnuTLS - for some time but is now a proper GNU package. + description: "Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and\n some\ + \ other packages. It was written by Fabio Fiorina, and has been shipped as\n part\ + \ of GnuTLS for some time but is now a proper GNU package." license: Not confirmed name: libtasn1 offers: @@ -26,30 +24,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libtasn1/4.19.0-GCCcore-12.3.0'']' + softwareVersion: '[''4.20.0'', ''4.19.0'']' url: https://www.gnu.org/software/libtasn1/ --- +# libtasn1 -libtasn1 -======== +Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and + some other packages. It was written by Fabio Fiorina, and has been shipped as + part of GnuTLS for some time but is now a proper GNU package. -Libtasn1 is the ASN.1 library used by GnuTLS, GNU Shishi and some other packages. It was written by Fabio Fiorina, and has been shipped as part of GnuTLS for some time but is now a proper GNU package. +homepage: [https://www.gnu.org/software/libtasn1/](https://www.gnu.org/software/libtasn1/) -https://www.gnu.org/software/libtasn1/ -# Available modules +## Available installations -The overview below shows which libtasn1 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libtasn1, load one of these modules using a `module load` command like: - -```shell -module load libtasn1/4.19.0-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libtasn1/4.19.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libtasn1 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.20.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libtasn1/4.20.0-GCCcore-14.3.0`| +|4.19.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libtasn1/4.19.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libtirpc.md b/docs/available_software/detail/libtirpc.md index b9b99ad3ec..58efb27861 100644 --- a/docs/available_software/detail/libtirpc.md +++ b/docs/available_software/detail/libtirpc.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libtirpc/1.3.3-GCCcore-12.2.0'', ''libtirpc/1.3.3-GCCcore-12.3.0'', - ''libtirpc/1.3.4-GCCcore-13.2.0'']' + softwareVersion: '[''1.3.6'', ''1.3.5'', ''1.3.4'', ''1.3.3'']' url: https://sourceforge.net/projects/libtirpc/ --- - -libtirpc -======== +# libtirpc Libtirpc is a port of Suns Transport-Independent RPC library to Linux. -https://sourceforge.net/projects/libtirpc/ -# Available modules - - -The overview below shows which libtirpc installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libtirpc, load one of these modules using a `module load` command like: +homepage: [https://sourceforge.net/projects/libtirpc/](https://sourceforge.net/projects/libtirpc/) -```shell -module load libtirpc/1.3.4-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libtirpc/1.3.4-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libtirpc/1.3.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libtirpc/1.3.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libtirpc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libtirpc/1.3.6-GCCcore-14.3.0`| +|1.3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libtirpc/1.3.5-GCCcore-13.3.0`| +|1.3.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libtirpc/1.3.4-GCCcore-13.2.0`| +|1.3.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libtirpc/1.3.3-GCCcore-12.3.0`| +|1.3.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libtirpc/1.3.3-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libtommath.md b/docs/available_software/detail/libtommath.md new file mode 100644 index 0000000000..cb894c4919 --- /dev/null +++ b/docs/available_software/detail/libtommath.md @@ -0,0 +1,49 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' + + LibTomMath is a free open source portable number theoretic + + multiple-precision integer (MPI) library written entirely in C. + + ' + license: Not confirmed + name: libtommath + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.3.0'']' + url: https://www.libtom.net/LibTomMath/ +--- +# libtommath + + + +LibTomMath is a free open source portable number theoretic +multiple-precision integer (MPI) library written entirely in C. + + +homepage: [https://www.libtom.net/LibTomMath/](https://www.libtom.net/LibTomMath/) + +## Available installations + + +|libtommath version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libtommath/1.3.0-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libtool.md b/docs/available_software/detail/libtool.md new file mode 100644 index 0000000000..4eb5589cc9 --- /dev/null +++ b/docs/available_software/detail/libtool.md @@ -0,0 +1,46 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "\n GNU libtool is a generic library support script. Libtool hides\ + \ the complexity\n of using shared libraries behind a consistent, portable interface.\n" + license: Not confirmed + name: libtool + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.5.4'', ''2.4.7'']' + url: https://www.gnu.org/software/libtool +--- +# libtool + + + + GNU libtool is a generic library support script. Libtool hides the complexity + of using shared libraries behind a consistent, portable interface. + + +homepage: [https://www.gnu.org/software/libtool](https://www.gnu.org/software/libtool) + +## Available installations + + +|libtool version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.5.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libtool/2.5.4-GCCcore-14.3.0`| +|2.5.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libtool/2.5.4-GCCcore-14.2.0`| +|2.4.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libtool/2.4.7-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libunistring.md b/docs/available_software/detail/libunistring.md index 93b6945514..6c33a60928 100644 --- a/docs/available_software/detail/libunistring.md +++ b/docs/available_software/detail/libunistring.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: This library provides functions for manipulating Unicode strings and - for manipulating C strings according to the Unicode standard. + description: "This library provides functions for manipulating Unicode strings and\ + \ for\n manipulating C strings according to the Unicode standard." license: Not confirmed name: libunistring offers: @@ -25,30 +23,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libunistring/1.1-GCCcore-12.3.0'']' + softwareVersion: '[''1.3'', ''1.1'']' url: https://www.gnu.org/software/libunistring/ --- +# libunistring -libunistring -============ +This library provides functions for manipulating Unicode strings and for + manipulating C strings according to the Unicode standard. -This library provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard. +homepage: [https://www.gnu.org/software/libunistring/](https://www.gnu.org/software/libunistring/) -https://www.gnu.org/software/libunistring/ -# Available modules +## Available installations -The overview below shows which libunistring installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libunistring, load one of these modules using a `module load` command like: - -```shell -module load libunistring/1.1-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libunistring/1.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libunistring version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libunistring/1.3-GCCcore-14.3.0`| +|1.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libunistring/1.3-GCCcore-14.2.0`| +|1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libunistring/1.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libunwind.md b/docs/available_software/detail/libunwind.md index 71f4b007c4..92d809bd48 100644 --- a/docs/available_software/detail/libunwind.md +++ b/docs/available_software/detail/libunwind.md @@ -1,16 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The primary goal of libunwind is to define a portable and efficient - C programming interface (API) to determine the call-chain of a program. The API - additionally provides the means to manipulate the preserved (callee-saved) state - of each call-frame and to resume execution at any point in the call-chain (non-local - goto). The API supports both local (same-process) and remote (across-process) - operation. As such, the API is useful in a number of applications + description: "The primary goal of libunwind is to define a portable and efficient\ + \ C programming interface\n (API) to determine the call-chain of a program. The\ + \ API additionally provides the means to manipulate the\n preserved (callee-saved)\ + \ state of each call-frame and to resume execution at any point in the call-chain\n\ + \ (non-local goto). The API supports both local (same-process) and remote (across-process)\ + \ operation.\n As such, the API is useful in a number of applications" license: Not confirmed name: libunwind offers: @@ -29,33 +27,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libunwind/1.6.2-GCCcore-12.2.0'', ''libunwind/1.6.2-GCCcore-12.3.0'', - ''libunwind/1.6.2-GCCcore-13.2.0'']' + softwareVersion: '[''1.8.2'', ''1.8.1'', ''1.6.2'']' url: https://www.nongnu.org/libunwind/ --- +# libunwind -libunwind -========= +The primary goal of libunwind is to define a portable and efficient C programming interface + (API) to determine the call-chain of a program. The API additionally provides the means to manipulate the + preserved (callee-saved) state of each call-frame and to resume execution at any point in the call-chain + (non-local goto). The API supports both local (same-process) and remote (across-process) operation. + As such, the API is useful in a number of applications -The primary goal of libunwind is to define a portable and efficient C programming interface (API) to determine the call-chain of a program. The API additionally provides the means to manipulate the preserved (callee-saved) state of each call-frame and to resume execution at any point in the call-chain (non-local goto). The API supports both local (same-process) and remote (across-process) operation. As such, the API is useful in a number of applications +homepage: [https://www.nongnu.org/libunwind/](https://www.nongnu.org/libunwind/) -https://www.nongnu.org/libunwind/ -# Available modules +## Available installations -The overview below shows which libunwind installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libunwind, load one of these modules using a `module load` command like: - -```shell -module load libunwind/1.6.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libunwind/1.6.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libunwind/1.6.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libunwind/1.6.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libunwind version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libunwind/1.8.2-GCCcore-14.3.0`| +|1.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libunwind/1.8.1-GCCcore-14.2.0`| +|1.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libunwind/1.8.1-GCCcore-13.3.0`| +|1.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libunwind/1.6.2-GCCcore-13.2.0`| +|1.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libunwind/1.6.2-GCCcore-12.3.0`| +|1.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libunwind/1.6.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libvorbis.md b/docs/available_software/detail/libvorbis.md index e2c3c615d0..bdd287e660 100644 --- a/docs/available_software/detail/libvorbis.md +++ b/docs/available_software/detail/libvorbis.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, - general-purpose compressedaudio format + description: 'Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, + general-purpose compressed + + audio format' license: Not confirmed name: libvorbis offers: @@ -25,33 +25,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libvorbis/1.3.7-GCCcore-12.2.0'', ''libvorbis/1.3.7-GCCcore-12.3.0'', - ''libvorbis/1.3.7-GCCcore-13.2.0'']' + softwareVersion: '[''1.3.7'']' url: https://xiph.org/vorbis/ --- - -libvorbis -========= - - -Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, general-purpose compressedaudio format - -https://xiph.org/vorbis/ -# Available modules +# libvorbis -The overview below shows which libvorbis installations are available per target architecture in EESSI, ordered based on software version (new to old). +Ogg Vorbis is a fully open, non-proprietary, patent-and-royalty-free, general-purpose compressed +audio format -To start using libvorbis, load one of these modules using a `module load` command like: +homepage: [https://xiph.org/vorbis/](https://xiph.org/vorbis/) -```shell -module load libvorbis/1.3.7-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libvorbis/1.3.7-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libvorbis/1.3.7-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libvorbis/1.3.7-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libvorbis version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libvorbis/1.3.7-GCCcore-14.3.0`| +|1.3.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libvorbis/1.3.7-GCCcore-14.2.0`| +|1.3.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libvorbis/1.3.7-GCCcore-13.3.0`| +|1.3.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libvorbis/1.3.7-GCCcore-13.2.0`| +|1.3.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libvorbis/1.3.7-GCCcore-12.3.0`| +|1.3.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libvorbis/1.3.7-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libvori.md b/docs/available_software/detail/libvori.md index 768e776102..33d87b2fdd 100644 --- a/docs/available_software/detail/libvori.md +++ b/docs/available_software/detail/libvori.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: C++ library implementing the Voronoi integration as well as the compressed - bqbfile format. The present version of libvori is a very early developmentversion, - which is hard-coded to work with the CP2k program package. + description: 'C++ library implementing the Voronoi integration as well as the compressed + bqb + + file format. The present version of libvori is a very early development + + version, which is hard-coded to work with the CP2k program package.' license: Not confirmed name: libvori offers: @@ -26,30 +27,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libvori/220621-GCCcore-12.3.0'']' + softwareVersion: '[''220621'']' url: https://brehm-research.de/libvori.php --- - -libvori -======= - - -C++ library implementing the Voronoi integration as well as the compressed bqbfile format. The present version of libvori is a very early developmentversion, which is hard-coded to work with the CP2k program package. - -https://brehm-research.de/libvori.php -# Available modules +# libvori -The overview below shows which libvori installations are available per target architecture in EESSI, ordered based on software version (new to old). +C++ library implementing the Voronoi integration as well as the compressed bqb +file format. The present version of libvori is a very early development +version, which is hard-coded to work with the CP2k program package. -To start using libvori, load one of these modules using a `module load` command like: +homepage: [https://brehm-research.de/libvori.php](https://brehm-research.de/libvori.php) -```shell -module load libvori/220621-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libvori/220621-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libvori version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|220621|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libvori/220621-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libvpx.md b/docs/available_software/detail/libvpx.md new file mode 100644 index 0000000000..3182a23cb7 --- /dev/null +++ b/docs/available_software/detail/libvpx.md @@ -0,0 +1,46 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'VPx are open and royalty free video compression formats owned by Google. + + ' + license: Not confirmed + name: libvpx + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.15.2'']' + url: http://www.webmproject.org +--- +# libvpx + + +VPx are open and royalty free video compression formats owned by Google. + + +homepage: [http://www.webmproject.org](http://www.webmproject.org) + +## Available installations + + +|libvpx version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.15.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libvpx/1.15.2-GCCcore-14.3.0`| +|1.15.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libvpx/1.15.2-GCCcore-14.2.0`| +|1.15.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libvpx/1.15.2-GCCcore-13.3.0`| +|1.15.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libvpx/1.15.2-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libwebp.md b/docs/available_software/detail/libwebp.md index 6ea8bad0d7..f29ab64555 100644 --- a/docs/available_software/detail/libwebp.md +++ b/docs/available_software/detail/libwebp.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: WebP is a modern image format that provides superiorlossless and lossy - compression for images on the web. Using WebP,webmasters and web developers can - create smaller, richer images thatmake the web faster. + description: 'WebP is a modern image format that provides superior + + lossless and lossy compression for images on the web. Using WebP, + + webmasters and web developers can create smaller, richer images that + + make the web faster.' license: Not confirmed name: libwebp offers: @@ -26,31 +28,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libwebp/1.3.1-GCCcore-12.3.0'', ''libwebp/1.3.2-GCCcore-13.2.0'']' + softwareVersion: '[''1.5.0'', ''1.4.0'', ''1.3.2'', ''1.3.1'']' url: https://developers.google.com/speed/webp/ --- - -libwebp -======= - - -WebP is a modern image format that provides superiorlossless and lossy compression for images on the web. Using WebP,webmasters and web developers can create smaller, richer images thatmake the web faster. - -https://developers.google.com/speed/webp/ -# Available modules +# libwebp -The overview below shows which libwebp installations are available per target architecture in EESSI, ordered based on software version (new to old). +WebP is a modern image format that provides superior +lossless and lossy compression for images on the web. Using WebP, +webmasters and web developers can create smaller, richer images that +make the web faster. -To start using libwebp, load one of these modules using a `module load` command like: +homepage: [https://developers.google.com/speed/webp/](https://developers.google.com/speed/webp/) -```shell -module load libwebp/1.3.2-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libwebp/1.3.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libwebp/1.3.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libwebp version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libwebp/1.5.0-GCCcore-14.3.0`| +|1.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libwebp/1.5.0-GCCcore-14.2.0`| +|1.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libwebp/1.4.0-GCCcore-13.3.0`| +|1.3.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libwebp/1.3.2-GCCcore-13.2.0`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libwebp/1.3.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libwnck.md b/docs/available_software/detail/libwnck.md new file mode 100644 index 0000000000..b26c6c7d7b --- /dev/null +++ b/docs/available_software/detail/libwnck.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'libwnck is Window Navigator Construction Kit, i.e. a library to use + for writing pagers and taskslists + + and stuff.' + license: Not confirmed + name: libwnck + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''43.3'']' + url: https://gitlab.gnome.org/GNOME/libwnck +--- +# libwnck + + +libwnck is Window Navigator Construction Kit, i.e. a library to use for writing pagers and taskslists +and stuff. + +homepage: [https://gitlab.gnome.org/GNOME/libwnck](https://gitlab.gnome.org/GNOME/libwnck) + +## Available installations + + +|libwnck version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|43.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libwnck/43.3-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libwpe.md b/docs/available_software/detail/libwpe.md index 5e9adac3bb..34c9282e2b 100644 --- a/docs/available_software/detail/libwpe.md +++ b/docs/available_software/detail/libwpe.md @@ -1,14 +1,17 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: WPE is the reference WebKit port for embedded andlow-consumption computer - devices. It has been designed from theground-up with performance, small footprint, - accelerated contentrendering, and simplicity of deployment in mind, bringing theexcellence - of the WebKit engine to countless platforms and target devices. + description: 'WPE is the reference WebKit port for embedded and + + low-consumption computer devices. It has been designed from the + + ground-up with performance, small footprint, accelerated content + + rendering, and simplicity of deployment in mind, bringing the + + excellence of the WebKit engine to countless platforms and target devices.' license: Not confirmed name: libwpe offers: @@ -27,30 +30,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libwpe/1.16.0-GCCcore-12.3.0'']' + softwareVersion: '[''1.16.0'']' url: https://webkit.org/wpe --- - -libwpe -====== - - -WPE is the reference WebKit port for embedded andlow-consumption computer devices. It has been designed from theground-up with performance, small footprint, accelerated contentrendering, and simplicity of deployment in mind, bringing theexcellence of the WebKit engine to countless platforms and target devices. - -https://webkit.org/wpe -# Available modules +# libwpe -The overview below shows which libwpe installations are available per target architecture in EESSI, ordered based on software version (new to old). +WPE is the reference WebKit port for embedded and +low-consumption computer devices. It has been designed from the +ground-up with performance, small footprint, accelerated content +rendering, and simplicity of deployment in mind, bringing the +excellence of the WebKit engine to countless platforms and target devices. -To start using libwpe, load one of these modules using a `module load` command like: +homepage: [https://webkit.org/wpe](https://webkit.org/wpe) -```shell -module load libwpe/1.16.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libwpe/1.16.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libwpe version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.16.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libwpe/1.16.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libxc.md b/docs/available_software/detail/libxc.md index 116c86fb37..99c43e302c 100644 --- a/docs/available_software/detail/libxc.md +++ b/docs/available_software/detail/libxc.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Libxc is a library of exchange-correlation functionals for density-functional - theory. The aim is to provide a portable, well tested and reliable set of exchange - and correlation functionals. + description: "Libxc is a library of exchange-correlation functionals for density-functional\ + \ theory.\n The aim is to provide a portable, well tested and reliable set of\ + \ exchange and correlation functionals." license: Not confirmed name: libxc offers: @@ -26,31 +24,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libxc/6.1.0-GCC-12.2.0'', ''libxc/6.2.2-GCC-12.3.0'']' + softwareVersion: '[''7.0.0'', ''6.2.2'', ''6.1.0'']' url: https://www.tddft.org/programs/libxc --- +# libxc -libxc -===== +Libxc is a library of exchange-correlation functionals for density-functional theory. + The aim is to provide a portable, well tested and reliable set of exchange and correlation functionals. -Libxc is a library of exchange-correlation functionals for density-functional theory. The aim is to provide a portable, well tested and reliable set of exchange and correlation functionals. +homepage: [https://www.tddft.org/programs/libxc](https://www.tddft.org/programs/libxc) -https://www.tddft.org/programs/libxc -# Available modules +## Available installations -The overview below shows which libxc installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libxc, load one of these modules using a `module load` command like: - -```shell -module load libxc/6.2.2-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libxc/6.2.2-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libxc/6.1.0-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libxc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libxc/7.0.0-GCC-14.3.0`| +|6.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libxc/6.2.2-GCC-13.3.0`| +|6.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libxc/6.2.2-GCC-12.3.0`| +|6.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libxc/6.1.0-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libxml2-python.md b/docs/available_software/detail/libxml2-python.md index 68f0af3151..f246d1483f 100644 --- a/docs/available_software/detail/libxml2-python.md +++ b/docs/available_software/detail/libxml2-python.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Libxml2 is the XML C parser and toolchain developed for the Gnome project - (but usable outside of the Gnome platform). This is the Python binding. + description: "\n Libxml2 is the XML C parser and toolchain developed for the Gnome\ + \ project\n (but usable outside of the Gnome platform). This is the Python binding." license: Not confirmed name: libxml2-python offers: @@ -25,30 +23,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libxml2-python/2.11.4-GCCcore-12.3.0'']' + softwareVersion: '[''2.14.3'', ''2.11.4'']' url: http://xmlsoft.org/ --- +# libxml2-python -libxml2-python -============== -Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform). This is the Python binding. + Libxml2 is the XML C parser and toolchain developed for the Gnome project + (but usable outside of the Gnome platform). This is the Python binding. -http://xmlsoft.org/ -# Available modules +homepage: [http://xmlsoft.org/](http://xmlsoft.org/) +## Available installations -The overview below shows which libxml2-python installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using libxml2-python, load one of these modules using a `module load` command like: - -```shell -module load libxml2-python/2.11.4-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libxml2-python/2.11.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libxml2-python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.14.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libxml2-python/2.14.3-GCCcore-14.3.0`| +|2.11.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libxml2-python/2.11.4-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libxml2.md b/docs/available_software/detail/libxml2.md index 728dd116bb..5fc4c98aee 100644 --- a/docs/available_software/detail/libxml2.md +++ b/docs/available_software/detail/libxml2.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Libxml2 is the XML C parser and toolchain developed for the Gnome project - (but usable outside of the Gnome platform). + description: "\n Libxml2 is the XML C parser and toolchain developed for the Gnome\ + \ project\n (but usable outside of the Gnome platform).\n" license: Not confirmed name: libxml2 offers: @@ -25,33 +23,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libxml2/2.10.3-GCCcore-12.2.0'', ''libxml2/2.11.4-GCCcore-12.3.0'', - ''libxml2/2.11.5-GCCcore-13.2.0'']' + softwareVersion: '[''2.14.3'', ''2.13.4'', ''2.12.7'', ''2.11.5'', ''2.11.4'', ''2.10.3'']' url: http://xmlsoft.org/ --- +# libxml2 -libxml2 -======= -Libxml2 is the XML C parser and toolchain developed for the Gnome project (but usable outside of the Gnome platform). + Libxml2 is the XML C parser and toolchain developed for the Gnome project + (but usable outside of the Gnome platform). -http://xmlsoft.org/ -# Available modules +homepage: [http://xmlsoft.org/](http://xmlsoft.org/) -The overview below shows which libxml2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using libxml2, load one of these modules using a `module load` command like: -```shell -module load libxml2/2.11.5-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libxml2/2.11.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libxml2/2.11.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libxml2/2.10.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libxml2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.14.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libxml2/2.14.3-GCCcore-14.3.0`| +|2.13.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libxml2/2.13.4-GCCcore-14.2.0`| +|2.12.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libxml2/2.12.7-GCCcore-13.3.0`| +|2.11.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libxml2/2.11.5-GCCcore-13.2.0`| +|2.11.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libxml2/2.11.4-GCCcore-12.3.0`| +|2.10.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libxml2/2.10.3-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libxslt.md b/docs/available_software/detail/libxslt.md index 38ff2e9e25..17c2e57237 100644 --- a/docs/available_software/detail/libxslt.md +++ b/docs/available_software/detail/libxslt.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Libxslt is the XSLT C library developed for the GNOME project (but - usable outside of the Gnome platform). + description: "Libxslt is the XSLT C library developed for the GNOME project\n (but\ + \ usable outside of the Gnome platform)." license: Not confirmed name: libxslt offers: @@ -25,33 +23,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libxslt/1.1.37-GCCcore-12.2.0'', ''libxslt/1.1.38-GCCcore-12.3.0'', - ''libxslt/1.1.38-GCCcore-13.2.0'']' + softwareVersion: '[''1.1.43'', ''1.1.42'', ''1.1.38'', ''1.1.37'']' url: http://xmlsoft.org/ --- +# libxslt -libxslt -======= +Libxslt is the XSLT C library developed for the GNOME project + (but usable outside of the Gnome platform). -Libxslt is the XSLT C library developed for the GNOME project (but usable outside of the Gnome platform). +homepage: [http://xmlsoft.org/](http://xmlsoft.org/) -http://xmlsoft.org/ -# Available modules +## Available installations -The overview below shows which libxslt installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libxslt, load one of these modules using a `module load` command like: - -```shell -module load libxslt/1.1.38-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libxslt/1.1.38-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libxslt/1.1.38-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libxslt/1.1.37-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libxslt version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.1.43|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libxslt/1.1.43-GCCcore-14.3.0`| +|1.1.42|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libxslt/1.1.42-GCCcore-14.2.0`| +|1.1.42|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libxslt/1.1.42-GCCcore-13.3.0`| +|1.1.38|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libxslt/1.1.38-GCCcore-13.2.0`| +|1.1.38|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libxslt/1.1.38-GCCcore-12.3.0`| +|1.1.37|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libxslt/1.1.37-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libxsmm.md b/docs/available_software/detail/libxsmm.md index 557a6ea594..b716845d31 100644 --- a/docs/available_software/detail/libxsmm.md +++ b/docs/available_software/detail/libxsmm.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: LIBXSMM is a library for small dense and small sparse matrix-matrix - multiplicationstargeting Intel Architecture (x86). + description: 'LIBXSMM is a library for small dense and small sparse matrix-matrix + multiplications + + targeting Intel Architecture (x86).' license: Not confirmed name: libxsmm offers: @@ -25,30 +25,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libxsmm/1.17-GCC-12.3.0'']' + softwareVersion: '[''1.17'']' url: https://github.com/hfp/libxsmm --- - -libxsmm -======= - - -LIBXSMM is a library for small dense and small sparse matrix-matrix multiplicationstargeting Intel Architecture (x86). - -https://github.com/hfp/libxsmm -# Available modules +# libxsmm -The overview below shows which libxsmm installations are available per target architecture in EESSI, ordered based on software version (new to old). +LIBXSMM is a library for small dense and small sparse matrix-matrix multiplications +targeting Intel Architecture (x86). -To start using libxsmm, load one of these modules using a `module load` command like: +homepage: [https://github.com/hfp/libxsmm](https://github.com/hfp/libxsmm) -```shell -module load libxsmm/1.17-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libxsmm/1.17-GCC-12.3.0|-|-|-|-|-|x|x|x|x|x|x|x|x|x| +|libxsmm version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.17|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libxsmm/1.17-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/libyaml.md b/docs/available_software/detail/libyaml.md index 73d7d8fbaf..9dd480e868 100644 --- a/docs/available_software/detail/libyaml.md +++ b/docs/available_software/detail/libyaml.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''libyaml/0.2.5-GCCcore-12.2.0'', ''libyaml/0.2.5-GCCcore-12.3.0'', - ''libyaml/0.2.5-GCCcore-13.2.0'']' + softwareVersion: '[''0.2.5'']' url: https://pyyaml.org/wiki/LibYAML --- - -libyaml -======= +# libyaml LibYAML is a YAML parser and emitter written in C. -https://pyyaml.org/wiki/LibYAML -# Available modules - - -The overview below shows which libyaml installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using libyaml, load one of these modules using a `module load` command like: +homepage: [https://pyyaml.org/wiki/LibYAML](https://pyyaml.org/wiki/LibYAML) -```shell -module load libyaml/0.2.5-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|libyaml/0.2.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libyaml/0.2.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|libyaml/0.2.5-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|libyaml version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libyaml/0.2.5-GCCcore-14.3.0`| +|0.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libyaml/0.2.5-GCCcore-14.2.0`| +|0.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`libyaml/0.2.5-GCCcore-13.3.0`| +|0.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libyaml/0.2.5-GCCcore-13.2.0`| +|0.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libyaml/0.2.5-GCCcore-12.3.0`| +|0.2.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`libyaml/0.2.5-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/lit.md b/docs/available_software/detail/lit.md index 63fd53571a..ba6c1c3956 100644 --- a/docs/available_software/detail/lit.md +++ b/docs/available_software/detail/lit.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: lit is a portable tool for executing LLVM and Clang style test suites, - summarizing their results, andproviding indication of failures. + description: 'lit is a portable tool for executing LLVM and Clang style test suites, + summarizing their results, and + + providing indication of failures.' license: Not confirmed name: lit offers: @@ -25,44 +25,53 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''lit/18.1.2-GCCcore-12.3.0'', ''lit/18.1.7-GCCcore-13.2.0'']' + softwareVersion: '[''18.1.8'', ''18.1.7'', ''18.1.2'']' url: https://llvm.org/docs/CommandGuide/lit.html --- +# lit + -lit -=== +lit is a portable tool for executing LLVM and Clang style test suites, summarizing their results, and +providing indication of failures. +homepage: [https://llvm.org/docs/CommandGuide/lit.html](https://llvm.org/docs/CommandGuide/lit.html) -lit is a portable tool for executing LLVM and Clang style test suites, summarizing their results, andproviding indication of failures. +## Available installations -https://llvm.org/docs/CommandGuide/lit.html -# Available modules +|lit version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|18.1.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lit/18.1.8-GCCcore-14.3.0`| +|18.1.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lit/18.1.8-GCCcore-14.2.0`| +|18.1.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lit/18.1.8-GCCcore-13.3.0`| +|18.1.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lit/18.1.7-GCCcore-13.3.0`| +|18.1.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`lit/18.1.7-GCCcore-13.2.0`| +|18.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`lit/18.1.2-GCCcore-12.3.0`| -The overview below shows which lit installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using lit, load one of these modules using a `module load` command like: +Overview of extensions included in lit installations -```shell -module load lit/18.1.7-GCCcore-13.2.0 -``` -*(This data was automatically generated on {{ generated_time }})* +### lit -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|lit/18.1.7-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|lit/18.1.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`lit` version|lit modules that include it| +| --- | --- | +|18.1.8|`lit/18.1.8-GCCcore-14.3.0`
`lit/18.1.8-GCCcore-14.2.0`
`lit/18.1.8-GCCcore-13.3.0`| +|18.1.7|`lit/18.1.7-GCCcore-13.3.0`
`lit/18.1.7-GCCcore-13.2.0`| +|18.1.2|`lit/18.1.2-GCCcore-12.3.0`| -### lit/18.1.7-GCCcore-13.2.0 +### pexpect -This is a list of extensions included in the module: -lit-18.1.7, pexpect-4.9.0, ptyprocess-0.7.0 +|`pexpect` version|lit modules that include it| +| --- | --- | +|4.9.0|`lit/18.1.8-GCCcore-14.3.0`
`lit/18.1.8-GCCcore-14.2.0`
`lit/18.1.8-GCCcore-13.3.0`
`lit/18.1.7-GCCcore-13.3.0`
`lit/18.1.7-GCCcore-13.2.0`| -### lit/18.1.2-GCCcore-12.3.0 +### ptyprocess -This is a list of extensions included in the module: -lit-18.1.2 \ No newline at end of file +|`ptyprocess` version|lit modules that include it| +| --- | --- | +|0.7.0|`lit/18.1.8-GCCcore-14.3.0`
`lit/18.1.8-GCCcore-14.2.0`
`lit/18.1.8-GCCcore-13.3.0`
`lit/18.1.7-GCCcore-13.3.0`
`lit/18.1.7-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/llvm-compilers.md b/docs/available_software/detail/llvm-compilers.md new file mode 100644 index 0000000000..4f1faf8266 --- /dev/null +++ b/docs/available_software/detail/llvm-compilers.md @@ -0,0 +1,43 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'The LLVM Project is a collection of modular and reusable compiler + + and toolchain technologies.' + license: Not confirmed + name: llvm-compilers + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''20.1.8'']' + url: https://llvm.org/ +--- +# llvm-compilers + + +The LLVM Project is a collection of modular and reusable compiler +and toolchain technologies. + +homepage: [https://llvm.org/](https://llvm.org/) + +## Available installations + + +|llvm-compilers version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|20.1.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`llvm-compilers/20.1.8`| \ No newline at end of file diff --git a/docs/available_software/detail/lompi.md b/docs/available_software/detail/lompi.md new file mode 100644 index 0000000000..0af1df63ad --- /dev/null +++ b/docs/available_software/detail/lompi.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: LLVM based compiler toolchain, including OpenMPI for MPI support. + license: Not confirmed + name: lompi + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2025b'']' + url: (none) +--- +# lompi + + +LLVM based compiler toolchain, including OpenMPI for MPI support. + +homepage: [(none)]((none)) + +## Available installations + + +|lompi version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2025b|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lompi/2025b`| \ No newline at end of file diff --git a/docs/available_software/detail/lpsolve.md b/docs/available_software/detail/lpsolve.md index d986a3f19d..106fefd8da 100644 --- a/docs/available_software/detail/lpsolve.md +++ b/docs/available_software/detail/lpsolve.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''lpsolve/5.5.2.11-GCC-12.2.0'']' + softwareVersion: '[''5.5.2.11'']' url: https://sourceforge.net/projects/lpsolve/ --- - -lpsolve -======= +# lpsolve Mixed Integer Linear Programming (MILP) solver -https://sourceforge.net/projects/lpsolve/ -# Available modules - - -The overview below shows which lpsolve installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using lpsolve, load one of these modules using a `module load` command like: +homepage: [https://sourceforge.net/projects/lpsolve/](https://sourceforge.net/projects/lpsolve/) -```shell -module load lpsolve/5.5.2.11-GCC-12.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|lpsolve/5.5.2.11-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|lpsolve version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.5.2.11|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`lpsolve/5.5.2.11-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/luaposix.md b/docs/available_software/detail/luaposix.md new file mode 100644 index 0000000000..88316b34d8 --- /dev/null +++ b/docs/available_software/detail/luaposix.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "\n A library binding various POSIX APIs. POSIX is the IEEE Portable\ + \ Operating System\n Interface standard. luaposix is based on lposix.\n" + license: Not confirmed + name: luaposix + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''36.3'']' + url: http://luaposix.github.io/luaposix +--- +# luaposix + + + + A library binding various POSIX APIs. POSIX is the IEEE Portable Operating System + Interface standard. luaposix is based on lposix. + + +homepage: [http://luaposix.github.io/luaposix](http://luaposix.github.io/luaposix) + +## Available installations + + +|luaposix version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|36.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`luaposix/36.3-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/lxml.md b/docs/available_software/detail/lxml.md index 1d18426b9f..522d7c53fe 100644 --- a/docs/available_software/detail/lxml.md +++ b/docs/available_software/detail/lxml.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,31 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''lxml/4.9.2-GCCcore-12.3.0'', ''lxml/4.9.3-GCCcore-13.2.0'']' + softwareVersion: '[''6.0.0'', ''5.3.0'', ''4.9.3'', ''4.9.2'']' url: https://lxml.de/ --- - -lxml -==== +# lxml The lxml XML toolkit is a Pythonic binding for the C libraries libxml2 and libxslt. -https://lxml.de/ -# Available modules - - -The overview below shows which lxml installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using lxml, load one of these modules using a `module load` command like: +homepage: [https://lxml.de/](https://lxml.de/) -```shell -module load lxml/4.9.3-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|lxml/4.9.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|lxml/4.9.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|lxml version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lxml/6.0.0-GCCcore-14.3.0`| +|5.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lxml/5.3.0-GCCcore-14.2.0`| +|5.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lxml/5.3.0-GCCcore-13.3.0`| +|4.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`lxml/4.9.3-GCCcore-13.2.0`| +|4.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`lxml/4.9.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/lz4.md b/docs/available_software/detail/lz4.md index e46a51e885..f4c4380c6f 100644 --- a/docs/available_software/detail/lz4.md +++ b/docs/available_software/detail/lz4.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: LZ4 is lossless compression algorithm, providing compression speed - at 400 MB/s per core. It features an extremely fast decoder, with speed in multiple - GB/s per core. + description: "LZ4 is lossless compression algorithm, providing compression speed\ + \ at 400 MB/s per core.\n It features an extremely fast decoder, with speed in\ + \ multiple GB/s per core." license: Not confirmed name: lz4 offers: @@ -26,32 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''lz4/1.9.4-GCCcore-12.2.0'', ''lz4/1.9.4-GCCcore-12.3.0'', ''lz4/1.9.4-GCCcore-13.2.0'']' + softwareVersion: '[''1.10.0'', ''1.9.4'']' url: https://lz4.github.io/lz4/ --- +# lz4 -lz4 -=== +LZ4 is lossless compression algorithm, providing compression speed at 400 MB/s per core. + It features an extremely fast decoder, with speed in multiple GB/s per core. -LZ4 is lossless compression algorithm, providing compression speed at 400 MB/s per core. It features an extremely fast decoder, with speed in multiple GB/s per core. +homepage: [https://lz4.github.io/lz4/](https://lz4.github.io/lz4/) -https://lz4.github.io/lz4/ -# Available modules +## Available installations -The overview below shows which lz4 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using lz4, load one of these modules using a `module load` command like: - -```shell -module load lz4/1.9.4-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|lz4/1.9.4-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|lz4/1.9.4-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|lz4/1.9.4-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|lz4 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lz4/1.10.0-GCCcore-14.3.0`| +|1.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lz4/1.10.0-GCCcore-14.2.0`| +|1.9.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`lz4/1.9.4-GCCcore-13.3.0`| +|1.9.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`lz4/1.9.4-GCCcore-13.2.0`| +|1.9.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`lz4/1.9.4-GCCcore-12.3.0`| +|1.9.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`lz4/1.9.4-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/maeparser.md b/docs/available_software/detail/maeparser.md index 449fa1f246..875b4c5cb3 100644 --- a/docs/available_software/detail/maeparser.md +++ b/docs/available_software/detail/maeparser.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''maeparser/1.3.1-gompi-2023a'']' + softwareVersion: '[''1.3.1'']' url: https://github.com/schrodinger/maeparser --- - -maeparser -========= +# maeparser maeparser is a parser for Schrodinger Maestro files. -https://github.com/schrodinger/maeparser -# Available modules - - -The overview below shows which maeparser installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using maeparser, load one of these modules using a `module load` command like: +homepage: [https://github.com/schrodinger/maeparser](https://github.com/schrodinger/maeparser) -```shell -module load maeparser/1.3.1-gompi-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|maeparser/1.3.1-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|maeparser version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`maeparser/1.3.1-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/make.md b/docs/available_software/detail/make.md index 2ebdeddb81..851b2ce371 100644 --- a/docs/available_software/detail/make.md +++ b/docs/available_software/detail/make.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,32 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''make/4.3-GCCcore-12.2.0'', ''make/4.4.1-GCCcore-12.3.0'', ''make/4.4.1-GCCcore-13.2.0'']' + softwareVersion: '[''4.4.1'', ''4.3'']' url: https://www.gnu.org/software/make/make.html --- - -make -==== +# make GNU version of make utility -https://www.gnu.org/software/make/make.html -# Available modules - - -The overview below shows which make installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using make, load one of these modules using a `module load` command like: +homepage: [https://www.gnu.org/software/make/make.html](https://www.gnu.org/software/make/make.html) -```shell -module load make/4.4.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|make/4.4.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|make/4.4.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|make/4.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|make version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`make/4.4.1-GCCcore-14.3.0`| +|4.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`make/4.4.1-GCCcore-14.2.0`| +|4.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`make/4.4.1-GCCcore-13.3.0`| +|4.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`make/4.4.1-GCCcore-13.2.0`| +|4.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`make/4.4.1-GCCcore-12.3.0`| +|4.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`make/4.3-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/mallard-ducktype.md b/docs/available_software/detail/mallard-ducktype.md index 78b807e3ec..23955d4729 100644 --- a/docs/available_software/detail/mallard-ducktype.md +++ b/docs/available_software/detail/mallard-ducktype.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''mallard-ducktype/1.0.2-GCCcore-12.3.0'']' + softwareVersion: '[''1.0.2'']' url: https://github.com/projectmallard/mallard-ducktype --- - -mallard-ducktype -================ +# mallard-ducktype Parser for the lightweight Ducktype syntax for Mallard -https://github.com/projectmallard/mallard-ducktype -# Available modules - - -The overview below shows which mallard-ducktype installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using mallard-ducktype, load one of these modules using a `module load` command like: +homepage: [https://github.com/projectmallard/mallard-ducktype](https://github.com/projectmallard/mallard-ducktype) -```shell -module load mallard-ducktype/1.0.2-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|mallard-ducktype/1.0.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|mallard-ducktype version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`mallard-ducktype/1.0.2-GCCcore-14.3.0`| +|1.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`mallard-ducktype/1.0.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/matplotlib.md b/docs/available_software/detail/matplotlib.md index d42855c8f9..9a32379614 100644 --- a/docs/available_software/detail/matplotlib.md +++ b/docs/available_software/detail/matplotlib.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: matplotlib is a python 2D plotting library which produces publication - quality figures in a variety of hardcopy formats and interactive environments - across platforms. matplotlib can be used in python scripts, the python and ipython - shell, web application servers, and six graphical user interface toolkits. + description: "matplotlib is a python 2D plotting library which produces publication\ + \ quality figures in a variety of\n hardcopy formats and interactive environments\ + \ across platforms. matplotlib can be used in python scripts, the python\n and\ + \ ipython shell, web application servers, and six graphical user interface toolkits." license: Not confirmed name: matplotlib offers: @@ -27,52 +25,89 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''matplotlib/3.7.0-gfbf-2022b'', ''matplotlib/3.7.2-gfbf-2023a'', - ''matplotlib/3.8.2-gfbf-2023b'']' + softwareVersion: '[''3.10.5'', ''3.10.3'', ''3.9.2'', ''3.8.2'', ''3.7.2'', ''3.7.0'']' url: https://matplotlib.org --- +# matplotlib -matplotlib -========== +matplotlib is a python 2D plotting library which produces publication quality figures in a variety of + hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python + and ipython shell, web application servers, and six graphical user interface toolkits. -matplotlib is a python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python and ipython shell, web application servers, and six graphical user interface toolkits. +homepage: [https://matplotlib.org](https://matplotlib.org) -https://matplotlib.org -# Available modules +## Available installations -The overview below shows which matplotlib installations are available per target architecture in EESSI, ordered based on software version (new to old). +|matplotlib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.10.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`matplotlib/3.10.5-gfbf-2025b`| +|3.10.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`matplotlib/3.10.3-gfbf-2025a`| +|3.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`matplotlib/3.9.2-gfbf-2024a`| +|3.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`matplotlib/3.8.2-gfbf-2023b`| +|3.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`matplotlib/3.7.2-gfbf-2023a`| +|3.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`matplotlib/3.7.0-gfbf-2022b`| -To start using matplotlib, load one of these modules using a `module load` command like: +## Extensions -```shell -module load matplotlib/3.8.2-gfbf-2023b -``` +Overview of extensions included in matplotlib installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|matplotlib/3.8.2-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|matplotlib/3.7.2-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|matplotlib/3.7.0-gfbf-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### contourpy -### matplotlib/3.8.2-gfbf-2023b +|`contourpy` version|matplotlib modules that include it| +| --- | --- | +|1.3.3|`matplotlib/3.10.5-gfbf-2025b`| +|1.3.2|`matplotlib/3.10.3-gfbf-2025a`| +|1.3.0|`matplotlib/3.9.2-gfbf-2024a`| +|1.2.0|`matplotlib/3.8.2-gfbf-2023b`| +|1.1.0|`matplotlib/3.7.2-gfbf-2023a`| +|1.0.7|`matplotlib/3.7.0-gfbf-2022b`| -This is a list of extensions included in the module: +### Cycler -contourpy-1.2.0, Cycler-0.12.1, fonttools-4.47.0, kiwisolver-1.4.5, matplotlib-3.8.2 -### matplotlib/3.7.2-gfbf-2023a +|`Cycler` version|matplotlib modules that include it| +| --- | --- | +|0.12.1|`matplotlib/3.9.2-gfbf-2024a`
`matplotlib/3.8.2-gfbf-2023b`| +|0.11.0|`matplotlib/3.7.2-gfbf-2023a`
`matplotlib/3.7.0-gfbf-2022b`| -This is a list of extensions included in the module: +### cycler -contourpy-1.1.0, Cycler-0.11.0, fonttools-4.42.0, kiwisolver-1.4.4, matplotlib-3.7.2 -### matplotlib/3.7.0-gfbf-2022b +|`cycler` version|matplotlib modules that include it| +| --- | --- | +|0.12.1|`matplotlib/3.10.5-gfbf-2025b`
`matplotlib/3.10.3-gfbf-2025a`| -This is a list of extensions included in the module: +### fonttools -contourpy-1.0.7, Cycler-0.11.0, fonttools-4.38.0, kiwisolver-1.4.4, matplotlib-3.7.0 \ No newline at end of file + +|`fonttools` version|matplotlib modules that include it| +| --- | --- | +|4.53.1|`matplotlib/3.9.2-gfbf-2024a`| +|4.47.0|`matplotlib/3.8.2-gfbf-2023b`| +|4.42.0|`matplotlib/3.7.2-gfbf-2023a`| +|4.38.0|`matplotlib/3.7.0-gfbf-2022b`| + +### kiwisolver + + +|`kiwisolver` version|matplotlib modules that include it| +| --- | --- | +|1.4.8|`matplotlib/3.10.5-gfbf-2025b`| +|1.4.5|`matplotlib/3.10.3-gfbf-2025a`
`matplotlib/3.9.2-gfbf-2024a`
`matplotlib/3.8.2-gfbf-2023b`| +|1.4.4|`matplotlib/3.7.2-gfbf-2023a`
`matplotlib/3.7.0-gfbf-2022b`| + +### matplotlib + + +|`matplotlib` version|matplotlib modules that include it| +| --- | --- | +|3.10.5|`matplotlib/3.10.5-gfbf-2025b`| +|3.10.3|`matplotlib/3.10.3-gfbf-2025a`| +|3.9.2|`matplotlib/3.9.2-gfbf-2024a`| +|3.8.2|`matplotlib/3.8.2-gfbf-2023b`| +|3.7.2|`matplotlib/3.7.2-gfbf-2023a`| +|3.7.0|`matplotlib/3.7.0-gfbf-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/maturin.md b/docs/available_software/detail/maturin.md index f9855dd450..f8c1200ec1 100644 --- a/docs/available_software/detail/maturin.md +++ b/docs/available_software/detail/maturin.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: This project is meant as a zero configurationreplacement for setuptools-rust - and milksnake. It supports buildingwheels for python 3.5+ on windows, linux, mac - and freebsd, can uploadthem to pypi and has basic pypy and graalpy support. + description: 'This project is meant as a zero configuration + + replacement for setuptools-rust and milksnake. It supports building + + wheels for python 3.5+ on windows, linux, mac and freebsd, can upload + + them to pypi and has basic pypy and graalpy support.' license: Not confirmed name: maturin offers: @@ -26,33 +28,29 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''maturin/1.1.0-GCCcore-12.3.0'', ''maturin/1.4.0-GCCcore-12.3.0-Rust-1.75.0'', - ''maturin/1.5.0-GCCcore-13.2.0-Rust-1.76.0'']' + softwareVersion: '[''1.9.1'', ''1.8.3'', ''1.6.0'', ''1.5.0'', ''1.4.0'', ''1.3.1'', + ''1.1.0'']' url: https://github.com/pyo3/maturin --- - -maturin -======= - - -This project is meant as a zero configurationreplacement for setuptools-rust and milksnake. It supports buildingwheels for python 3.5+ on windows, linux, mac and freebsd, can uploadthem to pypi and has basic pypy and graalpy support. - -https://github.com/pyo3/maturin -# Available modules +# maturin -The overview below shows which maturin installations are available per target architecture in EESSI, ordered based on software version (new to old). +This project is meant as a zero configuration +replacement for setuptools-rust and milksnake. It supports building +wheels for python 3.5+ on windows, linux, mac and freebsd, can upload +them to pypi and has basic pypy and graalpy support. -To start using maturin, load one of these modules using a `module load` command like: +homepage: [https://github.com/pyo3/maturin](https://github.com/pyo3/maturin) -```shell -module load maturin/1.5.0-GCCcore-13.2.0-Rust-1.76.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|maturin/1.5.0-GCCcore-13.2.0-Rust-1.76.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|maturin/1.4.0-GCCcore-12.3.0-Rust-1.75.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|maturin/1.1.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|maturin version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`maturin/1.9.1-GCCcore-14.3.0`| +|1.8.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`maturin/1.8.3-GCCcore-14.2.0`| +|1.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`maturin/1.6.0-GCCcore-13.3.0`| +|1.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`maturin/1.5.0-GCCcore-13.2.0-Rust-1.76.0`| +|1.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`maturin/1.4.0-GCCcore-12.3.0-Rust-1.75.0`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`maturin/1.3.1-GCCcore-13.2.0`| +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`maturin/1.1.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/mctc-lib.md b/docs/available_software/detail/mctc-lib.md index d7eef1636a..32ec591697 100644 --- a/docs/available_software/detail/mctc-lib.md +++ b/docs/available_software/detail/mctc-lib.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Common tool chain for working with molecular structure data in variousapplications. - This library provides a unified way to perform operations onmolecular structure - data, like reading and writing to common geometry fileformats. + description: 'Common tool chain for working with molecular structure data in various + + applications. This library provides a unified way to perform operations on + + molecular structure data, like reading and writing to common geometry file + + formats.' license: Not confirmed name: mctc-lib offers: @@ -26,31 +28,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''mctc-lib/0.3.1-GCC-12.3.0'', ''mctc-lib/0.3.1-GCC-13.2.0'']' + softwareVersion: '[''0.3.1'']' url: https://grimme-lab.github.io/mctc-lib --- - -mctc-lib -======== - - -Common tool chain for working with molecular structure data in variousapplications. This library provides a unified way to perform operations onmolecular structure data, like reading and writing to common geometry fileformats. - -https://grimme-lab.github.io/mctc-lib -# Available modules +# mctc-lib -The overview below shows which mctc-lib installations are available per target architecture in EESSI, ordered based on software version (new to old). +Common tool chain for working with molecular structure data in various +applications. This library provides a unified way to perform operations on +molecular structure data, like reading and writing to common geometry file +formats. -To start using mctc-lib, load one of these modules using a `module load` command like: +homepage: [https://grimme-lab.github.io/mctc-lib](https://grimme-lab.github.io/mctc-lib) -```shell -module load mctc-lib/0.3.1-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|mctc-lib/0.3.1-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|mctc-lib/0.3.1-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|mctc-lib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`mctc-lib/0.3.1-GCC-13.3.0`| +|0.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`mctc-lib/0.3.1-GCC-13.2.0`| +|0.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`mctc-lib/0.3.1-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/meson-python.md b/docs/available_software/detail/meson-python.md index 7dfff29246..888e593ed5 100644 --- a/docs/available_software/detail/meson-python.md +++ b/docs/available_software/detail/meson-python.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,59 +22,51 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''meson-python/0.11.0-GCCcore-12.2.0'', ''meson-python/0.13.2-GCCcore-12.3.0'', - ''meson-python/0.15.0-GCCcore-12.3.0'', ''meson-python/0.15.0-GCCcore-13.2.0'']' + softwareVersion: '[''0.18.0'', ''0.16.0'', ''0.15.0'', ''0.13.2'', ''0.11.0'']' url: https://github.com/mesonbuild/meson-python --- - -meson-python -============ +# meson-python Python build backend (PEP 517) for Meson projects -https://github.com/mesonbuild/meson-python -# Available modules - - -The overview below shows which meson-python installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using meson-python, load one of these modules using a `module load` command like: - -```shell -module load meson-python/0.15.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|meson-python/0.15.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|meson-python/0.15.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|meson-python/0.13.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|meson-python/0.11.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| - +homepage: [https://github.com/mesonbuild/meson-python](https://github.com/mesonbuild/meson-python) -### meson-python/0.15.0-GCCcore-13.2.0 +## Available installations -This is a list of extensions included in the module: -meson-python-0.15.0, pyproject-metadata-0.7.1 +|meson-python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`meson-python/0.18.0-GCCcore-14.3.0`| +|0.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`meson-python/0.18.0-GCCcore-14.2.0`| +|0.16.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`meson-python/0.16.0-GCCcore-13.3.0`| +|0.15.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`meson-python/0.15.0-GCCcore-13.2.0`| +|0.15.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`meson-python/0.15.0-GCCcore-12.3.0`| +|0.13.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`meson-python/0.13.2-GCCcore-12.3.0`| +|0.11.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`meson-python/0.11.0-GCCcore-12.2.0`| -### meson-python/0.15.0-GCCcore-12.3.0 +## Extensions -This is a list of extensions included in the module: +Overview of extensions included in meson-python installations -meson-python-0.15.0, pyproject-metadata-0.7.1 -### meson-python/0.13.2-GCCcore-12.3.0 +### meson-python -This is a list of extensions included in the module: -meson-python-0.13.2, pyproject-metadata-0.7.1 +|`meson-python` version|meson-python modules that include it| +| --- | --- | +|0.18.0|`meson-python/0.18.0-GCCcore-14.3.0`
`meson-python/0.18.0-GCCcore-14.2.0`| +|0.16.0|`meson-python/0.16.0-GCCcore-13.3.0`| +|0.15.0|`meson-python/0.15.0-GCCcore-13.2.0`
`meson-python/0.15.0-GCCcore-12.3.0`| +|0.13.2|`meson-python/0.13.2-GCCcore-12.3.0`| +|0.11.0|`meson-python/0.11.0-GCCcore-12.2.0`| -### meson-python/0.11.0-GCCcore-12.2.0 +### pyproject-metadata -This is a list of extensions included in the module: -meson-python-0.11.0, pyproject-metadata-0.6.1 \ No newline at end of file +|`pyproject-metadata` version|meson-python modules that include it| +| --- | --- | +|0.9.1|`meson-python/0.18.0-GCCcore-14.3.0`
`meson-python/0.18.0-GCCcore-14.2.0`| +|0.8.0|`meson-python/0.16.0-GCCcore-13.3.0`| +|0.7.1|`meson-python/0.15.0-GCCcore-13.2.0`
`meson-python/0.15.0-GCCcore-12.3.0`
`meson-python/0.13.2-GCCcore-12.3.0`| +|0.6.1|`meson-python/0.11.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/minimap2.md b/docs/available_software/detail/minimap2.md new file mode 100644 index 0000000000..626d5cb1bd --- /dev/null +++ b/docs/available_software/detail/minimap2.md @@ -0,0 +1,64 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Minimap2 is a fast sequence mapping and alignment + + program that can find overlaps between long noisy reads, or map long + + reads or their assemblies to a reference genome optionally with detailed + + alignment (i.e. CIGAR). At present, it works efficiently with query + + sequences from a few kilobases to ~100 megabases in length at an error + + rate ~15%. Minimap2 outputs in the PAF or the SAM format. On limited + + test data sets, minimap2 is over 20 times faster than most other + + long-read aligners. It will replace BWA-MEM for long reads and contig + + alignment.' + license: Not confirmed + name: minimap2 + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.30'']' + url: https://github.com/lh3/minimap2 +--- +# minimap2 + + +Minimap2 is a fast sequence mapping and alignment +program that can find overlaps between long noisy reads, or map long +reads or their assemblies to a reference genome optionally with detailed +alignment (i.e. CIGAR). At present, it works efficiently with query +sequences from a few kilobases to ~100 megabases in length at an error +rate ~15%. Minimap2 outputs in the PAF or the SAM format. On limited +test data sets, minimap2 is over 20 times faster than most other +long-read aligners. It will replace BWA-MEM for long reads and contig +alignment. + +homepage: [https://github.com/lh3/minimap2](https://github.com/lh3/minimap2) + +## Available installations + + +|minimap2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.30|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`minimap2/2.30-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/minizip.md b/docs/available_software/detail/minizip.md index 140d324fbf..a504e37cb1 100644 --- a/docs/available_software/detail/minizip.md +++ b/docs/available_software/detail/minizip.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''minizip/1.1-GCCcore-12.3.0'']' + softwareVersion: '[''1.1'']' url: https://www.winimage.com/zLibDll/minizip.html --- - -minizip -======= +# minizip Mini zip and unzip based on zlib -https://www.winimage.com/zLibDll/minizip.html -# Available modules - - -The overview below shows which minizip installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using minizip, load one of these modules using a `module load` command like: +homepage: [https://www.winimage.com/zLibDll/minizip.html](https://www.winimage.com/zLibDll/minizip.html) -```shell -module load minizip/1.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|minizip/1.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|minizip version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`minizip/1.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ml_dtypes.md b/docs/available_software/detail/ml_dtypes.md index 8ed9f4d2d4..06d05d0255 100644 --- a/docs/available_software/detail/ml_dtypes.md +++ b/docs/available_software/detail/ml_dtypes.md @@ -1,14 +1,30 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'ml_dtypes is a stand-alone implementation of several NumPy dtype extensions - usedin machine learning libraries, including:bfloat16: an alternative to the standard - float16 formatfloat8_*: several experimental 8-bit floating point representations - including:float8_e4m3b11fnuzfloat8_e4m3fnfloat8_e4m3fnuzfloat8_e5m2float8_e5m2fnuz' + description: ' + + ml_dtypes is a stand-alone implementation of several NumPy dtype extensions used + + in machine learning libraries, including: + + + bfloat16: an alternative to the standard float16 format + + float8_*: several experimental 8-bit floating point representations including: + + float8_e4m3b11fnuz + + float8_e4m3fn + + float8_e4m3fnuz + + float8_e5m2 + + float8_e5m2fnuz + + ' license: Not confirmed name: ml_dtypes offers: @@ -27,37 +43,56 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ml_dtypes/0.3.2-gfbf-2023a'']' + softwareVersion: '[''0.3.2'']' url: https://github.com/jax-ml/ml_dtypes --- +# ml_dtypes + + + +ml_dtypes is a stand-alone implementation of several NumPy dtype extensions used +in machine learning libraries, including: + +bfloat16: an alternative to the standard float16 format +float8_*: several experimental 8-bit floating point representations including: +float8_e4m3b11fnuz +float8_e4m3fn +float8_e4m3fnuz +float8_e5m2 +float8_e5m2fnuz + + +homepage: [https://github.com/jax-ml/ml_dtypes](https://github.com/jax-ml/ml_dtypes) + +## Available installations -ml_dtypes -========= +|ml_dtypes version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.3.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ml_dtypes/0.3.2-gfbf-2023a`| -ml_dtypes is a stand-alone implementation of several NumPy dtype extensions usedin machine learning libraries, including:bfloat16: an alternative to the standard float16 formatfloat8_*: several experimental 8-bit floating point representations including:float8_e4m3b11fnuzfloat8_e4m3fnfloat8_e4m3fnuzfloat8_e5m2float8_e5m2fnuz +## Extensions -https://github.com/jax-ml/ml_dtypes -# Available modules +Overview of extensions included in ml_dtypes installations -The overview below shows which ml_dtypes installations are available per target architecture in EESSI, ordered based on software version (new to old). +### etils -To start using ml_dtypes, load one of these modules using a `module load` command like: -```shell -module load ml_dtypes/0.3.2-gfbf-2023a -``` +|`etils` version|ml_dtypes modules that include it| +| --- | --- | +|1.6.0|`ml_dtypes/0.3.2-gfbf-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### ml_dtypes -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ml_dtypes/0.3.2-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`ml_dtypes` version|ml_dtypes modules that include it| +| --- | --- | +|0.3.2|`ml_dtypes/0.3.2-gfbf-2023a`| -### ml_dtypes/0.3.2-gfbf-2023a +### opt_einsum -This is a list of extensions included in the module: -etils-1.6.0, ml_dtypes-0.3.2, opt_einsum-3.3.0 \ No newline at end of file +|`opt_einsum` version|ml_dtypes modules that include it| +| --- | --- | +|3.3.0|`ml_dtypes/0.3.2-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/mpi4py.md b/docs/available_software/detail/mpi4py.md index 066de40dc6..2020efb9d8 100644 --- a/docs/available_software/detail/mpi4py.md +++ b/docs/available_software/detail/mpi4py.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: MPI for Python (mpi4py) provides bindings of the Message Passing Interface - (MPI) standard for the Python programming language, allowing any Python program - to exploit multiple processors. + description: "MPI for Python (mpi4py) provides bindings of the Message Passing Interface\ + \ (MPI) standard for\n the Python programming language, allowing any Python program\ + \ to exploit multiple processors." license: Not confirmed name: mpi4py offers: @@ -26,51 +24,40 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''mpi4py/3.1.4-gompi-2022b'', ''mpi4py/3.1.4-gompi-2023a'', ''mpi4py/3.1.5-gompi-2023b'']' + softwareVersion: '[''4.1.0'', ''4.0.1'', ''3.1.5'', ''3.1.4'']' url: https://github.com/mpi4py/mpi4py --- +# mpi4py -mpi4py -====== +MPI for Python (mpi4py) provides bindings of the Message Passing Interface (MPI) standard for + the Python programming language, allowing any Python program to exploit multiple processors. -MPI for Python (mpi4py) provides bindings of the Message Passing Interface (MPI) standard for the Python programming language, allowing any Python program to exploit multiple processors. +homepage: [https://github.com/mpi4py/mpi4py](https://github.com/mpi4py/mpi4py) -https://github.com/mpi4py/mpi4py -# Available modules +## Available installations -The overview below shows which mpi4py installations are available per target architecture in EESSI, ordered based on software version (new to old). +|mpi4py version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`mpi4py/4.1.0-gompi-2025b`| +|4.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`mpi4py/4.1.0-gompi-2025a`| +|4.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`mpi4py/4.0.1-gompi-2024a`| +|3.1.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`mpi4py/3.1.5-gompi-2023b`| +|3.1.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`mpi4py/3.1.4-gompi-2023a`| +|3.1.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`mpi4py/3.1.4-gompi-2022b`| -To start using mpi4py, load one of these modules using a `module load` command like: +## Extensions -```shell -module load mpi4py/3.1.5-gompi-2023b -``` +Overview of extensions included in mpi4py installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|mpi4py/3.1.5-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|mpi4py/3.1.4-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|mpi4py/3.1.4-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### mpi4py -### mpi4py/3.1.5-gompi-2023b - -This is a list of extensions included in the module: - -mpi4py-3.1.5 - -### mpi4py/3.1.4-gompi-2023a - -This is a list of extensions included in the module: - -mpi4py-3.1.4 - -### mpi4py/3.1.4-gompi-2022b - -This is a list of extensions included in the module: - -mpi4py-3.1.4 \ No newline at end of file +|`mpi4py` version|mpi4py modules that include it| +| --- | --- | +|4.1.0|`mpi4py/4.1.0-gompi-2025b`
`mpi4py/4.1.0-gompi-2025a`| +|4.0.1|`mpi4py/4.0.1-gompi-2024a`| +|3.1.5|`mpi4py/3.1.5-gompi-2023b`| +|3.1.4|`mpi4py/3.1.4-gompi-2023a`
`mpi4py/3.1.4-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/mpl-ascii.md b/docs/available_software/detail/mpl-ascii.md index c187c9e247..0e93e1ac59 100644 --- a/docs/available_software/detail/mpl-ascii.md +++ b/docs/available_software/detail/mpl-ascii.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''mpl-ascii/0.10.0-gfbf-2023a'']' + softwareVersion: '[''0.10.0'']' url: https://github.com/chriscave/mpl_ascii --- - -mpl-ascii -========= +# mpl-ascii A matplotlib backend that produces plots using only ASCII characters -https://github.com/chriscave/mpl_ascii -# Available modules - +homepage: [https://github.com/chriscave/mpl_ascii](https://github.com/chriscave/mpl_ascii) -The overview below shows which mpl-ascii installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using mpl-ascii, load one of these modules using a `module load` command like: -```shell -module load mpl-ascii/0.10.0-gfbf-2023a -``` +|mpl-ascii version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`mpl-ascii/0.10.0-gfbf-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|mpl-ascii/0.10.0-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in mpl-ascii installations -### mpl-ascii/0.10.0-gfbf-2023a +### mpl-ascii -This is a list of extensions included in the module: -mpl-ascii-0.10.0 \ No newline at end of file +|`mpl-ascii` version|mpl-ascii modules that include it| +| --- | --- | +|0.10.0|`mpl-ascii/0.10.0-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/mstore.md b/docs/available_software/detail/mstore.md index 217dfb65ed..dfa202e987 100644 --- a/docs/available_software/detail/mstore.md +++ b/docs/available_software/detail/mstore.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''mstore/0.3.0-GCC-12.3.0'', ''mstore/0.3.0-GCC-13.2.0'']' + softwareVersion: '[''0.3.0'']' url: https://github.com/grimme-lab/mstore --- - -mstore -====== +# mstore Molecular structure store for testing -https://github.com/grimme-lab/mstore -# Available modules - - -The overview below shows which mstore installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using mstore, load one of these modules using a `module load` command like: +homepage: [https://github.com/grimme-lab/mstore](https://github.com/grimme-lab/mstore) -```shell -module load mstore/0.3.0-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|mstore/0.3.0-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|mstore/0.3.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|mstore version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`mstore/0.3.0-GCC-13.3.0`| +|0.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`mstore/0.3.0-GCC-13.2.0`| +|0.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`mstore/0.3.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/multicharge.md b/docs/available_software/detail/multicharge.md index 68c36d6657..e4b239bc63 100644 --- a/docs/available_software/detail/multicharge.md +++ b/docs/available_software/detail/multicharge.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''multicharge/0.3.0-gfbf-2023b'']' + softwareVersion: '[''0.3.0'']' url: https://github.com/grimme-lab/multicharge --- - -multicharge -=========== +# multicharge Electronegativity equilibration model for atomic partial charges. -https://github.com/grimme-lab/multicharge -# Available modules - - -The overview below shows which multicharge installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using multicharge, load one of these modules using a `module load` command like: +homepage: [https://github.com/grimme-lab/multicharge](https://github.com/grimme-lab/multicharge) -```shell -module load multicharge/0.3.0-gfbf-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|multicharge/0.3.0-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|multicharge version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`multicharge/0.3.0-gfbf-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/multiprocess.md b/docs/available_software/detail/multiprocess.md index 2908d7d4d1..284e58aff4 100644 --- a/docs/available_software/detail/multiprocess.md +++ b/docs/available_software/detail/multiprocess.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''multiprocess/0.70.16-gfbf-2023b'']' + softwareVersion: '[''0.70.16'']' url: https://github.com/uqfoundation/multiprocess --- - -multiprocess -============ +# multiprocess better multiprocessing and multithreading in python -https://github.com/uqfoundation/multiprocess -# Available modules - - -The overview below shows which multiprocess installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using multiprocess, load one of these modules using a `module load` command like: +homepage: [https://github.com/uqfoundation/multiprocess](https://github.com/uqfoundation/multiprocess) -```shell -module load multiprocess/0.70.16-gfbf-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|multiprocess/0.70.16-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|multiprocess version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.70.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`multiprocess/0.70.16-gfbf-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/nanobind.md b/docs/available_software/detail/nanobind.md new file mode 100644 index 0000000000..f69d0979bd --- /dev/null +++ b/docs/available_software/detail/nanobind.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'nanobind is a small binding library for C++11 / C++17 / C++20 that + heavily + + builds on capabilities introduced in recent versions of C++.' + license: Not confirmed + name: nanobind + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.5.0'']' + url: https://github.com/wjakob/nanobind +--- +# nanobind + + +nanobind is a small binding library for C++11 / C++17 / C++20 that heavily +builds on capabilities introduced in recent versions of C++. + +homepage: [https://github.com/wjakob/nanobind](https://github.com/wjakob/nanobind) + +## Available installations + + +|nanobind version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nanobind/2.5.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ncbi-vdb.md b/docs/available_software/detail/ncbi-vdb.md index 9e46b21470..6bede9bfb9 100644 --- a/docs/available_software/detail/ncbi-vdb.md +++ b/docs/available_software/detail/ncbi-vdb.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The SRA Toolkit and SDK from NCBI is a collection of tools and libraries - for using data in the INSDC Sequence Read Archives. + description: "The SRA Toolkit and SDK from NCBI is a collection of tools and libraries\ + \ for\n using data in the INSDC Sequence Read Archives." license: Not confirmed name: ncbi-vdb offers: @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ncbi-vdb/3.0.5-gompi-2022b'', ''ncbi-vdb/3.0.10-gompi-2023a'']' + softwareVersion: '[''3.0.10'', ''3.0.5'']' url: https://github.com/ncbi/ncbi-vdb --- +# ncbi-vdb -ncbi-vdb -======== +The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for + using data in the INSDC Sequence Read Archives. -The SRA Toolkit and SDK from NCBI is a collection of tools and libraries for using data in the INSDC Sequence Read Archives. +homepage: [https://github.com/ncbi/ncbi-vdb](https://github.com/ncbi/ncbi-vdb) -https://github.com/ncbi/ncbi-vdb -# Available modules +## Available installations -The overview below shows which ncbi-vdb installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ncbi-vdb, load one of these modules using a `module load` command like: - -```shell -module load ncbi-vdb/3.0.10-gompi-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ncbi-vdb/3.0.10-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ncbi-vdb/3.0.5-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ncbi-vdb version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.0.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ncbi-vdb/3.0.10-gompi-2023a`| +|3.0.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ncbi-vdb/3.0.5-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/ncdu.md b/docs/available_software/detail/ncdu.md index 390be6dc2a..4b6498dd30 100644 --- a/docs/available_software/detail/ncdu.md +++ b/docs/available_software/detail/ncdu.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Ncdu is a disk usage analyzer with an ncurses interface. It is designed - to find space hogs on a remote server where you don't have an entire graphical - setup available, but it is a useful tool even on regular desktop systems. Ncdu - aims to be fast, simple and easy to use, and should be able to run in any minimal - POSIX-like environment with ncurses installed. + description: "Ncdu is a disk usage analyzer with an ncurses interface. It is designed\ + \ to find space hogs on a\n remote server where you don't have an entire graphical\ + \ setup available, but it is a useful tool even on regular\n desktop systems.\ + \ Ncdu aims to be fast, simple and easy to use, and should be able to run in any\ + \ minimal POSIX-like\n environment with ncurses installed." license: Not confirmed name: ncdu offers: @@ -28,30 +26,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ncdu/1.18-GCC-12.3.0'']' + softwareVersion: '[''1.18'']' url: https://dev.yorhel.nl/ncdu --- +# ncdu -ncdu -==== +Ncdu is a disk usage analyzer with an ncurses interface. It is designed to find space hogs on a + remote server where you don't have an entire graphical setup available, but it is a useful tool even on regular + desktop systems. Ncdu aims to be fast, simple and easy to use, and should be able to run in any minimal POSIX-like + environment with ncurses installed. -Ncdu is a disk usage analyzer with an ncurses interface. It is designed to find space hogs on a remote server where you don't have an entire graphical setup available, but it is a useful tool even on regular desktop systems. Ncdu aims to be fast, simple and easy to use, and should be able to run in any minimal POSIX-like environment with ncurses installed. +homepage: [https://dev.yorhel.nl/ncdu](https://dev.yorhel.nl/ncdu) -https://dev.yorhel.nl/ncdu -# Available modules +## Available installations -The overview below shows which ncdu installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using ncdu, load one of these modules using a `module load` command like: - -```shell -module load ncdu/1.18-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ncdu/1.18-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ncdu version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ncdu/1.18-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/neko.md b/docs/available_software/detail/neko.md new file mode 100644 index 0000000000..33796b982b --- /dev/null +++ b/docs/available_software/detail/neko.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Neko is a portable framework for high-order spectral element flow simulations. + license: Not confirmed + name: neko + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.1'']' + url: https://neko.cfd/ +--- +# neko + + +Neko is a portable framework for high-order spectral element flow simulations. + +homepage: [https://neko.cfd/](https://neko.cfd/) + +## Available installations + + +|neko version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`neko/0.9.1-foss-2025a`| \ No newline at end of file diff --git a/docs/available_software/detail/netCDF-C++4.md b/docs/available_software/detail/netCDF-C++4.md index 357b75005e..12fad030bf 100644 --- a/docs/available_software/detail/netCDF-C++4.md +++ b/docs/available_software/detail/netCDF-C++4.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: NetCDF (network Common Data Form) is a set of software libraries and - machine-independent data formats that support the creation, access, and sharing - of array-oriented scientific data. + description: "NetCDF (network Common Data Form) is a set of software libraries\n\ + \ and machine-independent data formats that support the creation, access, and\ + \ sharing of array-oriented\n scientific data." license: Not confirmed name: netCDF-C++4 offers: @@ -26,31 +24,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''netCDF-C++4/4.3.1-gompi-2023a'', ''netCDF-C++4/4.3.1-gompi-2023b'']' + softwareVersion: '[''4.3.1'']' url: https://www.unidata.ucar.edu/software/netcdf/ --- +# netCDF-C++4 -netCDF-C++4 -=========== +NetCDF (network Common Data Form) is a set of software libraries + and machine-independent data formats that support the creation, access, and sharing of array-oriented + scientific data. -NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. +homepage: [https://www.unidata.ucar.edu/software/netcdf/](https://www.unidata.ucar.edu/software/netcdf/) -https://www.unidata.ucar.edu/software/netcdf/ -# Available modules +## Available installations -The overview below shows which netCDF-C++4 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using netCDF-C++4, load one of these modules using a `module load` command like: - -```shell -module load netCDF-C++4/4.3.1-gompi-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|netCDF-C++4/4.3.1-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|netCDF-C++4/4.3.1-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|netCDF-C++4 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`netCDF-C++4/4.3.1-gompi-2023b`| +|4.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`netCDF-C++4/4.3.1-gompi-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/netCDF-Fortran.md b/docs/available_software/detail/netCDF-Fortran.md index fcd5fd2908..10e0f0fa04 100644 --- a/docs/available_software/detail/netCDF-Fortran.md +++ b/docs/available_software/detail/netCDF-Fortran.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: NetCDF (network Common Data Form) is a set of software libraries and - machine-independent data formats that support the creation, access, and sharing - of array-oriented scientific data. + description: "NetCDF (network Common Data Form) is a set of software libraries\n\ + \ and machine-independent data formats that support the creation, access, and\ + \ sharing of array-oriented\n scientific data." license: Not confirmed name: netCDF-Fortran offers: @@ -26,33 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''netCDF-Fortran/4.6.0-gompi-2022b'', ''netCDF-Fortran/4.6.1-gompi-2023a'', - ''netCDF-Fortran/4.6.1-gompi-2023b'']' + softwareVersion: '[''4.6.2'', ''4.6.1'', ''4.6.0'']' url: https://www.unidata.ucar.edu/software/netcdf/ --- +# netCDF-Fortran -netCDF-Fortran -============== +NetCDF (network Common Data Form) is a set of software libraries + and machine-independent data formats that support the creation, access, and sharing of array-oriented + scientific data. -NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. +homepage: [https://www.unidata.ucar.edu/software/netcdf/](https://www.unidata.ucar.edu/software/netcdf/) -https://www.unidata.ucar.edu/software/netcdf/ -# Available modules +## Available installations -The overview below shows which netCDF-Fortran installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using netCDF-Fortran, load one of these modules using a `module load` command like: - -```shell -module load netCDF-Fortran/4.6.1-gompi-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|netCDF-Fortran/4.6.1-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|netCDF-Fortran/4.6.1-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|netCDF-Fortran/4.6.0-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|netCDF-Fortran version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.6.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`netCDF-Fortran/4.6.2-gompi-2025a`| +|4.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`netCDF-Fortran/4.6.1-gompi-2024a`| +|4.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`netCDF-Fortran/4.6.1-gompi-2023b`| +|4.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`netCDF-Fortran/4.6.1-gompi-2023a`| +|4.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`netCDF-Fortran/4.6.0-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/netCDF.md b/docs/available_software/detail/netCDF.md index 46e39a08b0..8ecb00e733 100644 --- a/docs/available_software/detail/netCDF.md +++ b/docs/available_software/detail/netCDF.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: NetCDF (network Common Data Form) is a set of software libraries and - machine-independent data formats that support the creation, access, and sharing - of array-oriented scientific data. + description: "NetCDF (network Common Data Form) is a set of software libraries\n\ + \ and machine-independent data formats that support the creation, access, and\ + \ sharing of array-oriented\n scientific data." license: Not confirmed name: netCDF offers: @@ -26,32 +24,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''netCDF/4.9.0-gompi-2022b'', ''netCDF/4.9.2-gompi-2023a'', ''netCDF/4.9.2-gompi-2023b'']' + softwareVersion: '[''4.9.3'', ''4.9.2'', ''4.9.0'']' url: https://www.unidata.ucar.edu/software/netcdf/ --- +# netCDF -netCDF -====== +NetCDF (network Common Data Form) is a set of software libraries + and machine-independent data formats that support the creation, access, and sharing of array-oriented + scientific data. -NetCDF (network Common Data Form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. +homepage: [https://www.unidata.ucar.edu/software/netcdf/](https://www.unidata.ucar.edu/software/netcdf/) -https://www.unidata.ucar.edu/software/netcdf/ -# Available modules +## Available installations -The overview below shows which netCDF installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using netCDF, load one of these modules using a `module load` command like: - -```shell -module load netCDF/4.9.2-gompi-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|netCDF/4.9.2-gompi-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|netCDF/4.9.2-gompi-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|netCDF/4.9.0-gompi-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|netCDF version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`netCDF/4.9.3-gompi-2025b`| +|4.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`netCDF/4.9.3-gompi-2025a`| +|4.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`netCDF/4.9.2-gompi-2024a`| +|4.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`netCDF/4.9.2-gompi-2023b`| +|4.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`netCDF/4.9.2-gompi-2023a`| +|4.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`netCDF/4.9.0-gompi-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/netcdf4-python.md b/docs/available_software/detail/netcdf4-python.md index 793f912c0a..f9715f9f6b 100644 --- a/docs/available_software/detail/netcdf4-python.md +++ b/docs/available_software/detail/netcdf4-python.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,44 +22,43 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''netcdf4-python/1.6.3-foss-2022b'', ''netcdf4-python/1.6.4-foss-2023a'']' + softwareVersion: '[''1.7.2'', ''1.6.4'', ''1.6.3'']' url: https://unidata.github.io/netcdf4-python/ --- - -netcdf4-python -============== +# netcdf4-python Python/numpy interface to netCDF. -https://unidata.github.io/netcdf4-python/ -# Available modules - +homepage: [https://unidata.github.io/netcdf4-python/](https://unidata.github.io/netcdf4-python/) -The overview below shows which netcdf4-python installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using netcdf4-python, load one of these modules using a `module load` command like: -```shell -module load netcdf4-python/1.6.4-foss-2023a -``` +|netcdf4-python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`netcdf4-python/1.7.2-foss-2025a`| +|1.6.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`netcdf4-python/1.6.4-foss-2023a`| +|1.6.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`netcdf4-python/1.6.3-foss-2022b`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|netcdf4-python/1.6.4-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|netcdf4-python/1.6.3-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in netcdf4-python installations -### netcdf4-python/1.6.4-foss-2023a +### cftime -This is a list of extensions included in the module: -cftime-1.6.2, netcdf4-python-1.6.4 +|`cftime` version|netcdf4-python modules that include it| +| --- | --- | +|1.6.4.post1|`netcdf4-python/1.7.2-foss-2025a`| +|1.6.2|`netcdf4-python/1.6.4-foss-2023a`
`netcdf4-python/1.6.3-foss-2022b`| -### netcdf4-python/1.6.3-foss-2022b +### netcdf4-python -This is a list of extensions included in the module: -cftime-1.6.2, netcdf4-python-1.6.3 \ No newline at end of file +|`netcdf4-python` version|netcdf4-python modules that include it| +| --- | --- | +|1.7.2|`netcdf4-python/1.7.2-foss-2025a`| +|1.6.4|`netcdf4-python/1.6.4-foss-2023a`| +|1.6.3|`netcdf4-python/1.6.3-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/nettle.md b/docs/available_software/detail/nettle.md index 00a9cc6d3e..934ea01e4e 100644 --- a/docs/available_software/detail/nettle.md +++ b/docs/available_software/detail/nettle.md @@ -1,13 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'Nettle is a cryptographic library that is designed to fit easily in - more or less any context: In crypto toolkits for object-oriented languages (C++, - Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space.' + description: "Nettle is a cryptographic library that is designed to fit easily\n\ + \ in more or less any context: In crypto toolkits for object-oriented\n languages\ + \ (C++, Python, Pike, ...), in applications like LSH or GNUPG,\n or even in kernel\ + \ space." license: Not confirmed name: nettle offers: @@ -26,33 +25,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''nettle/3.8.1-GCCcore-12.2.0'', ''nettle/3.9.1-GCCcore-12.3.0'', - ''nettle/3.9.1-GCCcore-13.2.0'']' + softwareVersion: '[''3.10.2'', ''3.10'', ''3.9.1'', ''3.8.1'']' url: https://www.lysator.liu.se/~nisse/nettle/ --- +# nettle -nettle -====== +Nettle is a cryptographic library that is designed to fit easily + in more or less any context: In crypto toolkits for object-oriented + languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, + or even in kernel space. -Nettle is a cryptographic library that is designed to fit easily in more or less any context: In crypto toolkits for object-oriented languages (C++, Python, Pike, ...), in applications like LSH or GNUPG, or even in kernel space. +homepage: [https://www.lysator.liu.se/~nisse/nettle/](https://www.lysator.liu.se/~nisse/nettle/) -https://www.lysator.liu.se/~nisse/nettle/ -# Available modules +## Available installations -The overview below shows which nettle installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using nettle, load one of these modules using a `module load` command like: - -```shell -module load nettle/3.9.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|nettle/3.9.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|nettle/3.9.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|nettle/3.8.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|nettle version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.10.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`nettle/3.10.2-GCCcore-14.3.0`| +|3.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`nettle/3.10-GCCcore-13.3.0`| +|3.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nettle/3.9.1-GCCcore-13.2.0`| +|3.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nettle/3.9.1-GCCcore-12.3.0`| +|3.8.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nettle/3.8.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/networkx.md b/docs/available_software/detail/networkx.md index 601aa7a4de..ae77765d19 100644 --- a/docs/available_software/detail/networkx.md +++ b/docs/available_software/detail/networkx.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: NetworkX is a Python package for the creation, manipulation,and study - of the structure, dynamics, and functions of complex networks. + description: 'NetworkX is a Python package for the creation, manipulation, + + and study of the structure, dynamics, and functions of complex networks.' license: Not confirmed name: networkx offers: @@ -25,32 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''networkx/3.0-gfbf-2022b'', ''networkx/3.1-gfbf-2023a'', ''networkx/3.2.1-gfbf-2023b'']' + softwareVersion: '[''3.5'', ''3.4.2'', ''3.2.1'', ''3.1'', ''3.0'']' url: https://pypi.python.org/pypi/networkx --- - -networkx -======== - - -NetworkX is a Python package for the creation, manipulation,and study of the structure, dynamics, and functions of complex networks. - -https://pypi.python.org/pypi/networkx -# Available modules +# networkx -The overview below shows which networkx installations are available per target architecture in EESSI, ordered based on software version (new to old). +NetworkX is a Python package for the creation, manipulation, +and study of the structure, dynamics, and functions of complex networks. -To start using networkx, load one of these modules using a `module load` command like: +homepage: [https://pypi.python.org/pypi/networkx](https://pypi.python.org/pypi/networkx) -```shell -module load networkx/3.2.1-gfbf-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|networkx/3.2.1-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|networkx/3.1-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|networkx/3.0-gfbf-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|networkx version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`networkx/3.5-gfbf-2025b`| +|3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`networkx/3.5-gfbf-2025a`| +|3.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`networkx/3.4.2-gfbf-2024a`| +|3.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`networkx/3.2.1-gfbf-2023b`| +|3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`networkx/3.1-gfbf-2023a`| +|3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`networkx/3.0-gfbf-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/nghttp2.md b/docs/available_software/detail/nghttp2.md index 9dc21d58d7..23ad2cfb64 100644 --- a/docs/available_software/detail/nghttp2.md +++ b/docs/available_software/detail/nghttp2.md @@ -1,15 +1,21 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: This is an implementation of the Hypertext Transfer Protocol version - 2 in C.The framing layer of HTTP/2 is implemented as a reusable C library.On top - of that, we have implemented an HTTP/2 client, server and proxy.We have also developed - load test and benchmarking tools for HTTP/2.An HPACK encoder and decoder are available - as a public API. + description: ' + + This is an implementation of the Hypertext Transfer Protocol version 2 in C. + + + The framing layer of HTTP/2 is implemented as a reusable C library. + + On top of that, we have implemented an HTTP/2 client, server and proxy. + + We have also developed load test and benchmarking tools for HTTP/2. + + + An HPACK encoder and decoder are available as a public API.' license: Not confirmed name: nghttp2 offers: @@ -28,30 +34,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''nghttp2/1.58.0-GCC-12.3.0'']' + softwareVersion: '[''1.58.0'']' url: https://github.com/nghttp2/nghttp2 --- - -nghttp2 -======= +# nghttp2 -This is an implementation of the Hypertext Transfer Protocol version 2 in C.The framing layer of HTTP/2 is implemented as a reusable C library.On top of that, we have implemented an HTTP/2 client, server and proxy.We have also developed load test and benchmarking tools for HTTP/2.An HPACK encoder and decoder are available as a public API. -https://github.com/nghttp2/nghttp2 -# Available modules +This is an implementation of the Hypertext Transfer Protocol version 2 in C. +The framing layer of HTTP/2 is implemented as a reusable C library. +On top of that, we have implemented an HTTP/2 client, server and proxy. +We have also developed load test and benchmarking tools for HTTP/2. -The overview below shows which nghttp2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +An HPACK encoder and decoder are available as a public API. -To start using nghttp2, load one of these modules using a `module load` command like: +homepage: [https://github.com/nghttp2/nghttp2](https://github.com/nghttp2/nghttp2) -```shell -module load nghttp2/1.58.0-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|nghttp2/1.58.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|nghttp2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.58.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nghttp2/1.58.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/nghttp3.md b/docs/available_software/detail/nghttp3.md index 02b71fb417..c895d7a936 100644 --- a/docs/available_software/detail/nghttp3.md +++ b/docs/available_software/detail/nghttp3.md @@ -1,12 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: nghttp3 is an implementation of RFC 9114 HTTP/3mapping over QUIC and - RFC 9204 QPACK in C.It does not depend on any particular QUIC transport implementation. + description: ' nghttp3 is an implementation of RFC 9114 HTTP/3 + + mapping over QUIC and RFC 9204 QPACK in C. + + It does not depend on any particular QUIC transport implementation.' license: Not confirmed name: nghttp3 offers: @@ -25,30 +26,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''nghttp3/1.3.0-GCCcore-12.3.0'']' + softwareVersion: '[''1.3.0'']' url: https://github.com/ngtcp2/nghttp3 --- - -nghttp3 -======= - - -nghttp3 is an implementation of RFC 9114 HTTP/3mapping over QUIC and RFC 9204 QPACK in C.It does not depend on any particular QUIC transport implementation. - -https://github.com/ngtcp2/nghttp3 -# Available modules +# nghttp3 -The overview below shows which nghttp3 installations are available per target architecture in EESSI, ordered based on software version (new to old). + nghttp3 is an implementation of RFC 9114 HTTP/3 +mapping over QUIC and RFC 9204 QPACK in C. +It does not depend on any particular QUIC transport implementation. -To start using nghttp3, load one of these modules using a `module load` command like: +homepage: [https://github.com/ngtcp2/nghttp3](https://github.com/ngtcp2/nghttp3) -```shell -module load nghttp3/1.3.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|nghttp3/1.3.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|nghttp3 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nghttp3/1.3.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ngtcp2.md b/docs/available_software/detail/ngtcp2.md index 0dfcc258ea..5769d52688 100644 --- a/docs/available_software/detail/ngtcp2.md +++ b/docs/available_software/detail/ngtcp2.md @@ -1,12 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: '''Call it TCP/2. One More Time.''ngtcp2 project is an effort to implement - RFC9000 QUIC protocol.' + description: ' + + ''Call it TCP/2. One More Time.'' + + + ngtcp2 project is an effort to implement RFC9000 QUIC protocol.' license: Not confirmed name: ngtcp2 offers: @@ -25,30 +27,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ngtcp2/1.2.0-GCC-12.3.0'']' + softwareVersion: '[''1.2.0'']' url: https://github.com/ngtcp2/ngtcp2 --- +# ngtcp2 -ngtcp2 -====== - - -'Call it TCP/2. One More Time.'ngtcp2 project is an effort to implement RFC9000 QUIC protocol. -https://github.com/ngtcp2/ngtcp2 -# Available modules +'Call it TCP/2. One More Time.' -The overview below shows which ngtcp2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +ngtcp2 project is an effort to implement RFC9000 QUIC protocol. -To start using ngtcp2, load one of these modules using a `module load` command like: +homepage: [https://github.com/ngtcp2/ngtcp2](https://github.com/ngtcp2/ngtcp2) -```shell -module load ngtcp2/1.2.0-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ngtcp2/1.2.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|ngtcp2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ngtcp2/1.2.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/nlohmann_json.md b/docs/available_software/detail/nlohmann_json.md index 99aafe1815..f817184773 100644 --- a/docs/available_software/detail/nlohmann_json.md +++ b/docs/available_software/detail/nlohmann_json.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''nlohmann_json/3.11.2-GCCcore-12.2.0'', ''nlohmann_json/3.11.2-GCCcore-12.3.0'', - ''nlohmann_json/3.11.3-GCCcore-13.2.0'']' + softwareVersion: '[''3.11.3'', ''3.11.2'']' url: https://github.com/nlohmann/json --- - -nlohmann_json -============= +# nlohmann_json JSON for Modern C++ -https://github.com/nlohmann/json -# Available modules - - -The overview below shows which nlohmann_json installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using nlohmann_json, load one of these modules using a `module load` command like: +homepage: [https://github.com/nlohmann/json](https://github.com/nlohmann/json) -```shell -module load nlohmann_json/3.11.3-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|nlohmann_json/3.11.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|nlohmann_json/3.11.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|nlohmann_json/3.11.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|nlohmann_json version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.11.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`nlohmann_json/3.11.3-GCCcore-13.3.0`| +|3.11.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nlohmann_json/3.11.3-GCCcore-13.2.0`| +|3.11.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nlohmann_json/3.11.2-GCCcore-12.3.0`| +|3.11.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nlohmann_json/3.11.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/nodejs.md b/docs/available_software/detail/nodejs.md index 6a1f4601fa..bf9bb7d106 100644 --- a/docs/available_software/detail/nodejs.md +++ b/docs/available_software/detail/nodejs.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Node.js is a platform built on Chrome's JavaScript runtime for easily - building fast, scalable network applications. Node.js uses an event-driven, non-blocking - I/O model that makes it lightweight and efficient, perfect for data-intensive - real-time applications that run across distributed devices. + description: "Node.js is a platform built on Chrome's JavaScript runtime\n for easily\ + \ building fast, scalable network applications. Node.js uses an\n event-driven,\ + \ non-blocking I/O model that makes it lightweight and efficient,\n perfect for\ + \ data-intensive real-time applications that run across distributed devices." license: Not confirmed name: nodejs offers: @@ -27,33 +25,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''nodejs/18.12.1-GCCcore-12.2.0'', ''nodejs/18.17.1-GCCcore-12.3.0'', - ''nodejs/20.9.0-GCCcore-13.2.0'']' + softwareVersion: '[''22.17.1'', ''22.16.0'', ''20.13.1'', ''20.9.0'', ''18.17.1'', + ''18.12.1'']' url: https://nodejs.org --- +# nodejs -nodejs -====== +Node.js is a platform built on Chrome's JavaScript runtime + for easily building fast, scalable network applications. Node.js uses an + event-driven, non-blocking I/O model that makes it lightweight and efficient, + perfect for data-intensive real-time applications that run across distributed devices. -Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. +homepage: [https://nodejs.org](https://nodejs.org) -https://nodejs.org -# Available modules +## Available installations -The overview below shows which nodejs installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using nodejs, load one of these modules using a `module load` command like: - -```shell -module load nodejs/20.9.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|nodejs/20.9.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|nodejs/18.17.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|nodejs/18.12.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|nodejs version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|22.17.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`nodejs/22.17.1-GCCcore-14.3.0`| +|22.16.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`nodejs/22.16.0-GCCcore-14.2.0`| +|20.13.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`nodejs/20.13.1-GCCcore-13.3.0`| +|20.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nodejs/20.9.0-GCCcore-13.2.0`| +|18.17.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nodejs/18.17.1-GCCcore-12.3.0`| +|18.12.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nodejs/18.12.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/nsync.md b/docs/available_software/detail/nsync.md index 0a4e9ac19e..18831c333b 100644 --- a/docs/available_software/detail/nsync.md +++ b/docs/available_software/detail/nsync.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''nsync/1.26.0-GCCcore-12.3.0'']' + softwareVersion: '[''1.26.0'']' url: https://github.com/google/nsync --- - -nsync -===== +# nsync nsync is a C library that exports various synchronization primitives, such as mutexes -https://github.com/google/nsync -# Available modules - - -The overview below shows which nsync installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using nsync, load one of these modules using a `module load` command like: +homepage: [https://github.com/google/nsync](https://github.com/google/nsync) -```shell -module load nsync/1.26.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|nsync/1.26.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|nsync version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.26.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`nsync/1.26.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/numactl.md b/docs/available_software/detail/numactl.md index 7b6584adc4..6ec3578843 100644 --- a/docs/available_software/detail/numactl.md +++ b/docs/available_software/detail/numactl.md @@ -1,14 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The numactl program allows you to run your application program on specific - cpu's and memory nodes. It does this by supplying a NUMA memory policy to the - operating system before running your program. The libnuma library provides convenient - ways for you to add NUMA memory policies into your own program. + description: "\n The numactl program allows you to run your application program\ + \ on specific\n cpu's and memory nodes. It does this by supplying a NUMA memory\ + \ policy to\n the operating system before running your program. The libnuma library\ + \ provides\n convenient ways for you to add NUMA memory policies into your own\ + \ program.\n" license: Not confirmed name: numactl offers: @@ -27,33 +26,29 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''numactl/2.0.16-GCCcore-12.2.0'', ''numactl/2.0.16-GCCcore-12.3.0'', - ''numactl/2.0.16-GCCcore-13.2.0'']' + softwareVersion: '[''2.0.19'', ''2.0.18'', ''2.0.16'']' url: https://github.com/numactl/numactl --- +# numactl -numactl -======= -The numactl program allows you to run your application program on specific cpu's and memory nodes. It does this by supplying a NUMA memory policy to the operating system before running your program. The libnuma library provides convenient ways for you to add NUMA memory policies into your own program. + The numactl program allows you to run your application program on specific + cpu's and memory nodes. It does this by supplying a NUMA memory policy to + the operating system before running your program. The libnuma library provides + convenient ways for you to add NUMA memory policies into your own program. -https://github.com/numactl/numactl -# Available modules +homepage: [https://github.com/numactl/numactl](https://github.com/numactl/numactl) -The overview below shows which numactl installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using numactl, load one of these modules using a `module load` command like: -```shell -module load numactl/2.0.16-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|numactl/2.0.16-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|numactl/2.0.16-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|numactl/2.0.16-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|numactl version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.19|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`numactl/2.0.19-GCCcore-14.3.0`| +|2.0.19|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`numactl/2.0.19-GCCcore-14.2.0`| +|2.0.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`numactl/2.0.18-GCCcore-13.3.0`| +|2.0.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`numactl/2.0.16-GCCcore-13.2.0`| +|2.0.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`numactl/2.0.16-GCCcore-12.3.0`| +|2.0.16|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`numactl/2.0.16-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/numba.md b/docs/available_software/detail/numba.md index bd8d4e0623..cb3d64c131 100644 --- a/docs/available_software/detail/numba.md +++ b/docs/available_software/detail/numba.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Numba is an Open Source NumPy-aware optimizing compiler forPython sponsored - by Continuum Analytics, Inc. It uses the remarkable LLVMcompiler infrastructure - to compile Python syntax to machine code. + description: 'Numba is an Open Source NumPy-aware optimizing compiler for + + Python sponsored by Continuum Analytics, Inc. It uses the remarkable LLVM + + compiler infrastructure to compile Python syntax to machine code.' license: Not confirmed name: numba offers: @@ -26,37 +26,40 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''numba/0.58.1-foss-2023a'']' + softwareVersion: '[''0.58.1'']' url: https://numba.pydata.org/ --- +# numba + -numba -===== +Numba is an Open Source NumPy-aware optimizing compiler for +Python sponsored by Continuum Analytics, Inc. It uses the remarkable LLVM +compiler infrastructure to compile Python syntax to machine code. +homepage: [https://numba.pydata.org/](https://numba.pydata.org/) -Numba is an Open Source NumPy-aware optimizing compiler forPython sponsored by Continuum Analytics, Inc. It uses the remarkable LLVMcompiler infrastructure to compile Python syntax to machine code. +## Available installations -https://numba.pydata.org/ -# Available modules +|numba version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.58.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`numba/0.58.1-foss-2023a`| -The overview below shows which numba installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using numba, load one of these modules using a `module load` command like: +Overview of extensions included in numba installations -```shell -module load numba/0.58.1-foss-2023a -``` -*(This data was automatically generated on {{ generated_time }})* +### llvmlite -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|numba/0.58.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`llvmlite` version|numba modules that include it| +| --- | --- | +|0.41.1|`numba/0.58.1-foss-2023a`| -### numba/0.58.1-foss-2023a +### numba -This is a list of extensions included in the module: -llvmlite-0.41.1, numba-0.58.1 \ No newline at end of file +|`numba` version|numba modules that include it| +| --- | --- | +|0.58.1|`numba/0.58.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/occt.md b/docs/available_software/detail/occt.md index e01724a671..16dc3349b6 100644 --- a/docs/available_software/detail/occt.md +++ b/docs/available_software/detail/occt.md @@ -1,12 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Open CASCADE Technology (OCCT) is an object-oriented C++class library - designed for rapid production of sophisticated domain-specificCAD/CAM/CAE applications. + description: 'Open CASCADE Technology (OCCT) is an object-oriented C++ + + class library designed for rapid production of sophisticated domain-specific + + CAD/CAM/CAE applications.' license: Not confirmed name: occt offers: @@ -25,30 +26,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''occt/7.8.0-GCCcore-12.3.0'']' + softwareVersion: '[''7.9.1'', ''7.8.0'']' url: https://www.opencascade.com/ --- - -occt -==== - - -Open CASCADE Technology (OCCT) is an object-oriented C++class library designed for rapid production of sophisticated domain-specificCAD/CAM/CAE applications. - -https://www.opencascade.com/ -# Available modules +# occt -The overview below shows which occt installations are available per target architecture in EESSI, ordered based on software version (new to old). +Open CASCADE Technology (OCCT) is an object-oriented C++ +class library designed for rapid production of sophisticated domain-specific +CAD/CAM/CAE applications. -To start using occt, load one of these modules using a `module load` command like: +homepage: [https://www.opencascade.com/](https://www.opencascade.com/) -```shell -module load occt/7.8.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|occt/7.8.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|occt version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`occt/7.9.1-GCCcore-14.2.0`| +|7.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`occt/7.8.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/ollama.md b/docs/available_software/detail/ollama.md new file mode 100644 index 0000000000..f8b505be30 --- /dev/null +++ b/docs/available_software/detail/ollama.md @@ -0,0 +1,59 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Get up and running with large language models. + license: Not confirmed + name: ollama + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.6.0'']' + url: https://ollama.com/ +--- +# ollama + + +Get up and running with large language models. + +homepage: [https://ollama.com/](https://ollama.com/) + +## Available installations + + +|ollama version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ollama/0.6.0-GCCcore-13.3.0`| + +## Extensions + +Overview of extensions included in ollama installations + + +### ggml-cpu + + +|`ggml-cpu` version|ollama modules that include it| +| --- | --- | +|0.6.0|`ollama/0.6.0-GCCcore-13.3.0`| + +### ollama + + +|`ollama` version|ollama modules that include it| +| --- | --- | +|0.6.0|`ollama/0.6.0-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/openCARP.md b/docs/available_software/detail/openCARP.md index 05136d0fb2..595da9a59d 100644 --- a/docs/available_software/detail/openCARP.md +++ b/docs/available_software/detail/openCARP.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''openCARP/17.0-foss-2023b'']' + softwareVersion: '[''17.0'']' url: https://opencarp.org --- - -openCARP -======== +# openCARP openCARP is an open cardiac electrophysiology simulator for in-silico experiments. -https://opencarp.org -# Available modules - - -The overview below shows which openCARP installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using openCARP, load one of these modules using a `module load` command like: +homepage: [https://opencarp.org](https://opencarp.org) -```shell -module load openCARP/17.0-foss-2023b -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|openCARP/17.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|openCARP version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|17.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`openCARP/17.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/optree.md b/docs/available_software/detail/optree.md new file mode 100644 index 0000000000..60d7c74198 --- /dev/null +++ b/docs/available_software/detail/optree.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Optimized PyTree Utilities + license: Not confirmed + name: optree + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.14.1'']' + url: https://optree.readthedocs.io/en/latest/ +--- +# optree + + +Optimized PyTree Utilities + +homepage: [https://optree.readthedocs.io/en/latest/](https://optree.readthedocs.io/en/latest/) + +## Available installations + + +|optree version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.14.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`optree/0.14.1-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/orjson.md b/docs/available_software/detail/orjson.md index b80ef868e1..22315c04c7 100644 --- a/docs/available_software/detail/orjson.md +++ b/docs/available_software/detail/orjson.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,37 +23,52 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''orjson/3.9.15-GCCcore-12.3.0'']' + softwareVersion: '[''3.9.15'']' url: https://github.com/ijl/orjson --- - -orjson -====== +# orjson Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy. -https://github.com/ijl/orjson -# Available modules +homepage: [https://github.com/ijl/orjson](https://github.com/ijl/orjson) + +## Available installations + + +|orjson version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.9.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`orjson/3.9.15-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in orjson installations + + +### mypy + +|`mypy` version|orjson modules that include it| +| --- | --- | +|1.10.0|`orjson/3.9.15-GCCcore-12.3.0`| -The overview below shows which orjson installations are available per target architecture in EESSI, ordered based on software version (new to old). +### mypy_extensions -To start using orjson, load one of these modules using a `module load` command like: -```shell -module load orjson/3.9.15-GCCcore-12.3.0 -``` +|`mypy_extensions` version|orjson modules that include it| +| --- | --- | +|1.0.0|`orjson/3.9.15-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### orjson -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|orjson/3.9.15-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`orjson` version|orjson modules that include it| +| --- | --- | +|3.9.15|`orjson/3.9.15-GCCcore-12.3.0`| -### orjson/3.9.15-GCCcore-12.3.0 +### ruff -This is a list of extensions included in the module: -mypy-1.10.0, mypy_extensions-1.0.0, orjson-3.9.15, ruff-0.4.8 \ No newline at end of file +|`ruff` version|orjson modules that include it| +| --- | --- | +|0.4.8|`orjson/3.9.15-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/p11-kit.md b/docs/available_software/detail/p11-kit.md index 41a5cee6d2..013b751f53 100644 --- a/docs/available_software/detail/p11-kit.md +++ b/docs/available_software/detail/p11-kit.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Provides a way to load and enumerate PKCS#11 modules. Provides a standard - configuration setup for installing PKCS#11 modules in such a way that they're - discoverable. Also solves problems with coordinating the use of PKCS#11 by different - components or libraries living in the same process. + description: "Provides a way to load and enumerate PKCS#11 modules.\n Provides a\ + \ standard configuration setup for installing\n PKCS#11 modules in such a way\ + \ that they're discoverable.\n Also solves problems with coordinating the use\ + \ of PKCS#11\n by different components or libraries living in the same process." license: Not confirmed name: p11-kit offers: @@ -27,30 +25,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''p11-kit/0.25.3-GCCcore-12.3.0'']' + softwareVersion: '[''0.25.10'', ''0.25.3'']' url: https://p11-glue.freedesktop.org/p11-kit.html --- +# p11-kit -p11-kit -======= +Provides a way to load and enumerate PKCS#11 modules. + Provides a standard configuration setup for installing + PKCS#11 modules in such a way that they're discoverable. + Also solves problems with coordinating the use of PKCS#11 + by different components or libraries living in the same process. -Provides a way to load and enumerate PKCS#11 modules. Provides a standard configuration setup for installing PKCS#11 modules in such a way that they're discoverable. Also solves problems with coordinating the use of PKCS#11 by different components or libraries living in the same process. +homepage: [https://p11-glue.freedesktop.org/p11-kit.html](https://p11-glue.freedesktop.org/p11-kit.html) -https://p11-glue.freedesktop.org/p11-kit.html -# Available modules +## Available installations -The overview below shows which p11-kit installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using p11-kit, load one of these modules using a `module load` command like: - -```shell -module load p11-kit/0.25.3-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|p11-kit/0.25.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|p11-kit version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.25.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`p11-kit/0.25.10-GCCcore-14.3.0`| +|0.25.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`p11-kit/0.25.3-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/p7zip.md b/docs/available_software/detail/p7zip.md new file mode 100644 index 0000000000..2ec18bf45d --- /dev/null +++ b/docs/available_software/detail/p7zip.md @@ -0,0 +1,43 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'p7zip is a quick port of 7z.exe and 7za.exe (CLI version of + + 7zip) for Unix. 7-Zip is a file archiver with highest compression ratio.' + license: Not confirmed + name: p7zip + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''17.05'']' + url: https://github.com/p7zip-project/p7zip/ +--- +# p7zip + + +p7zip is a quick port of 7z.exe and 7za.exe (CLI version of +7zip) for Unix. 7-Zip is a file archiver with highest compression ratio. + +homepage: [https://github.com/p7zip-project/p7zip/](https://github.com/p7zip-project/p7zip/) + +## Available installations + + +|p7zip version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|17.05|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`p7zip/17.05-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/parallel.md b/docs/available_software/detail/parallel.md index 01c47b9b6e..e304f48a3b 100644 --- a/docs/available_software/detail/parallel.md +++ b/docs/available_software/detail/parallel.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''parallel/20230722-GCCcore-12.2.0'', ''parallel/20230722-GCCcore-12.3.0'']' + softwareVersion: '[''20230722'']' url: https://savannah.gnu.org/projects/parallel/ --- - -parallel -======== +# parallel parallel: Build and execute shell commands in parallel -https://savannah.gnu.org/projects/parallel/ -# Available modules - - -The overview below shows which parallel installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using parallel, load one of these modules using a `module load` command like: +homepage: [https://savannah.gnu.org/projects/parallel/](https://savannah.gnu.org/projects/parallel/) -```shell -module load parallel/20230722-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|parallel/20230722-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|parallel/20230722-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|parallel version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|20230722|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`parallel/20230722-GCCcore-12.3.0`| +|20230722|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`parallel/20230722-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/parameterized.md b/docs/available_software/detail/parameterized.md new file mode 100644 index 0000000000..eab21ee139 --- /dev/null +++ b/docs/available_software/detail/parameterized.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: ' Parameterized testing with any Python test framework ' + license: Not confirmed + name: parameterized + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.0'']' + url: https://github.com/wolever/parameterized +--- +# parameterized + + + Parameterized testing with any Python test framework + +homepage: [https://github.com/wolever/parameterized](https://github.com/wolever/parameterized) + +## Available installations + + +|parameterized version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`parameterized/0.9.0-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/paramiko.md b/docs/available_software/detail/paramiko.md index 685c5834de..99d3eb367d 100644 --- a/docs/available_software/detail/paramiko.md +++ b/docs/available_software/detail/paramiko.md @@ -1,14 +1,19 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Paramiko is a pure-Python (3.6+) implementation of the SSHv2 protocol,providing - both client and server functionality. It provides the foundationfor the high-level - SSH library Fabric, which is what we recommend you use forcommon client use-cases - such as running remote shell commands or transferringfiles. + description: 'Paramiko is a pure-Python (3.6+) implementation of the SSHv2 protocol, + + providing both client and server functionality. It provides the foundation + + for the high-level SSH library Fabric, which is what we recommend you use for + + common client use-cases such as running remote shell commands or transferring + + files. + + ' license: Not confirmed name: paramiko offers: @@ -27,37 +32,43 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''paramiko/3.2.0-GCCcore-12.3.0'']' + softwareVersion: '[''3.2.0'']' url: https://paramiko.org --- +# paramiko + + +Paramiko is a pure-Python (3.6+) implementation of the SSHv2 protocol, +providing both client and server functionality. It provides the foundation +for the high-level SSH library Fabric, which is what we recommend you use for +common client use-cases such as running remote shell commands or transferring +files. -paramiko -======== +homepage: [https://paramiko.org](https://paramiko.org) -Paramiko is a pure-Python (3.6+) implementation of the SSHv2 protocol,providing both client and server functionality. It provides the foundationfor the high-level SSH library Fabric, which is what we recommend you use forcommon client use-cases such as running remote shell commands or transferringfiles. +## Available installations -https://paramiko.org -# Available modules +|paramiko version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`paramiko/3.2.0-GCCcore-12.3.0`| -The overview below shows which paramiko installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using paramiko, load one of these modules using a `module load` command like: +Overview of extensions included in paramiko installations -```shell -module load paramiko/3.2.0-GCCcore-12.3.0 -``` -*(This data was automatically generated on {{ generated_time }})* +### paramiko -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|paramiko/3.2.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`paramiko` version|paramiko modules that include it| +| --- | --- | +|3.2.0|`paramiko/3.2.0-GCCcore-12.3.0`| -### paramiko/3.2.0-GCCcore-12.3.0 +### PyNaCl -This is a list of extensions included in the module: -paramiko-3.2.0, PyNaCl-1.5.0 \ No newline at end of file +|`PyNaCl` version|paramiko modules that include it| +| --- | --- | +|1.5.0|`paramiko/3.2.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/patchelf.md b/docs/available_software/detail/patchelf.md index e525a09f52..e8078cd946 100644 --- a/docs/available_software/detail/patchelf.md +++ b/docs/available_software/detail/patchelf.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,31 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''patchelf/0.18.0-GCCcore-12.3.0'', ''patchelf/0.18.0-GCCcore-13.2.0'']' + softwareVersion: '[''0.18.0'']' url: https://github.com/NixOS/patchelf --- - -patchelf -======== +# patchelf PatchELF is a small utility to modify the dynamic linker and RPATH of ELF executables. -https://github.com/NixOS/patchelf -# Available modules - - -The overview below shows which patchelf installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using patchelf, load one of these modules using a `module load` command like: +homepage: [https://github.com/NixOS/patchelf](https://github.com/NixOS/patchelf) -```shell -module load patchelf/0.18.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|patchelf/0.18.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|patchelf/0.18.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|patchelf version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`patchelf/0.18.0-GCCcore-14.3.0`| +|0.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`patchelf/0.18.0-GCCcore-14.2.0`| +|0.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`patchelf/0.18.0-GCCcore-13.3.0`| +|0.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`patchelf/0.18.0-GCCcore-13.2.0`| +|0.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`patchelf/0.18.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/petsc4py.md b/docs/available_software/detail/petsc4py.md new file mode 100644 index 0000000000..6b1754ca17 --- /dev/null +++ b/docs/available_software/detail/petsc4py.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: petsc4py are Python bindings for PETSc, the Portable, Extensible Toolchain + for Scientific Computation. + license: Not confirmed + name: petsc4py + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''3.22.5'']' + url: https://gitlab.com/petsc/petsc +--- +# petsc4py + + +petsc4py are Python bindings for PETSc, the Portable, Extensible Toolchain for Scientific Computation. + +homepage: [https://gitlab.com/petsc/petsc](https://gitlab.com/petsc/petsc) + +## Available installations + + +|petsc4py version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.22.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`petsc4py/3.22.5-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/picom.md b/docs/available_software/detail/picom.md new file mode 100644 index 0000000000..ba28b44222 --- /dev/null +++ b/docs/available_software/detail/picom.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: A lightweight compositor for X11, successor to compton, offering shadows, + transparency, and vsync. + license: Not confirmed + name: picom + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''12.5'']' + url: https://github.com/yshui/picom +--- +# picom + + +A lightweight compositor for X11, successor to compton, offering shadows, transparency, and vsync. + +homepage: [https://github.com/yshui/picom](https://github.com/yshui/picom) + +## Available installations + + +|picom version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|12.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`picom/12.5-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pigz.md b/docs/available_software/detail/pigz.md index 698762c414..29920884eb 100644 --- a/docs/available_software/detail/pigz.md +++ b/docs/available_software/detail/pigz.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: pigz, which stands for parallel implementation of gzip, is a fully - functional replacement for gzip that exploits multiple processors and multiple - cores to the hilt when compressing data. pigz was written by Mark Adler, and uses - the zlib and pthread libraries. + description: "\n pigz, which stands for parallel implementation of gzip, is a fully\n\ + \ functional replacement for gzip that exploits multiple processors and multiple\n\ + \ cores to the hilt when compressing data. pigz was written by Mark Adler, and\n\ + \ uses the zlib and pthread libraries.\n" license: Not confirmed name: pigz offers: @@ -27,30 +25,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pigz/2.8-GCCcore-13.2.0'']' + softwareVersion: '[''2.8'']' url: https://zlib.net/pigz/ --- +# pigz -pigz -==== -pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data. pigz was written by Mark Adler, and uses the zlib and pthread libraries. + pigz, which stands for parallel implementation of gzip, is a fully + functional replacement for gzip that exploits multiple processors and multiple + cores to the hilt when compressing data. pigz was written by Mark Adler, and + uses the zlib and pthread libraries. -https://zlib.net/pigz/ -# Available modules +homepage: [https://zlib.net/pigz/](https://zlib.net/pigz/) -The overview below shows which pigz installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using pigz, load one of these modules using a `module load` command like: -```shell -module load pigz/2.8-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pigz/2.8-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pigz version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pigz/2.8-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pixman.md b/docs/available_software/detail/pixman.md index 8bb49fe7f4..a62c84e08e 100644 --- a/docs/available_software/detail/pixman.md +++ b/docs/available_software/detail/pixman.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Pixman is a low-level software library for pixel manipulation, providing - features such as image compositing and trapezoid rasterization. Important users - of pixman are the cairo graphics library and the X server. + description: "\n Pixman is a low-level software library for pixel manipulation,\ + \ providing\n features such as image compositing and trapezoid rasterization.\ + \ Important\n users of pixman are the cairo graphics library and the X server.\n" license: Not confirmed name: pixman offers: @@ -26,33 +24,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pixman/0.42.2-GCCcore-12.2.0'', ''pixman/0.42.2-GCCcore-12.3.0'', - ''pixman/0.42.2-GCCcore-13.2.0'']' + softwareVersion: '[''0.46.4'', ''0.46.2'', ''0.43.4'', ''0.42.2'']' url: http://www.pixman.org/ --- +# pixman -pixman -====== -Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterization. Important users of pixman are the cairo graphics library and the X server. + Pixman is a low-level software library for pixel manipulation, providing + features such as image compositing and trapezoid rasterization. Important + users of pixman are the cairo graphics library and the X server. -http://www.pixman.org/ -# Available modules +homepage: [http://www.pixman.org/](http://www.pixman.org/) -The overview below shows which pixman installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using pixman, load one of these modules using a `module load` command like: -```shell -module load pixman/0.42.2-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pixman/0.42.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pixman/0.42.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pixman/0.42.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pixman version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.46.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pixman/0.46.4-GCCcore-14.3.0`| +|0.46.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pixman/0.46.2-GCCcore-14.2.0`| +|0.43.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pixman/0.43.4-GCCcore-13.3.0`| +|0.42.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pixman/0.42.2-GCCcore-13.2.0`| +|0.42.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pixman/0.42.2-GCCcore-12.3.0`| +|0.42.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pixman/0.42.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pkg-config.md b/docs/available_software/detail/pkg-config.md index e1db565613..7110ca371f 100644 --- a/docs/available_software/detail/pkg-config.md +++ b/docs/available_software/detail/pkg-config.md @@ -1,14 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: pkg-config is a helper tool used when compiling applications and libraries. - It helps you insert the correct compiler options on the command line so an application - can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` for instance, - rather than hard-coding values on where to find glib (or other libraries). + description: "\n pkg-config is a helper tool used when compiling applications and\ + \ libraries.\n It helps you insert the correct compiler options on the command\ + \ line so an\n application can use gcc -o test test.c `pkg-config --libs --cflags\ + \ glib-2.0`\n for instance, rather than hard-coding values on where to find glib\ + \ (or other\n libraries).\n" license: Not confirmed name: pkg-config offers: @@ -27,30 +26,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pkg-config/0.29.2-GCCcore-12.3.0'']' + softwareVersion: '[''0.29.2'']' url: https://www.freedesktop.org/wiki/Software/pkg-config/ --- +# pkg-config -pkg-config -========== -pkg-config is a helper tool used when compiling applications and libraries. It helps you insert the correct compiler options on the command line so an application can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` for instance, rather than hard-coding values on where to find glib (or other libraries). + pkg-config is a helper tool used when compiling applications and libraries. + It helps you insert the correct compiler options on the command line so an + application can use gcc -o test test.c `pkg-config --libs --cflags glib-2.0` + for instance, rather than hard-coding values on where to find glib (or other + libraries). -https://www.freedesktop.org/wiki/Software/pkg-config/ -# Available modules +homepage: [https://www.freedesktop.org/wiki/Software/pkg-config/](https://www.freedesktop.org/wiki/Software/pkg-config/) -The overview below shows which pkg-config installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using pkg-config, load one of these modules using a `module load` command like: -```shell -module load pkg-config/0.29.2-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pkg-config/0.29.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pkg-config version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.29.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pkg-config/0.29.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pkgconf.md b/docs/available_software/detail/pkgconf.md index eec052cdb4..d8196e54ae 100644 --- a/docs/available_software/detail/pkgconf.md +++ b/docs/available_software/detail/pkgconf.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: pkgconf is a program which helps to configure compiler and linker flags - for development libraries. It is similar to pkg-config from freedesktop.org. + description: "pkgconf is a program which helps to configure compiler and linker\ + \ flags for development libraries.\n It is similar to pkg-config from freedesktop.org." license: Not confirmed name: pkgconf offers: @@ -25,34 +23,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pkgconf/1.8.0'', ''pkgconf/1.9.3-GCCcore-12.2.0'', ''pkgconf/1.9.5-GCCcore-12.3.0'', - ''pkgconf/2.0.3-GCCcore-13.2.0'']' + softwareVersion: '[''2.4.3'', ''2.3.0'', ''2.2.0'', ''2.0.3'', ''1.9.5'', ''1.9.3'', + ''1.8.0'']' url: https://github.com/pkgconf/pkgconf --- +# pkgconf -pkgconf -======= +pkgconf is a program which helps to configure compiler and linker flags for development libraries. + It is similar to pkg-config from freedesktop.org. -pkgconf is a program which helps to configure compiler and linker flags for development libraries. It is similar to pkg-config from freedesktop.org. +homepage: [https://github.com/pkgconf/pkgconf](https://github.com/pkgconf/pkgconf) -https://github.com/pkgconf/pkgconf -# Available modules +## Available installations -The overview below shows which pkgconf installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using pkgconf, load one of these modules using a `module load` command like: - -```shell -module load pkgconf/2.0.3-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pkgconf/2.0.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pkgconf/1.9.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pkgconf/1.9.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pkgconf/1.8.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pkgconf version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.4.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pkgconf/2.4.3-GCCcore-14.3.0`| +|2.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pkgconf/2.3.0-GCCcore-14.2.0`| +|2.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pkgconf/2.2.0-GCCcore-13.3.0`| +|2.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pkgconf/2.0.3-GCCcore-13.2.0`| +|1.9.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pkgconf/1.9.5-GCCcore-12.3.0`| +|1.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pkgconf/1.9.3-GCCcore-12.2.0`| +|1.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pkgconf/1.8.0`| +|1.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pkgconf/1.8.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pkgconfig.md b/docs/available_software/detail/pkgconfig.md index 50f0488834..08535c2e24 100644 --- a/docs/available_software/detail/pkgconfig.md +++ b/docs/available_software/detail/pkgconfig.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pkgconfig/1.5.5-GCCcore-12.2.0-python'', ''pkgconfig/1.5.5-GCCcore-12.3.0-python'']' + softwareVersion: '[''1.5.5'']' url: https://github.com/matze/pkgconfig --- - -pkgconfig -========= +# pkgconfig pkgconfig is a Python module to interface with the pkg-config command line tool -https://github.com/matze/pkgconfig -# Available modules - - -The overview below shows which pkgconfig installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using pkgconfig, load one of these modules using a `module load` command like: +homepage: [https://github.com/matze/pkgconfig](https://github.com/matze/pkgconfig) -```shell -module load pkgconfig/1.5.5-GCCcore-12.3.0-python -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pkgconfig/1.5.5-GCCcore-12.3.0-python|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pkgconfig/1.5.5-GCCcore-12.2.0-python|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pkgconfig version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.5.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pkgconfig/1.5.5-GCCcore-13.2.0-python`| +|1.5.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pkgconfig/1.5.5-GCCcore-12.3.0-python`| +|1.5.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pkgconfig/1.5.5-GCCcore-12.2.0-python`| \ No newline at end of file diff --git a/docs/available_software/detail/plotly.py.md b/docs/available_software/detail/plotly.py.md index 90d6ff94a7..24bc556701 100644 --- a/docs/available_software/detail/plotly.py.md +++ b/docs/available_software/detail/plotly.py.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,45 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''plotly.py/5.16.0-GCCcore-12.3.0'']' + softwareVersion: '[''5.16.0'']' url: https://plot.ly/python --- - -plotly.py -========= +# plotly.py An open-source, interactive graphing library for Python -https://plot.ly/python -# Available modules +homepage: [https://plot.ly/python](https://plot.ly/python) + +## Available installations + + +|plotly.py version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.16.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`plotly.py/5.16.0-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in plotly.py installations -The overview below shows which plotly.py installations are available per target architecture in EESSI, ordered based on software version (new to old). +### packaging -To start using plotly.py, load one of these modules using a `module load` command like: -```shell -module load plotly.py/5.16.0-GCCcore-12.3.0 -``` +|`packaging` version|plotly.py modules that include it| +| --- | --- | +|23.1|`plotly.py/5.16.0-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### plotly -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|plotly.py/5.16.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`plotly` version|plotly.py modules that include it| +| --- | --- | +|5.16.0|`plotly.py/5.16.0-GCCcore-12.3.0`| -### plotly.py/5.16.0-GCCcore-12.3.0 +### tenacity -This is a list of extensions included in the module: -packaging-23.1, plotly-5.16.0, tenacity-8.2.3 \ No newline at end of file +|`tenacity` version|plotly.py modules that include it| +| --- | --- | +|8.2.3|`plotly.py/5.16.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/plumpy.md b/docs/available_software/detail/plumpy.md index a84470e6bc..164ca584a6 100644 --- a/docs/available_software/detail/plumpy.md +++ b/docs/available_software/detail/plumpy.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Bundle of Python packages required to run plumpy:A python workflows - library that supports writing Processes with a well defined set ofinputs and outputs - that can be strung together. + description: 'Bundle of Python packages required to run plumpy: + + A python workflows library that supports writing Processes with a well defined + set of + + inputs and outputs that can be strung together.' license: Not confirmed name: plumpy offers: @@ -26,37 +27,82 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''plumpy/0.25.0-GCCcore-12.3.0'']' + softwareVersion: '[''0.25.0'']' url: https://python.org/ --- +# plumpy + + +Bundle of Python packages required to run plumpy: +A python workflows library that supports writing Processes with a well defined set of +inputs and outputs that can be strung together. + +homepage: [https://python.org/](https://python.org/) + +## Available installations + + +|plumpy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.25.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`plumpy/0.25.0-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in plumpy installations + + +### aio-pika + + +|`aio-pika` version|plumpy modules that include it| +| --- | --- | +|9.4.3|`plumpy/0.25.0-GCCcore-12.3.0`| + +### aiormq + + +|`aiormq` version|plumpy modules that include it| +| --- | --- | +|6.8.1|`plumpy/0.25.0-GCCcore-12.3.0`| + +### deprecation + + +|`deprecation` version|plumpy modules that include it| +| --- | --- | +|2.1.0|`plumpy/0.25.0-GCCcore-12.3.0`| + +### kiwipy -plumpy -====== +|`kiwipy` version|plumpy modules that include it| +| --- | --- | +|0.8.5|`plumpy/0.25.0-GCCcore-12.3.0`| -Bundle of Python packages required to run plumpy:A python workflows library that supports writing Processes with a well defined set ofinputs and outputs that can be strung together. +### nest-asyncio -https://python.org/ -# Available modules +|`nest-asyncio` version|plumpy modules that include it| +| --- | --- | +|1.6.0|`plumpy/0.25.0-GCCcore-12.3.0`| -The overview below shows which plumpy installations are available per target architecture in EESSI, ordered based on software version (new to old). +### pamqp -To start using plumpy, load one of these modules using a `module load` command like: -```shell -module load plumpy/0.25.0-GCCcore-12.3.0 -``` +|`pamqp` version|plumpy modules that include it| +| --- | --- | +|3.3.0|`plumpy/0.25.0-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### plumpy -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|plumpy/0.25.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`plumpy` version|plumpy modules that include it| +| --- | --- | +|0.25.0|`plumpy/0.25.0-GCCcore-12.3.0`| -### plumpy/0.25.0-GCCcore-12.3.0 +### shortuuid -This is a list of extensions included in the module: -aio-pika-9.4.3, aiormq-6.8.1, deprecation-2.1.0, kiwipy-0.8.5, nest-asyncio-1.6.0, pamqp-3.3.0, plumpy-0.25.0, shortuuid-1.0.13 \ No newline at end of file +|`shortuuid` version|plumpy modules that include it| +| --- | --- | +|1.0.13|`plumpy/0.25.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/poetry.md b/docs/available_software/detail/poetry.md index 4401d5b371..d84e7ffc3c 100644 --- a/docs/available_software/detail/poetry.md +++ b/docs/available_software/detail/poetry.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Python packaging and dependency management made easy. Poetry helps - you declare, manage and install dependencies of Python projects, ensuring you - have the right stack everywhere. + description: "Python packaging and dependency management made easy. Poetry helps\ + \ you declare, manage and install\n dependencies of Python projects, ensuring\ + \ you have the right stack everywhere." license: Not confirmed name: poetry offers: @@ -26,52 +24,490 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''poetry/1.5.1-GCCcore-12.3.0'', ''poetry/1.6.1-GCCcore-13.2.0'', - ''poetry/1.7.1-GCCcore-12.3.0'']' + softwareVersion: '[''2.1.3'', ''2.1.2'', ''1.8.3'', ''1.7.1'', ''1.6.1'', ''1.5.1'']' url: https://python-poetry.org --- +# poetry -poetry -====== +Python packaging and dependency management made easy. Poetry helps you declare, manage and install + dependencies of Python projects, ensuring you have the right stack everywhere. -Python packaging and dependency management made easy. Poetry helps you declare, manage and install dependencies of Python projects, ensuring you have the right stack everywhere. +homepage: [https://python-poetry.org](https://python-poetry.org) -https://python-poetry.org -# Available modules +## Available installations -The overview below shows which poetry installations are available per target architecture in EESSI, ordered based on software version (new to old). +|poetry version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.1.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`poetry/2.1.3-GCCcore-14.3.0`| +|2.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`poetry/2.1.2-GCCcore-14.2.0`| +|1.8.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`poetry/1.8.3-GCCcore-13.3.0`| +|1.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`poetry/1.7.1-GCCcore-12.3.0`| +|1.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`poetry/1.6.1-GCCcore-13.2.0`| +|1.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`poetry/1.5.1-GCCcore-12.3.0`| -To start using poetry, load one of these modules using a `module load` command like: +## Extensions -```shell -module load poetry/1.7.1-GCCcore-12.3.0 -``` +Overview of extensions included in poetry installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|poetry/1.7.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|poetry/1.6.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|poetry/1.5.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### attrs -### poetry/1.7.1-GCCcore-12.3.0 +|`attrs` version|poetry modules that include it| +| --- | --- | +|23.2.0|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`| +|23.1.0|`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| -This is a list of extensions included in the module: +### build -attrs-23.2.0, CacheControl-0.13.1, certifi-2023.11.17, charset-normalizer-3.3.2, cleo-2.1.0, crashtest-0.4.1, dulwich-0.21.7, fastjsonschema-2.19.1, html5lib-1.1, idna-3.6, importlib_metadata-7.0.1, installer-0.7.0, jaraco.classes-3.3.0, jeepney-0.8.0, jsonschema-4.21.0, jsonschema_specifications-2023.12.1, keyring-24.3.0, lockfile-0.12.2, more-itertools-10.2.0, msgpack-1.0.7, pexpect-4.9.0, pkginfo-1.9.6, platformdirs-3.11.0, poetry-1.7.1, poetry_core-1.8.1, poetry_plugin_export-1.6.0, ptyprocess-0.7.0, pyrsistent-0.20.0, rapidfuzz-3.6.1, referencing-0.32.1, requests-2.31.0, requests-toolbelt-1.0.0, rpds_py-0.17.1, SecretStorage-3.3.3, shellingham-1.5.4, six-1.16.0, tomlkit-0.12.3, urllib3-2.1.0, webencodings-0.5.1, zipp-3.17.0 -### poetry/1.6.1-GCCcore-13.2.0 +|`build` version|poetry modules that include it| +| --- | --- | +|0.10.0|`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| -This is a list of extensions included in the module: +### CacheControl -attrs-23.1.0, build-0.10.0, cachecontrol-0.13.1, certifi-2023.7.22, charset-normalizer-3.3.1, cleo-2.0.1, crashtest-0.4.1, dulwich-0.21.6, html5lib-1.1, idna-3.4, importlib_metadata-6.8.0, installer-0.7.0, jaraco.classes-3.3.0, jeepney-0.8.0, jsonschema-4.17.3, keyring-24.2.0, lockfile-0.12.2, more-itertools-10.1.0, msgpack-1.0.7, pexpect-4.8.0, pkginfo-1.9.6, platformdirs-3.11.0, poetry-1.6.1, poetry_core-1.7.0, poetry_plugin_export-1.5.0, ptyprocess-0.7.0, pyproject_hooks-1.0.0, pyrsistent-0.20.0, rapidfuzz-2.15.2, requests-2.31.0, requests-toolbelt-1.0.0, SecretStorage-3.3.3, shellingham-1.5.4, six-1.16.0, tomlkit-0.12.1, urllib3-2.0.7, webencodings-0.5.1, zipp-3.17.0 -### poetry/1.5.1-GCCcore-12.3.0 +|`CacheControl` version|poetry modules that include it| +| --- | --- | +|0.14.3|`poetry/2.1.3-GCCcore-14.3.0`| +|0.14.2|`poetry/2.1.2-GCCcore-14.2.0`| +|0.14.0|`poetry/1.8.3-GCCcore-13.3.0`| +|0.13.1|`poetry/1.7.1-GCCcore-12.3.0`| +|0.12.14|`poetry/1.5.1-GCCcore-12.3.0`| -This is a list of extensions included in the module: +### cachecontrol -attrs-23.1.0, build-0.10.0, CacheControl-0.12.14, certifi-2023.5.7, charset-normalizer-3.1.0, cleo-2.0.1, crashtest-0.4.1, dulwich-0.21.5, html5lib-1.1, idna-3.4, importlib_metadata-6.7.0, installer-0.7.0, jaraco.classes-3.2.3, jeepney-0.8.0, jsonschema-4.17.3, keyring-23.13.1, lockfile-0.12.2, more-itertools-9.1.0, msgpack-1.0.5, pexpect-4.8.0, pkginfo-1.9.6, platformdirs-3.8.0, poetry-1.5.1, poetry_core-1.6.1, poetry_plugin_export-1.4.0, ptyprocess-0.7.0, pyproject_hooks-1.0.0, pyrsistent-0.19.3, rapidfuzz-2.15.1, requests-2.31.0, requests-toolbelt-1.0.0, SecretStorage-3.3.3, shellingham-1.5.0, six-1.16.0, tomlkit-0.11.8, urllib3-1.26.16, webencodings-0.5.1, zipp-3.15.0 \ No newline at end of file + +|`cachecontrol` version|poetry modules that include it| +| --- | --- | +|0.13.1|`poetry/1.6.1-GCCcore-13.2.0`| + +### certifi + + +|`certifi` version|poetry modules that include it| +| --- | --- | +|2025.7.14|`poetry/2.1.3-GCCcore-14.3.0`| +|2025.1.31|`poetry/2.1.2-GCCcore-14.2.0`| +|2024.6.2|`poetry/1.8.3-GCCcore-13.3.0`| +|2023.11.17|`poetry/1.7.1-GCCcore-12.3.0`| +|2023.7.22|`poetry/1.6.1-GCCcore-13.2.0`| +|2023.5.7|`poetry/1.5.1-GCCcore-12.3.0`| + +### charset-normalizer + + +|`charset-normalizer` version|poetry modules that include it| +| --- | --- | +|3.3.2|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`| +|3.3.1|`poetry/1.6.1-GCCcore-13.2.0`| +|3.1.0|`poetry/1.5.1-GCCcore-12.3.0`| + +### charset_normalizer + + +|`charset_normalizer` version|poetry modules that include it| +| --- | --- | +|3.4.2|`poetry/2.1.3-GCCcore-14.3.0`| +|3.4.1|`poetry/2.1.2-GCCcore-14.2.0`| + +### cleo + + +|`cleo` version|poetry modules that include it| +| --- | --- | +|2.1.0|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`
`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`| +|2.0.1|`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### crashtest + + +|`crashtest` version|poetry modules that include it| +| --- | --- | +|0.4.1|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`
`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### dulwich + + +|`dulwich` version|poetry modules that include it| +| --- | --- | +|0.22.8|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`| +|0.21.7|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`| +|0.21.6|`poetry/1.6.1-GCCcore-13.2.0`| +|0.21.5|`poetry/1.5.1-GCCcore-12.3.0`| + +### fastjsonschema + + +|`fastjsonschema` version|poetry modules that include it| +| --- | --- | +|2.21.1|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`| +|2.19.1|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`| + +### findpython + + +|`findpython` version|poetry modules that include it| +| --- | --- | +|0.6.3|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`| + +### html5lib + + +|`html5lib` version|poetry modules that include it| +| --- | --- | +|1.1|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### idna + + +|`idna` version|poetry modules that include it| +| --- | --- | +|3.10|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`| +|3.7|`poetry/1.8.3-GCCcore-13.3.0`| +|3.6|`poetry/1.7.1-GCCcore-12.3.0`| +|3.4|`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### importlib-metadata + + +|`importlib-metadata` version|poetry modules that include it| +| --- | --- | +|7.1.0|`poetry/1.8.3-GCCcore-13.3.0`| + +### importlib_metadata + + +|`importlib_metadata` version|poetry modules that include it| +| --- | --- | +|7.0.1|`poetry/1.7.1-GCCcore-12.3.0`| +|6.8.0|`poetry/1.6.1-GCCcore-13.2.0`| +|6.7.0|`poetry/1.5.1-GCCcore-12.3.0`| + +### installer + + +|`installer` version|poetry modules that include it| +| --- | --- | +|0.7.0|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`
`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### jaraco.classes + + +|`jaraco.classes` version|poetry modules that include it| +| --- | --- | +|3.4.0|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`
`poetry/1.8.3-GCCcore-13.3.0`| +|3.3.0|`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`| +|3.2.3|`poetry/1.5.1-GCCcore-12.3.0`| + +### jaraco.context + + +|`jaraco.context` version|poetry modules that include it| +| --- | --- | +|6.0.1|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`| + +### jaraco.functools + + +|`jaraco.functools` version|poetry modules that include it| +| --- | --- | +|4.2.1|`poetry/2.1.3-GCCcore-14.3.0`| +|4.1.0|`poetry/2.1.2-GCCcore-14.2.0`| + +### jeepney + + +|`jeepney` version|poetry modules that include it| +| --- | --- | +|0.9.0|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`| +|0.8.0|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### jsonschema + + +|`jsonschema` version|poetry modules that include it| +| --- | --- | +|4.22.0|`poetry/1.8.3-GCCcore-13.3.0`| +|4.21.0|`poetry/1.7.1-GCCcore-12.3.0`| +|4.17.3|`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### jsonschema-specifications + + +|`jsonschema-specifications` version|poetry modules that include it| +| --- | --- | +|2023.12.1|`poetry/1.8.3-GCCcore-13.3.0`| + +### jsonschema_specifications + + +|`jsonschema_specifications` version|poetry modules that include it| +| --- | --- | +|2023.12.1|`poetry/1.7.1-GCCcore-12.3.0`| + +### keyring + + +|`keyring` version|poetry modules that include it| +| --- | --- | +|25.6.0|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`| +|24.3.1|`poetry/1.8.3-GCCcore-13.3.0`| +|24.3.0|`poetry/1.7.1-GCCcore-12.3.0`| +|24.2.0|`poetry/1.6.1-GCCcore-13.2.0`| +|23.13.1|`poetry/1.5.1-GCCcore-12.3.0`| + +### lockfile + + +|`lockfile` version|poetry modules that include it| +| --- | --- | +|0.12.2|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### more-itertools + + +|`more-itertools` version|poetry modules that include it| +| --- | --- | +|10.6.0|`poetry/2.1.2-GCCcore-14.2.0`| +|10.3.0|`poetry/1.8.3-GCCcore-13.3.0`| +|10.2.0|`poetry/1.7.1-GCCcore-12.3.0`| +|10.1.0|`poetry/1.6.1-GCCcore-13.2.0`| +|9.1.0|`poetry/1.5.1-GCCcore-12.3.0`| + +### more_itertools + + +|`more_itertools` version|poetry modules that include it| +| --- | --- | +|10.7.0|`poetry/2.1.3-GCCcore-14.3.0`| + +### msgpack + + +|`msgpack` version|poetry modules that include it| +| --- | --- | +|1.1.1|`poetry/2.1.3-GCCcore-14.3.0`| +|1.1.0|`poetry/2.1.2-GCCcore-14.2.0`| +|1.0.8|`poetry/1.8.3-GCCcore-13.3.0`| +|1.0.7|`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`| +|1.0.5|`poetry/1.5.1-GCCcore-12.3.0`| + +### pbs_installer + + +|`pbs_installer` version|poetry modules that include it| +| --- | --- | +|2025.7.23|`poetry/2.1.3-GCCcore-14.3.0`| +|2025.4.9|`poetry/2.1.2-GCCcore-14.2.0`| + +### pexpect + + +|`pexpect` version|poetry modules that include it| +| --- | --- | +|4.9.0|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`| +|4.8.0|`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### pkginfo + + +|`pkginfo` version|poetry modules that include it| +| --- | --- | +|1.12.1.2|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`| +|1.11.1|`poetry/1.8.3-GCCcore-13.3.0`| +|1.9.6|`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### platformdirs + + +|`platformdirs` version|poetry modules that include it| +| --- | --- | +|4.3.8|`poetry/2.1.3-GCCcore-14.3.0`| +|4.3.6|`poetry/2.1.2-GCCcore-14.2.0`| +|4.2.2|`poetry/1.8.3-GCCcore-13.3.0`| +|3.11.0|`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`| +|3.8.0|`poetry/1.5.1-GCCcore-12.3.0`| + +### poetry + + +|`poetry` version|poetry modules that include it| +| --- | --- | +|2.1.3|`poetry/2.1.3-GCCcore-14.3.0`| +|2.1.2|`poetry/2.1.2-GCCcore-14.2.0`| +|1.8.3|`poetry/1.8.3-GCCcore-13.3.0`| +|1.7.1|`poetry/1.7.1-GCCcore-12.3.0`| +|1.6.1|`poetry/1.6.1-GCCcore-13.2.0`| +|1.5.1|`poetry/1.5.1-GCCcore-12.3.0`| + +### poetry-core + + +|`poetry-core` version|poetry modules that include it| +| --- | --- | +|2.1.3|`poetry/2.1.3-GCCcore-14.3.0`| +|2.1.2|`poetry/2.1.2-GCCcore-14.2.0`| +|1.9.0|`poetry/1.8.3-GCCcore-13.3.0`| + +### poetry-plugin-export + + +|`poetry-plugin-export` version|poetry modules that include it| +| --- | --- | +|1.9.0|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`| +|1.8.0|`poetry/1.8.3-GCCcore-13.3.0`| + +### poetry_core + + +|`poetry_core` version|poetry modules that include it| +| --- | --- | +|1.8.1|`poetry/1.7.1-GCCcore-12.3.0`| +|1.7.0|`poetry/1.6.1-GCCcore-13.2.0`| +|1.6.1|`poetry/1.5.1-GCCcore-12.3.0`| + +### poetry_plugin_export + + +|`poetry_plugin_export` version|poetry modules that include it| +| --- | --- | +|1.6.0|`poetry/1.7.1-GCCcore-12.3.0`| +|1.5.0|`poetry/1.6.1-GCCcore-13.2.0`| +|1.4.0|`poetry/1.5.1-GCCcore-12.3.0`| + +### ptyprocess + + +|`ptyprocess` version|poetry modules that include it| +| --- | --- | +|0.7.0|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### pyproject_hooks + + +|`pyproject_hooks` version|poetry modules that include it| +| --- | --- | +|1.0.0|`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### pyrsistent + + +|`pyrsistent` version|poetry modules that include it| +| --- | --- | +|0.20.0|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`| +|0.19.3|`poetry/1.5.1-GCCcore-12.3.0`| + +### rapidfuzz + + +|`rapidfuzz` version|poetry modules that include it| +| --- | --- | +|3.13.0|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`| +|3.9.3|`poetry/1.8.3-GCCcore-13.3.0`| +|3.6.1|`poetry/1.7.1-GCCcore-12.3.0`| +|2.15.2|`poetry/1.6.1-GCCcore-13.2.0`| +|2.15.1|`poetry/1.5.1-GCCcore-12.3.0`| + +### referencing + + +|`referencing` version|poetry modules that include it| +| --- | --- | +|0.35.1|`poetry/1.8.3-GCCcore-13.3.0`| +|0.32.1|`poetry/1.7.1-GCCcore-12.3.0`| + +### requests + + +|`requests` version|poetry modules that include it| +| --- | --- | +|2.32.4|`poetry/2.1.3-GCCcore-14.3.0`| +|2.32.3|`poetry/2.1.2-GCCcore-14.2.0`
`poetry/1.8.3-GCCcore-13.3.0`| +|2.31.0|`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### requests-toolbelt + + +|`requests-toolbelt` version|poetry modules that include it| +| --- | --- | +|1.0.0|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`
`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### rpds-py + + +|`rpds-py` version|poetry modules that include it| +| --- | --- | +|0.18.1|`poetry/1.8.3-GCCcore-13.3.0`| + +### rpds_py + + +|`rpds_py` version|poetry modules that include it| +| --- | --- | +|0.17.1|`poetry/1.7.1-GCCcore-12.3.0`| + +### SecretStorage + + +|`SecretStorage` version|poetry modules that include it| +| --- | --- | +|3.3.3|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`
`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### shellingham + + +|`shellingham` version|poetry modules that include it| +| --- | --- | +|1.5.4|`poetry/2.1.3-GCCcore-14.3.0`
`poetry/2.1.2-GCCcore-14.2.0`
`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`| +|1.5.0|`poetry/1.5.1-GCCcore-12.3.0`| + +### six + + +|`six` version|poetry modules that include it| +| --- | --- | +|1.16.0|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### tomlkit + + +|`tomlkit` version|poetry modules that include it| +| --- | --- | +|0.13.3|`poetry/2.1.3-GCCcore-14.3.0`| +|0.13.2|`poetry/2.1.2-GCCcore-14.2.0`| +|0.12.5|`poetry/1.8.3-GCCcore-13.3.0`| +|0.12.3|`poetry/1.7.1-GCCcore-12.3.0`| +|0.12.1|`poetry/1.6.1-GCCcore-13.2.0`| +|0.11.8|`poetry/1.5.1-GCCcore-12.3.0`| + +### urllib3 + + +|`urllib3` version|poetry modules that include it| +| --- | --- | +|2.5.0|`poetry/2.1.3-GCCcore-14.3.0`| +|2.4.0|`poetry/2.1.2-GCCcore-14.2.0`| +|2.2.1|`poetry/1.8.3-GCCcore-13.3.0`| +|2.1.0|`poetry/1.7.1-GCCcore-12.3.0`| +|2.0.7|`poetry/1.6.1-GCCcore-13.2.0`| +|1.26.16|`poetry/1.5.1-GCCcore-12.3.0`| + +### webencodings + + +|`webencodings` version|poetry modules that include it| +| --- | --- | +|0.5.1|`poetry/1.8.3-GCCcore-13.3.0`
`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`
`poetry/1.5.1-GCCcore-12.3.0`| + +### zipp + + +|`zipp` version|poetry modules that include it| +| --- | --- | +|3.19.2|`poetry/1.8.3-GCCcore-13.3.0`| +|3.17.0|`poetry/1.7.1-GCCcore-12.3.0`
`poetry/1.6.1-GCCcore-13.2.0`| +|3.15.0|`poetry/1.5.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pre-commit.md b/docs/available_software/detail/pre-commit.md index a8bab95bcc..e708733bc6 100644 --- a/docs/available_software/detail/pre-commit.md +++ b/docs/available_software/detail/pre-commit.md @@ -1,17 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A framework for managing and maintaining multi-language pre-commit - hooks.Git hook scripts are useful for identifying simple issues before submission - to code review. We run our hooks on every commit to automatically point out issues - in code such as missing semicolons, trailing whitespace, and debug statements. - By pointing these issues out before code review, this allows a code reviewer to - focus on the architecture of a change while not wasting time with trivial style - nitpicks. + description: "A framework for managing and maintaining multi-language pre-commit\ + \ hooks.\n\nGit hook scripts are useful for identifying simple issues before submission\ + \ to code review.\n We run our hooks on every commit to automatically point out\ + \ issues in code such as missing semicolons,\n trailing whitespace, and debug\ + \ statements. By pointing these issues out before code review,\n this allows a\ + \ code reviewer to focus on the architecture of a change while not wasting time\n\ + \ with trivial style nitpicks." license: Not confirmed name: pre-commit offers: @@ -30,37 +28,58 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pre-commit/3.7.0-GCCcore-13.2.0'']' + softwareVersion: '[''3.7.0'']' url: https://pre-commit.com/ --- +# pre-commit -pre-commit -========== +A framework for managing and maintaining multi-language pre-commit hooks. -A framework for managing and maintaining multi-language pre-commit hooks.Git hook scripts are useful for identifying simple issues before submission to code review. We run our hooks on every commit to automatically point out issues in code such as missing semicolons, trailing whitespace, and debug statements. By pointing these issues out before code review, this allows a code reviewer to focus on the architecture of a change while not wasting time with trivial style nitpicks. +Git hook scripts are useful for identifying simple issues before submission to code review. + We run our hooks on every commit to automatically point out issues in code such as missing semicolons, + trailing whitespace, and debug statements. By pointing these issues out before code review, + this allows a code reviewer to focus on the architecture of a change while not wasting time + with trivial style nitpicks. -https://pre-commit.com/ -# Available modules +homepage: [https://pre-commit.com/](https://pre-commit.com/) +## Available installations -The overview below shows which pre-commit installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using pre-commit, load one of these modules using a `module load` command like: +|pre-commit version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pre-commit/3.7.0-GCCcore-13.2.0`| -```shell -module load pre-commit/3.7.0-GCCcore-13.2.0 -``` +## Extensions -*(This data was automatically generated on {{ generated_time }})* +Overview of extensions included in pre-commit installations -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pre-commit/3.7.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### cfgv -### pre-commit/3.7.0-GCCcore-13.2.0 -This is a list of extensions included in the module: +|`cfgv` version|pre-commit modules that include it| +| --- | --- | +|3.4.0|`pre-commit/3.7.0-GCCcore-13.2.0`| -cfgv-3.4.0, identify-2.5.35, nodeenv-1.8.0, pre-commit-3.7.0 \ No newline at end of file +### identify + + +|`identify` version|pre-commit modules that include it| +| --- | --- | +|2.5.35|`pre-commit/3.7.0-GCCcore-13.2.0`| + +### nodeenv + + +|`nodeenv` version|pre-commit modules that include it| +| --- | --- | +|1.8.0|`pre-commit/3.7.0-GCCcore-13.2.0`| + +### pre-commit + + +|`pre-commit` version|pre-commit modules that include it| +| --- | --- | +|3.7.0|`pre-commit/3.7.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/protobuf-python.md b/docs/available_software/detail/protobuf-python.md index 13ee55cc24..156a3d97b2 100644 --- a/docs/available_software/detail/protobuf-python.md +++ b/docs/available_software/detail/protobuf-python.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,31 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''protobuf-python/4.24.0-GCCcore-12.3.0'', ''protobuf-python/4.25.3-GCCcore-13.2.0'']' + softwareVersion: '[''5.28.0'', ''4.25.3'', ''4.24.0'']' url: https://github.com/google/protobuf/ --- - -protobuf-python -=============== +# protobuf-python Python Protocol Buffers runtime library. -https://github.com/google/protobuf/ -# Available modules - - -The overview below shows which protobuf-python installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using protobuf-python, load one of these modules using a `module load` command like: +homepage: [https://github.com/google/protobuf/](https://github.com/google/protobuf/) -```shell -module load protobuf-python/4.25.3-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|protobuf-python/4.25.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|protobuf-python/4.24.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|protobuf-python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.28.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`protobuf-python/5.28.0-GCCcore-13.3.0`| +|4.25.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`protobuf-python/4.25.3-GCCcore-13.2.0`| +|4.24.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`protobuf-python/4.24.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/protobuf.md b/docs/available_software/detail/protobuf.md index 9237c0f499..c5db593781 100644 --- a/docs/available_software/detail/protobuf.md +++ b/docs/available_software/detail/protobuf.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Protocol Buffers (a.k.a., protobuf) are Google'slanguage-neutral, platform-neutral, - extensible mechanism forserializing structured data. + description: "Protocol Buffers (a.k.a., protobuf) are Google's \nlanguage-neutral,\ + \ platform-neutral, extensible mechanism for \nserializing structured data." license: Not confirmed name: protobuf offers: @@ -25,33 +23,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''protobuf/23.0-GCCcore-12.2.0'', ''protobuf/24.0-GCCcore-12.3.0'', - ''protobuf/25.3-GCCcore-13.2.0'']' + softwareVersion: '[''28.0'', ''25.3'', ''24.0'', ''23.0'']' url: https://github.com/protocolbuffers/protobuf --- +# protobuf -protobuf -======== +Protocol Buffers (a.k.a., protobuf) are Google's +language-neutral, platform-neutral, extensible mechanism for +serializing structured data. -Protocol Buffers (a.k.a., protobuf) are Google'slanguage-neutral, platform-neutral, extensible mechanism forserializing structured data. +homepage: [https://github.com/protocolbuffers/protobuf](https://github.com/protocolbuffers/protobuf) -https://github.com/protocolbuffers/protobuf -# Available modules +## Available installations -The overview below shows which protobuf installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using protobuf, load one of these modules using a `module load` command like: - -```shell -module load protobuf/25.3-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|protobuf/25.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|protobuf/24.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|protobuf/23.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|protobuf version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|28.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`protobuf/28.0-GCCcore-13.3.0`| +|25.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`protobuf/25.3-GCCcore-13.2.0`| +|24.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`protobuf/24.0-GCCcore-12.3.0`| +|23.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`protobuf/23.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/psutil.md b/docs/available_software/detail/psutil.md index d43ed900a0..03bc0db7b4 100644 --- a/docs/available_software/detail/psutil.md +++ b/docs/available_software/detail/psutil.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,34 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''psutil/6.1.0-GCCcore-13.2.0'']' + softwareVersion: '[''7.0.0'', ''6.1.0'']' url: https://github.com/giampaolo/psutil --- - -psutil -====== +# psutil A cross-platform process and system utilities module for Python -https://github.com/giampaolo/psutil -# Available modules - +homepage: [https://github.com/giampaolo/psutil](https://github.com/giampaolo/psutil) -The overview below shows which psutil installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using psutil, load one of these modules using a `module load` command like: -```shell -module load psutil/6.1.0-GCCcore-13.2.0 -``` +|psutil version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|7.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`psutil/7.0.0-GCCcore-14.3.0`| +|7.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`psutil/7.0.0-GCCcore-14.2.0`| +|6.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`psutil/6.1.0-GCCcore-13.2.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|psutil/6.1.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in psutil installations -### psutil/6.1.0-GCCcore-13.2.0 +### psutil -This is a list of extensions included in the module: -psutil-6.1.0 \ No newline at end of file +|`psutil` version|psutil modules that include it| +| --- | --- | +|7.0.0|`psutil/7.0.0-GCCcore-14.3.0`
`psutil/7.0.0-GCCcore-14.2.0`| +|6.1.0|`psutil/6.1.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/psycopg.md b/docs/available_software/detail/psycopg.md index 69406eb8b0..337fb5eeaa 100644 --- a/docs/available_software/detail/psycopg.md +++ b/docs/available_software/detail/psycopg.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,38 +23,33 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''psycopg/3.1.18-GCCcore-13.2.0'', ''psycopg/3.2.1-GCCcore-12.3.0'']' + softwareVersion: '[''3.2.3'', ''3.2.1'', ''3.1.18'']' url: https://psycopg.org/ --- - -psycopg -======= +# psycopg Psycopg is the most popular PostgreSQL adapter for the Python programming language. -https://psycopg.org/ -# Available modules - +homepage: [https://psycopg.org/](https://psycopg.org/) -The overview below shows which psycopg installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using psycopg, load one of these modules using a `module load` command like: -```shell -module load psycopg/3.2.1-GCCcore-12.3.0 -``` +|psycopg version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.2.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`psycopg/3.2.3-GCCcore-13.3.0`| +|3.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`psycopg/3.2.1-GCCcore-12.3.0`| +|3.1.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`psycopg/3.1.18-GCCcore-13.2.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|psycopg/3.2.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|psycopg/3.1.18-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in psycopg installations -### psycopg/3.2.1-GCCcore-12.3.0 +### psycopg -This is a list of extensions included in the module: -psycopg-3.2.1 \ No newline at end of file +|`psycopg` version|psycopg modules that include it| +| --- | --- | +|3.2.1|`psycopg/3.2.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/psycopg2.md b/docs/available_software/detail/psycopg2.md index 768a888853..f0510e7a13 100644 --- a/docs/available_software/detail/psycopg2.md +++ b/docs/available_software/detail/psycopg2.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,37 +23,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''psycopg2/2.9.9-GCCcore-12.3.0'']' + softwareVersion: '[''2.9.9'']' url: https://psycopg.org/ --- - -psycopg2 -======== +# psycopg2 Psycopg is the most popular PostgreSQL adapter for the Python programming language. -https://psycopg.org/ -# Available modules - +homepage: [https://psycopg.org/](https://psycopg.org/) -The overview below shows which psycopg2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using psycopg2, load one of these modules using a `module load` command like: -```shell -module load psycopg2/2.9.9-GCCcore-12.3.0 -``` +|psycopg2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.9.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`psycopg2/2.9.9-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|psycopg2/2.9.9-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in psycopg2 installations -### psycopg2/2.9.9-GCCcore-12.3.0 +### psycopg2 -This is a list of extensions included in the module: -psycopg2-2.9.9 \ No newline at end of file +|`psycopg2` version|psycopg2 modules that include it| +| --- | --- | +|2.9.9|`psycopg2/2.9.9-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pugixml.md b/docs/available_software/detail/pugixml.md index d77428d9a2..ccf7c8703c 100644 --- a/docs/available_software/detail/pugixml.md +++ b/docs/available_software/detail/pugixml.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pugixml/1.14-GCCcore-12.3.0'']' + softwareVersion: '[''1.14'']' url: https://pugixml.org/ --- - -pugixml -======= +# pugixml pugixml is a light-weight C++ XML processing library -https://pugixml.org/ -# Available modules - - -The overview below shows which pugixml installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using pugixml, load one of these modules using a `module load` command like: +homepage: [https://pugixml.org/](https://pugixml.org/) -```shell -module load pugixml/1.14-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pugixml/1.14-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pugixml version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pugixml/1.14-GCCcore-13.2.0`| +|1.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pugixml/1.14-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/py-cpuinfo.md b/docs/available_software/detail/py-cpuinfo.md index 060190badd..beb59dafda 100644 --- a/docs/available_software/detail/py-cpuinfo.md +++ b/docs/available_software/detail/py-cpuinfo.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''py-cpuinfo/9.0.0-GCCcore-13.2.0'']' + softwareVersion: '[''9.0.0'']' url: https://github.com/workhorsy/py-cpuinfo --- - -py-cpuinfo -========== +# py-cpuinfo py-cpuinfo gets CPU info with pure Python. -https://github.com/workhorsy/py-cpuinfo -# Available modules - - -The overview below shows which py-cpuinfo installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using py-cpuinfo, load one of these modules using a `module load` command like: +homepage: [https://github.com/workhorsy/py-cpuinfo](https://github.com/workhorsy/py-cpuinfo) -```shell -module load py-cpuinfo/9.0.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|py-cpuinfo/9.0.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|py-cpuinfo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`py-cpuinfo/9.0.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pyMBE.md b/docs/available_software/detail/pyMBE.md index 62d92fba07..1ccdb05167 100644 --- a/docs/available_software/detail/pyMBE.md +++ b/docs/available_software/detail/pyMBE.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'pyMBE: the Python-based Molecule Builder for ESPResSopyMBE provides - tools to facilitate building up molecules with complex architecturesin the Molecular - Dynamics software ESPResSo.' + description: 'pyMBE: the Python-based Molecule Builder for ESPResSo + + + pyMBE provides tools to facilitate building up molecules with complex architectures + + in the Molecular Dynamics software ESPResSo.' license: Not confirmed name: pyMBE offers: @@ -26,37 +27,62 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pyMBE/0.8.0-foss-2023b'']' + softwareVersion: '[''0.8.0'']' url: '' --- +# pyMBE + + +pyMBE: the Python-based Molecule Builder for ESPResSo + +pyMBE provides tools to facilitate building up molecules with complex architectures +in the Molecular Dynamics software ESPResSo. + +homepage: []() + +## Available installations + + +|pyMBE version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pyMBE/0.8.0-foss-2023b`| + +## Extensions + +Overview of extensions included in pyMBE installations + -pyMBE -===== +### biopandas -pyMBE: the Python-based Molecule Builder for ESPResSopyMBE provides tools to facilitate building up molecules with complex architecturesin the Molecular Dynamics software ESPResSo. +|`biopandas` version|pyMBE modules that include it| +| --- | --- | +|0.5.1.dev0|`pyMBE/0.8.0-foss-2023b`| +### looseversion -# Available modules +|`looseversion` version|pyMBE modules that include it| +| --- | --- | +|1.1.2|`pyMBE/0.8.0-foss-2023b`| -The overview below shows which pyMBE installations are available per target architecture in EESSI, ordered based on software version (new to old). +### mmtf-python -To start using pyMBE, load one of these modules using a `module load` command like: -```shell -module load pyMBE/0.8.0-foss-2023b -``` +|`mmtf-python` version|pyMBE modules that include it| +| --- | --- | +|1.1.3|`pyMBE/0.8.0-foss-2023b`| -*(This data was automatically generated on {{ generated_time }})* +### Pint-Pandas -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pyMBE/0.8.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`Pint-Pandas` version|pyMBE modules that include it| +| --- | --- | +|0.5|`pyMBE/0.8.0-foss-2023b`| -### pyMBE/0.8.0-foss-2023b +### pyMBE -This is a list of extensions included in the module: -biopandas-0.5.1.dev0, looseversion-1.1.2, mmtf-python-1.1.3, Pint-Pandas-0.5, pyMBE-0.8.0 \ No newline at end of file +|`pyMBE` version|pyMBE modules that include it| +| --- | --- | +|0.8.0|`pyMBE/0.8.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/pybind11.md b/docs/available_software/detail/pybind11.md index 79bd185aa8..a714157cb3 100644 --- a/docs/available_software/detail/pybind11.md +++ b/docs/available_software/detail/pybind11.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: pybind11 is a lightweight header-only library that exposes C++ types - in Python and vice versa, mainly to create Python bindings of existing C++ code. + description: "pybind11 is a lightweight header-only library that exposes C++ types\ + \ in Python and vice versa,\n mainly to create Python bindings of existing C++\ + \ code." license: Not confirmed name: pybind11 offers: @@ -25,33 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pybind11/2.10.3-GCCcore-12.2.0'', ''pybind11/2.11.1-GCCcore-12.3.0'', - ''pybind11/2.11.1-GCCcore-13.2.0'']' + softwareVersion: '[''3.0.0'', ''2.13.6'', ''2.12.0'', ''2.11.1'', ''2.10.3'']' url: https://pybind11.readthedocs.io --- +# pybind11 -pybind11 -======== +pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa, + mainly to create Python bindings of existing C++ code. -pybind11 is a lightweight header-only library that exposes C++ types in Python and vice versa, mainly to create Python bindings of existing C++ code. +homepage: [https://pybind11.readthedocs.io](https://pybind11.readthedocs.io) -https://pybind11.readthedocs.io -# Available modules +## Available installations -The overview below shows which pybind11 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using pybind11, load one of these modules using a `module load` command like: - -```shell -module load pybind11/2.11.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pybind11/2.11.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pybind11/2.11.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pybind11/2.10.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pybind11 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pybind11/3.0.0-GCC-14.3.0`| +|2.13.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pybind11/2.13.6-GCC-14.2.0`| +|2.12.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pybind11/2.12.0-GCC-13.3.0`| +|2.11.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pybind11/2.11.1-GCCcore-13.2.0`| +|2.11.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pybind11/2.11.1-GCCcore-12.3.0`| +|2.10.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pybind11/2.10.3-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pydantic.md b/docs/available_software/detail/pydantic.md index 588bdce416..eb9336d25d 100644 --- a/docs/available_software/detail/pydantic.md +++ b/docs/available_software/detail/pydantic.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,44 +22,52 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pydantic/2.5.3-GCCcore-12.3.0'', ''pydantic/2.7.4-GCCcore-13.2.0'']' + softwareVersion: '[''2.9.1'', ''2.7.4'', ''2.5.3'']' url: https://github.com/samuelcolvin/pydantic --- - -pydantic -======== +# pydantic Data validation and settings management using Python type hinting. -https://github.com/samuelcolvin/pydantic -# Available modules +homepage: [https://github.com/samuelcolvin/pydantic](https://github.com/samuelcolvin/pydantic) + +## Available installations + +|pydantic version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.9.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pydantic/2.9.1-GCCcore-13.3.0`| +|2.7.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pydantic/2.7.4-GCCcore-13.2.0`| +|2.5.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pydantic/2.5.3-GCCcore-12.3.0`| -The overview below shows which pydantic installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using pydantic, load one of these modules using a `module load` command like: +Overview of extensions included in pydantic installations -```shell -module load pydantic/2.7.4-GCCcore-13.2.0 -``` -*(This data was automatically generated on {{ generated_time }})* +### annotated_types -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pydantic/2.7.4-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pydantic/2.5.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`annotated_types` version|pydantic modules that include it| +| --- | --- | +|0.7.0|`pydantic/2.9.1-GCCcore-13.3.0`| +|0.6.0|`pydantic/2.7.4-GCCcore-13.2.0`
`pydantic/2.5.3-GCCcore-12.3.0`| -### pydantic/2.7.4-GCCcore-13.2.0 +### pydantic -This is a list of extensions included in the module: -annotated_types-0.6.0, pydantic-2.7.4, pydantic_core-2.18.4 +|`pydantic` version|pydantic modules that include it| +| --- | --- | +|2.9.1|`pydantic/2.9.1-GCCcore-13.3.0`| +|2.7.4|`pydantic/2.7.4-GCCcore-13.2.0`| +|2.5.3|`pydantic/2.5.3-GCCcore-12.3.0`| -### pydantic/2.5.3-GCCcore-12.3.0 +### pydantic_core -This is a list of extensions included in the module: -annotated_types-0.6.0, pydantic-2.5.3, pydantic_core-2.14.6 \ No newline at end of file +|`pydantic_core` version|pydantic modules that include it| +| --- | --- | +|2.23.3|`pydantic/2.9.1-GCCcore-13.3.0`| +|2.18.4|`pydantic/2.7.4-GCCcore-13.2.0`| +|2.14.6|`pydantic/2.5.3-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pydot.md b/docs/available_software/detail/pydot.md index 345dcf45fc..dd2d8fc184 100644 --- a/docs/available_software/detail/pydot.md +++ b/docs/available_software/detail/pydot.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,33 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pydot/2.0.0-GCCcore-13.2.0'']' + softwareVersion: '[''3.0.3'', ''2.0.0'']' url: https://github.com/pydot/pydot --- - -pydot -===== +# pydot Python interface to Graphviz's Dot language. -https://github.com/pydot/pydot -# Available modules - +homepage: [https://github.com/pydot/pydot](https://github.com/pydot/pydot) -The overview below shows which pydot installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using pydot, load one of these modules using a `module load` command like: -```shell -module load pydot/2.0.0-GCCcore-13.2.0 -``` +|pydot version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pydot/3.0.3-GCCcore-13.3.0`| +|2.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pydot/2.0.0-GCCcore-13.2.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pydot/2.0.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in pydot installations -### pydot/2.0.0-GCCcore-13.2.0 +### pydot -This is a list of extensions included in the module: -pydot-2.0.0 \ No newline at end of file +|`pydot` version|pydot modules that include it| +| --- | --- | +|3.0.3|`pydot/3.0.3-GCCcore-13.3.0`| +|2.0.0|`pydot/2.0.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pyfaidx.md b/docs/available_software/detail/pyfaidx.md index 257d910048..bdebb45220 100644 --- a/docs/available_software/detail/pyfaidx.md +++ b/docs/available_software/detail/pyfaidx.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,40 +22,47 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pyfaidx/0.7.2.1-GCCcore-12.2.0'', ''pyfaidx/0.8.1.1-GCCcore-12.3.0'', - ''pyfaidx/0.8.1.1-GCCcore-13.2.0'']' + softwareVersion: '[''0.8.1.1'', ''0.7.2.1'']' url: https://pypi.python.org/pypi/pyfaidx --- - -pyfaidx -======= +# pyfaidx pyfaidx: efficient pythonic random access to fasta subsequences -https://pypi.python.org/pypi/pyfaidx -# Available modules +homepage: [https://pypi.python.org/pypi/pyfaidx](https://pypi.python.org/pypi/pyfaidx) + +## Available installations + + +|pyfaidx version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.8.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pyfaidx/0.8.1.1-GCCcore-13.2.0`| +|0.8.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pyfaidx/0.8.1.1-GCCcore-12.3.0`| +|0.7.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pyfaidx/0.7.2.1-GCCcore-12.2.0`| + +## Extensions + +Overview of extensions included in pyfaidx installations -The overview below shows which pyfaidx installations are available per target architecture in EESSI, ordered based on software version (new to old). +### importlib_metadata -To start using pyfaidx, load one of these modules using a `module load` command like: -```shell -module load pyfaidx/0.8.1.1-GCCcore-13.2.0 -``` +|`importlib_metadata` version|pyfaidx modules that include it| +| --- | --- | +|7.0.1|`pyfaidx/0.8.1.1-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### pyfaidx -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pyfaidx/0.8.1.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pyfaidx/0.8.1.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pyfaidx/0.7.2.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`pyfaidx` version|pyfaidx modules that include it| +| --- | --- | +|0.8.1.1|`pyfaidx/0.8.1.1-GCCcore-12.3.0`| -### pyfaidx/0.8.1.1-GCCcore-12.3.0 +### zipp -This is a list of extensions included in the module: -importlib_metadata-7.0.1, pyfaidx-0.8.1.1, zipp-3.17.0 \ No newline at end of file +|`zipp` version|pyfaidx modules that include it| +| --- | --- | +|3.17.0|`pyfaidx/0.8.1.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pymatgen.md b/docs/available_software/detail/pymatgen.md index c07357e76d..3ebd0fd8e1 100644 --- a/docs/available_software/detail/pymatgen.md +++ b/docs/available_software/detail/pymatgen.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Python Materials Genomics is a robust materials analysis code that - defines core object representations for structures and molecules with support - for many electronic structure codes. + description: "Python Materials Genomics is a robust materials analysis code that\ + \ defines core object\n representations for structures and molecules with support\ + \ for many electronic structure codes." license: Not confirmed name: pymatgen offers: @@ -26,37 +24,200 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pymatgen/2023.12.18-foss-2023a'']' + softwareVersion: '[''2023.12.18'']' url: https://pymatgen.org/ --- +# pymatgen -pymatgen -======== +Python Materials Genomics is a robust materials analysis code that defines core object + representations for structures and molecules with support for many electronic structure codes. -Python Materials Genomics is a robust materials analysis code that defines core object representations for structures and molecules with support for many electronic structure codes. +homepage: [https://pymatgen.org/](https://pymatgen.org/) -https://pymatgen.org/ -# Available modules +## Available installations -The overview below shows which pymatgen installations are available per target architecture in EESSI, ordered based on software version (new to old). +|pymatgen version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2023.12.18|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pymatgen/2023.12.18-foss-2023a`| -To start using pymatgen, load one of these modules using a `module load` command like: +## Extensions -```shell -module load pymatgen/2023.12.18-foss-2023a -``` +Overview of extensions included in pymatgen installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pymatgen/2023.12.18-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### aioitertools -### pymatgen/2023.12.18-foss-2023a +|`aioitertools` version|pymatgen modules that include it| +| --- | --- | +|0.11.0|`pymatgen/2023.12.18-foss-2023a`| -This is a list of extensions included in the module: +### anyio -aioitertools-0.11.0, anyio-3.7.1, dnspython-2.4.2, emmet-core-0.75.0, fastapi-0.105.0, h11-0.14.0, latexcodec-2.0.1, maggma-0.60.2, mongogrant-0.3.3, mongomock-4.1.2, monty-2023.11.3, mp-api-0.39.4, orjson-3.9.10, palettable-3.3.0, pybtex-0.24.0, pydantic-settings-2.1.0, pydash-7.0.6, pymatgen-2023.12.18, pymongo-4.6.1, python-dotenv-1.0.0, sentinels-1.0.0, sniffio-1.3.0, sshtunnel-0.4.0, starlette-0.27.0, uvicorn-0.25.0 \ No newline at end of file + +|`anyio` version|pymatgen modules that include it| +| --- | --- | +|3.7.1|`pymatgen/2023.12.18-foss-2023a`| + +### dnspython + + +|`dnspython` version|pymatgen modules that include it| +| --- | --- | +|2.4.2|`pymatgen/2023.12.18-foss-2023a`| + +### emmet-core + + +|`emmet-core` version|pymatgen modules that include it| +| --- | --- | +|0.75.0|`pymatgen/2023.12.18-foss-2023a`| + +### fastapi + + +|`fastapi` version|pymatgen modules that include it| +| --- | --- | +|0.105.0|`pymatgen/2023.12.18-foss-2023a`| + +### h11 + + +|`h11` version|pymatgen modules that include it| +| --- | --- | +|0.14.0|`pymatgen/2023.12.18-foss-2023a`| + +### latexcodec + + +|`latexcodec` version|pymatgen modules that include it| +| --- | --- | +|2.0.1|`pymatgen/2023.12.18-foss-2023a`| + +### maggma + + +|`maggma` version|pymatgen modules that include it| +| --- | --- | +|0.60.2|`pymatgen/2023.12.18-foss-2023a`| + +### mongogrant + + +|`mongogrant` version|pymatgen modules that include it| +| --- | --- | +|0.3.3|`pymatgen/2023.12.18-foss-2023a`| + +### mongomock + + +|`mongomock` version|pymatgen modules that include it| +| --- | --- | +|4.1.2|`pymatgen/2023.12.18-foss-2023a`| + +### monty + + +|`monty` version|pymatgen modules that include it| +| --- | --- | +|2023.11.3|`pymatgen/2023.12.18-foss-2023a`| + +### mp-api + + +|`mp-api` version|pymatgen modules that include it| +| --- | --- | +|0.39.4|`pymatgen/2023.12.18-foss-2023a`| + +### orjson + + +|`orjson` version|pymatgen modules that include it| +| --- | --- | +|3.9.10|`pymatgen/2023.12.18-foss-2023a`| + +### palettable + + +|`palettable` version|pymatgen modules that include it| +| --- | --- | +|3.3.0|`pymatgen/2023.12.18-foss-2023a`| + +### pybtex + + +|`pybtex` version|pymatgen modules that include it| +| --- | --- | +|0.24.0|`pymatgen/2023.12.18-foss-2023a`| + +### pydantic-settings + + +|`pydantic-settings` version|pymatgen modules that include it| +| --- | --- | +|2.1.0|`pymatgen/2023.12.18-foss-2023a`| + +### pydash + + +|`pydash` version|pymatgen modules that include it| +| --- | --- | +|7.0.6|`pymatgen/2023.12.18-foss-2023a`| + +### pymatgen + + +|`pymatgen` version|pymatgen modules that include it| +| --- | --- | +|2023.12.18|`pymatgen/2023.12.18-foss-2023a`| + +### pymongo + + +|`pymongo` version|pymatgen modules that include it| +| --- | --- | +|4.6.1|`pymatgen/2023.12.18-foss-2023a`| + +### python-dotenv + + +|`python-dotenv` version|pymatgen modules that include it| +| --- | --- | +|1.0.0|`pymatgen/2023.12.18-foss-2023a`| + +### sentinels + + +|`sentinels` version|pymatgen modules that include it| +| --- | --- | +|1.0.0|`pymatgen/2023.12.18-foss-2023a`| + +### sniffio + + +|`sniffio` version|pymatgen modules that include it| +| --- | --- | +|1.3.0|`pymatgen/2023.12.18-foss-2023a`| + +### sshtunnel + + +|`sshtunnel` version|pymatgen modules that include it| +| --- | --- | +|0.4.0|`pymatgen/2023.12.18-foss-2023a`| + +### starlette + + +|`starlette` version|pymatgen modules that include it| +| --- | --- | +|0.27.0|`pymatgen/2023.12.18-foss-2023a`| + +### uvicorn + + +|`uvicorn` version|pymatgen modules that include it| +| --- | --- | +|0.25.0|`pymatgen/2023.12.18-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/pyproj.md b/docs/available_software/detail/pyproj.md index c33a35b33f..aa2c56bc4a 100644 --- a/docs/available_software/detail/pyproj.md +++ b/docs/available_software/detail/pyproj.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pyproj/3.6.0-GCCcore-12.3.0'']' + softwareVersion: '[''3.6.0'']' url: https://pyproj4.github.io/pyproj --- - -pyproj -====== +# pyproj Python interface to PROJ4 library for cartographic transformations -https://pyproj4.github.io/pyproj -# Available modules - - -The overview below shows which pyproj installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using pyproj, load one of these modules using a `module load` command like: +homepage: [https://pyproj4.github.io/pyproj](https://pyproj4.github.io/pyproj) -```shell -module load pyproj/3.6.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pyproj/3.6.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pyproj version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pyproj/3.6.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pystencils.md b/docs/available_software/detail/pystencils.md index ac160f1306..779158bb87 100644 --- a/docs/available_software/detail/pystencils.md +++ b/docs/available_software/detail/pystencils.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,44 +23,32 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pystencils/1.3.4-gfbf-2023a'', ''pystencils/1.3.4-gfbf-2023b'']' + softwareVersion: '[''1.3.4'']' url: https://pycodegen.pages.i10git.cs.fau.de/pystencils --- - -pystencils -========== +# pystencils pystencils uses sympy to define stencil operations, that can be executed on numpy arrays -https://pycodegen.pages.i10git.cs.fau.de/pystencils -# Available modules - - -The overview below shows which pystencils installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using pystencils, load one of these modules using a `module load` command like: - -```shell -module load pystencils/1.3.4-gfbf-2023b -``` +homepage: [https://pycodegen.pages.i10git.cs.fau.de/pystencils](https://pycodegen.pages.i10git.cs.fau.de/pystencils) -*(This data was automatically generated on {{ generated_time }})* +## Available installations -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pystencils/1.3.4-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|pystencils/1.3.4-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pystencils version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pystencils/1.3.4-gfbf-2023b`| +|1.3.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pystencils/1.3.4-gfbf-2023a`| -### pystencils/1.3.4-gfbf-2023b +## Extensions -This is a list of extensions included in the module: +Overview of extensions included in pystencils installations -pystencils-1.3.4 -### pystencils/1.3.4-gfbf-2023a +### pystencils -This is a list of extensions included in the module: -pystencils-1.3.4 \ No newline at end of file +|`pystencils` version|pystencils modules that include it| +| --- | --- | +|1.3.4|`pystencils/1.3.4-gfbf-2023b`
`pystencils/1.3.4-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/pytest-flakefinder.md b/docs/available_software/detail/pytest-flakefinder.md index 01eb4e8fbe..baa27a0f87 100644 --- a/docs/available_software/detail/pytest-flakefinder.md +++ b/docs/available_software/detail/pytest-flakefinder.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pytest-flakefinder/1.1.0-GCCcore-12.3.0'']' + softwareVersion: '[''1.1.0'']' url: https://github.com/dropbox/pytest-flakefinder --- - -pytest-flakefinder -================== +# pytest-flakefinder Runs tests multiple times to expose flakiness. -https://github.com/dropbox/pytest-flakefinder -# Available modules - - -The overview below shows which pytest-flakefinder installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using pytest-flakefinder, load one of these modules using a `module load` command like: +homepage: [https://github.com/dropbox/pytest-flakefinder](https://github.com/dropbox/pytest-flakefinder) -```shell -module load pytest-flakefinder/1.1.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pytest-flakefinder/1.1.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pytest-flakefinder version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pytest-flakefinder/1.1.0-GCCcore-13.3.0`| +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pytest-flakefinder/1.1.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pytest-rerunfailures.md b/docs/available_software/detail/pytest-rerunfailures.md index 0ca98119bc..01cc949da0 100644 --- a/docs/available_software/detail/pytest-rerunfailures.md +++ b/docs/available_software/detail/pytest-rerunfailures.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pytest-rerunfailures/12.0-GCCcore-12.3.0'']' + softwareVersion: '[''15.0'', ''12.0'']' url: https://github.com/pytest-dev/pytest-rerunfailures --- - -pytest-rerunfailures -==================== +# pytest-rerunfailures pytest plugin to re-run tests to eliminate flaky failures. -https://github.com/pytest-dev/pytest-rerunfailures -# Available modules - - -The overview below shows which pytest-rerunfailures installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using pytest-rerunfailures, load one of these modules using a `module load` command like: +homepage: [https://github.com/pytest-dev/pytest-rerunfailures](https://github.com/pytest-dev/pytest-rerunfailures) -```shell -module load pytest-rerunfailures/12.0-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pytest-rerunfailures/12.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pytest-rerunfailures version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|15.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pytest-rerunfailures/15.0-GCCcore-13.3.0`| +|12.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pytest-rerunfailures/12.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pytest-shard.md b/docs/available_software/detail/pytest-shard.md index a086b9c2bf..3b984439de 100644 --- a/docs/available_software/detail/pytest-shard.md +++ b/docs/available_software/detail/pytest-shard.md @@ -1,15 +1,23 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: pytest plugin to support parallelism across multiple machines.Shards - tests based on a hash of their test name enabling easy parallelism across machines,suitable - for a wide variety of continuous integration services.Tests are split at the finest - level of granularity, individual test cases,enabling parallelism even if all of - your tests are in a single file(or even single parameterized test method). + description: 'pytest plugin to support parallelism across multiple machines. + + + Shards tests based on a hash of their test name enabling easy parallelism across + machines, + + suitable for a wide variety of continuous integration services. + + Tests are split at the finest level of granularity, individual test cases, + + enabling parallelism even if all of your tests are in a single file + + (or even single parameterized test method). + + ' license: Not confirmed name: pytest-shard offers: @@ -28,30 +36,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pytest-shard/0.1.2-GCCcore-12.3.0'']' + softwareVersion: '[''0.1.2'']' url: https://github.com/AdamGleave/pytest-shard --- +# pytest-shard -pytest-shard -============ - - -pytest plugin to support parallelism across multiple machines.Shards tests based on a hash of their test name enabling easy parallelism across machines,suitable for a wide variety of continuous integration services.Tests are split at the finest level of granularity, individual test cases,enabling parallelism even if all of your tests are in a single file(or even single parameterized test method). -https://github.com/AdamGleave/pytest-shard -# Available modules +pytest plugin to support parallelism across multiple machines. +Shards tests based on a hash of their test name enabling easy parallelism across machines, +suitable for a wide variety of continuous integration services. +Tests are split at the finest level of granularity, individual test cases, +enabling parallelism even if all of your tests are in a single file +(or even single parameterized test method). -The overview below shows which pytest-shard installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using pytest-shard, load one of these modules using a `module load` command like: +homepage: [https://github.com/AdamGleave/pytest-shard](https://github.com/AdamGleave/pytest-shard) -```shell -module load pytest-shard/0.1.2-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pytest-shard/0.1.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|pytest-shard version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pytest-shard/0.1.2-GCCcore-13.3.0`| +|0.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pytest-shard/0.1.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pytest-subtests.md b/docs/available_software/detail/pytest-subtests.md new file mode 100644 index 0000000000..4bd588be0d --- /dev/null +++ b/docs/available_software/detail/pytest-subtests.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: unittest subTest() support and subtests fixture. + license: Not confirmed + name: pytest-subtests + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.13.1'']' + url: https://github.com/pytest-dev/pytest-subtests +--- +# pytest-subtests + + +unittest subTest() support and subtests fixture. + +homepage: [https://github.com/pytest-dev/pytest-subtests](https://github.com/pytest-dev/pytest-subtests) + +## Available installations + + +|pytest-subtests version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.13.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pytest-subtests/0.13.1-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pytest.md b/docs/available_software/detail/pytest.md index e335bb02a2..525f9cf551 100644 --- a/docs/available_software/detail/pytest.md +++ b/docs/available_software/detail/pytest.md @@ -1,12 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The pytest framework makes it easy to write small,readable tests, and - can scale to support complex functional testing forapplications and libraries. + description: 'The pytest framework makes it easy to write small, + + readable tests, and can scale to support complex functional testing for + + applications and libraries.' license: Not confirmed name: pytest offers: @@ -25,37 +26,73 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''pytest/7.4.2-GCCcore-12.3.0'']' + softwareVersion: '[''8.2.2'', ''7.4.2'']' url: https://docs.pytest.org/en/latest/ --- +# pytest + + +The pytest framework makes it easy to write small, +readable tests, and can scale to support complex functional testing for +applications and libraries. + +homepage: [https://docs.pytest.org/en/latest/](https://docs.pytest.org/en/latest/) + +## Available installations + + +|pytest version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pytest/8.2.2-GCCcore-13.2.0`| +|7.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`pytest/7.4.2-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in pytest installations + + +### elementpath + + +|`elementpath` version|pytest modules that include it| +| --- | --- | +|4.4.0|`pytest/8.2.2-GCCcore-13.2.0`| +|4.1.5|`pytest/7.4.2-GCCcore-12.3.0`| + +### exceptiongroup -pytest -====== +|`exceptiongroup` version|pytest modules that include it| +| --- | --- | +|1.1.1|`pytest/7.4.2-GCCcore-12.3.0`| -The pytest framework makes it easy to write small,readable tests, and can scale to support complex functional testing forapplications and libraries. +### iniconfig -https://docs.pytest.org/en/latest/ -# Available modules +|`iniconfig` version|pytest modules that include it| +| --- | --- | +|2.0.0|`pytest/7.4.2-GCCcore-12.3.0`| -The overview below shows which pytest installations are available per target architecture in EESSI, ordered based on software version (new to old). +### pluggy -To start using pytest, load one of these modules using a `module load` command like: -```shell -module load pytest/7.4.2-GCCcore-12.3.0 -``` +|`pluggy` version|pytest modules that include it| +| --- | --- | +|1.5.0|`pytest/8.2.2-GCCcore-13.2.0`| +|1.2.0|`pytest/7.4.2-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### pytest -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|pytest/7.4.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`pytest` version|pytest modules that include it| +| --- | --- | +|8.2.2|`pytest/8.2.2-GCCcore-13.2.0`| +|7.4.2|`pytest/7.4.2-GCCcore-12.3.0`| -### pytest/7.4.2-GCCcore-12.3.0 +### xmlschema -This is a list of extensions included in the module: -elementpath-4.1.5, exceptiongroup-1.1.1, iniconfig-2.0.0, pluggy-1.2.0, pytest-7.4.2, xmlschema-2.5.0 \ No newline at end of file +|`xmlschema` version|pytest modules that include it| +| --- | --- | +|3.3.1|`pytest/8.2.2-GCCcore-13.2.0`| +|2.5.0|`pytest/7.4.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/python-casacore.md b/docs/available_software/detail/python-casacore.md index 76e531c93d..52b8e6ce1d 100644 --- a/docs/available_software/detail/python-casacore.md +++ b/docs/available_software/detail/python-casacore.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Python-casacore is a set of Python bindings for casacore,a c++ library - used in radio astronomy. Python-casacore replaces the old pyrap. + description: 'Python-casacore is a set of Python bindings for casacore, + + a c++ library used in radio astronomy. Python-casacore replaces the old pyrap.' license: Not confirmed name: python-casacore offers: @@ -25,37 +24,39 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''python-casacore/3.5.2-foss-2023b'']' + softwareVersion: '[''3.5.2'']' url: https://casacore.github.io/python-casacore/# --- +# python-casacore + -python-casacore -=============== +Python-casacore is a set of Python bindings for casacore, +a c++ library used in radio astronomy. Python-casacore replaces the old pyrap. +homepage: [https://casacore.github.io/python-casacore/#](https://casacore.github.io/python-casacore/#) -Python-casacore is a set of Python bindings for casacore,a c++ library used in radio astronomy. Python-casacore replaces the old pyrap. +## Available installations -https://casacore.github.io/python-casacore/# -# Available modules +|python-casacore version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`python-casacore/3.5.2-foss-2023b`| -The overview below shows which python-casacore installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using python-casacore, load one of these modules using a `module load` command like: +Overview of extensions included in python-casacore installations -```shell -module load python-casacore/3.5.2-foss-2023b -``` -*(This data was automatically generated on {{ generated_time }})* +### python-casacore -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|python-casacore/3.5.2-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`python-casacore` version|python-casacore modules that include it| +| --- | --- | +|3.5.2|`python-casacore/3.5.2-foss-2023b`| -### python-casacore/3.5.2-foss-2023b +### setuptools -This is a list of extensions included in the module: -python-casacore-3.5.2, setuptools-69.1.0 \ No newline at end of file +|`setuptools` version|python-casacore modules that include it| +| --- | --- | +|69.1.0|`python-casacore/3.5.2-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/python-isal.md b/docs/available_software/detail/python-isal.md index f8df023fee..561315fb39 100644 --- a/docs/available_software/detail/python-isal.md +++ b/docs/available_software/detail/python-isal.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Faster zlib and gzip compatible compression and decompression by providing - python bindings for the isa-l library. + description: "Faster zlib and gzip compatible compression and decompression\n by\ + \ providing python bindings for the isa-l library.\n" license: Not confirmed name: python-isal offers: @@ -25,33 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''python-isal/1.1.0-GCCcore-12.2.0'', ''python-isal/1.1.0-GCCcore-12.3.0'', - ''python-isal/1.6.1-GCCcore-13.2.0'']' + softwareVersion: '[''1.6.1'', ''1.1.0'']' url: https://github.com/pycompression/python-isal --- +# python-isal -python-isal -=========== +Faster zlib and gzip compatible compression and decompression + by providing python bindings for the isa-l library. -Faster zlib and gzip compatible compression and decompression by providing python bindings for the isa-l library. -https://github.com/pycompression/python-isal -# Available modules +homepage: [https://github.com/pycompression/python-isal](https://github.com/pycompression/python-isal) +## Available installations -The overview below shows which python-isal installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using python-isal, load one of these modules using a `module load` command like: - -```shell -module load python-isal/1.6.1-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|python-isal/1.6.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|python-isal/1.1.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|python-isal/1.1.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|python-isal version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`python-isal/1.6.1-GCCcore-13.2.0`| +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`python-isal/1.1.0-GCCcore-12.3.0`| +|1.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`python-isal/1.1.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/python-xxhash.md b/docs/available_software/detail/python-xxhash.md index ced95dca35..940219f8ed 100644 --- a/docs/available_software/detail/python-xxhash.md +++ b/docs/available_software/detail/python-xxhash.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''python-xxhash/3.4.1-GCCcore-12.3.0'']' + softwareVersion: '[''3.4.1'']' url: https://github.com/ifduyue/python-xxhash --- - -python-xxhash -============= +# python-xxhash xxhash is a Python binding for the xxHash library by Yann Collet. -https://github.com/ifduyue/python-xxhash -# Available modules - +homepage: [https://github.com/ifduyue/python-xxhash](https://github.com/ifduyue/python-xxhash) -The overview below shows which python-xxhash installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using python-xxhash, load one of these modules using a `module load` command like: -```shell -module load python-xxhash/3.4.1-GCCcore-12.3.0 -``` +|python-xxhash version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`python-xxhash/3.4.1-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|python-xxhash/3.4.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in python-xxhash installations -### python-xxhash/3.4.1-GCCcore-12.3.0 +### xxhash -This is a list of extensions included in the module: -xxhash-3.4.1 \ No newline at end of file +|`xxhash` version|python-xxhash modules that include it| +| --- | --- | +|3.4.1|`python-xxhash/3.4.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/pyzstd.md b/docs/available_software/detail/pyzstd.md new file mode 100644 index 0000000000..b85cbba33e --- /dev/null +++ b/docs/available_software/detail/pyzstd.md @@ -0,0 +1,49 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Pyzstd module provides classes and functions for compressing and decompressing + data, + + using Facebook''s Zstandard (or zstd as short name) algorithm. + + + The API style is similar to Python''s bz2/lzma/zlib modules.' + license: Not confirmed + name: pyzstd + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.16.2'']' + url: https://github.com/Rogdham/pyzstd +--- +# pyzstd + + +Pyzstd module provides classes and functions for compressing and decompressing data, +using Facebook's Zstandard (or zstd as short name) algorithm. + +The API style is similar to Python's bz2/lzma/zlib modules. + +homepage: [https://github.com/Rogdham/pyzstd](https://github.com/Rogdham/pyzstd) + +## Available installations + + +|pyzstd version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.16.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`pyzstd/0.16.2-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/qrupdate.md b/docs/available_software/detail/qrupdate.md index 05ff172eb1..bcf414ebcf 100644 --- a/docs/available_software/detail/qrupdate.md +++ b/docs/available_software/detail/qrupdate.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''qrupdate/1.1.2-GCCcore-12.3.0'']' + softwareVersion: '[''1.1.2'']' url: https://sourceforge.net/projects/qrupdate/ --- - -qrupdate -======== +# qrupdate qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions. -https://sourceforge.net/projects/qrupdate/ -# Available modules - - -The overview below shows which qrupdate installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using qrupdate, load one of these modules using a `module load` command like: +homepage: [https://sourceforge.net/projects/qrupdate/](https://sourceforge.net/projects/qrupdate/) -```shell -module load qrupdate/1.1.2-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|qrupdate/1.1.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|qrupdate version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.1.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`qrupdate/1.1.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/re2c.md b/docs/available_software/detail/re2c.md index 04e3f236bd..c70fcbcb25 100644 --- a/docs/available_software/detail/re2c.md +++ b/docs/available_software/detail/re2c.md @@ -1,15 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication description: 're2c is a free and open-source lexer generator for C and C++. Its - main goal is generatingfast lexers: at least as fast as their reasonably optimized - hand-coded counterparts. Instead of usingtraditional table-driven approach, re2c - encodes the generated finite state automata directly in the formof conditional - jumps and comparisons.' + main goal is generating + + fast lexers: at least as fast as their reasonably optimized hand-coded counterparts. + Instead of using + + traditional table-driven approach, re2c encodes the generated finite state automata + directly in the form + + of conditional jumps and comparisons.' license: Not confirmed name: re2c offers: @@ -28,32 +31,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''re2c/3.0-GCCcore-12.2.0'', ''re2c/3.1-GCCcore-12.3.0'', ''re2c/3.1-GCCcore-13.2.0'']' + softwareVersion: '[''4.3'', ''4.2'', ''3.1'', ''3.0'']' url: https://re2c.org --- - -re2c -==== - - -re2c is a free and open-source lexer generator for C and C++. Its main goal is generatingfast lexers: at least as fast as their reasonably optimized hand-coded counterparts. Instead of usingtraditional table-driven approach, re2c encodes the generated finite state automata directly in the formof conditional jumps and comparisons. - -https://re2c.org -# Available modules +# re2c -The overview below shows which re2c installations are available per target architecture in EESSI, ordered based on software version (new to old). +re2c is a free and open-source lexer generator for C and C++. Its main goal is generating +fast lexers: at least as fast as their reasonably optimized hand-coded counterparts. Instead of using +traditional table-driven approach, re2c encodes the generated finite state automata directly in the form +of conditional jumps and comparisons. -To start using re2c, load one of these modules using a `module load` command like: +homepage: [https://re2c.org](https://re2c.org) -```shell -module load re2c/3.1-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|re2c/3.1-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|re2c/3.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|re2c/3.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|re2c version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`re2c/4.3-GCCcore-14.3.0`| +|4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`re2c/4.2-GCCcore-14.2.0`| +|3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`re2c/3.1-GCCcore-13.3.0`| +|3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`re2c/3.1-GCCcore-13.2.0`| +|3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`re2c/3.1-GCCcore-12.3.0`| +|3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`re2c/3.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/redis-py.md b/docs/available_software/detail/redis-py.md index 9d1b19d8e5..33bc1f2e8e 100644 --- a/docs/available_software/detail/redis-py.md +++ b/docs/available_software/detail/redis-py.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,40 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''redis-py/5.0.1-GCCcore-12.3.0'']' + softwareVersion: '[''5.1.1'', ''5.0.1'']' url: https://github.com/redis/redis-py --- - -redis-py -======== +# redis-py The Python interface to the Redis key-value store. -https://github.com/redis/redis-py -# Available modules +homepage: [https://github.com/redis/redis-py](https://github.com/redis/redis-py) + +## Available installations + +|redis-py version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.1.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`redis-py/5.1.1-GCCcore-13.3.0`| +|5.0.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`redis-py/5.0.1-GCCcore-12.3.0`| -The overview below shows which redis-py installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using redis-py, load one of these modules using a `module load` command like: +Overview of extensions included in redis-py installations -```shell -module load redis-py/5.0.1-GCCcore-12.3.0 -``` -*(This data was automatically generated on {{ generated_time }})* +### async-timeout -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|redis-py/5.0.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`async-timeout` version|redis-py modules that include it| +| --- | --- | +|4.0.3|`redis-py/5.1.1-GCCcore-13.3.0`
`redis-py/5.0.1-GCCcore-12.3.0`| -### redis-py/5.0.1-GCCcore-12.3.0 +### redis-py -This is a list of extensions included in the module: -async-timeout-4.0.3, redis-py-5.0.1 \ No newline at end of file +|`redis-py` version|redis-py modules that include it| +| --- | --- | +|5.1.1|`redis-py/5.1.1-GCCcore-13.3.0`| +|5.0.1|`redis-py/5.0.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/robin-map.md b/docs/available_software/detail/robin-map.md new file mode 100644 index 0000000000..f304fb6e41 --- /dev/null +++ b/docs/available_software/detail/robin-map.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'robin-map is a C++ implementation of a fast and memory efficient hash + table. + + It is based on Robin Hood hashing with backward shift deletion.' + license: Not confirmed + name: robin-map + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.3.0'']' + url: https://github.com/Tessil/robin-map +--- +# robin-map + + +robin-map is a C++ implementation of a fast and memory efficient hash table. +It is based on Robin Hood hashing with backward shift deletion. + +homepage: [https://github.com/Tessil/robin-map](https://github.com/Tessil/robin-map) + +## Available installations + + +|robin-map version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`robin-map/1.3.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/rpy2.md b/docs/available_software/detail/rpy2.md index 9f45a45b13..efe9f291fe 100644 --- a/docs/available_software/detail/rpy2.md +++ b/docs/available_software/detail/rpy2.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,52 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''rpy2/3.5.15-foss-2023a'']' + softwareVersion: '[''3.5.15'']' url: https://rpy2.github.io --- - -rpy2 -==== +# rpy2 rpy2 is an interface to R running embedded in a Python process. -https://rpy2.github.io -# Available modules +homepage: [https://rpy2.github.io](https://rpy2.github.io) + +## Available installations + + +|rpy2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.5.15|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`rpy2/3.5.15-foss-2023a`| + +## Extensions + +Overview of extensions included in rpy2 installations + + +### coverage + +|`coverage` version|rpy2 modules that include it| +| --- | --- | +|7.4.3|`rpy2/3.5.15-foss-2023a`| -The overview below shows which rpy2 installations are available per target architecture in EESSI, ordered based on software version (new to old). +### pytest-cov -To start using rpy2, load one of these modules using a `module load` command like: -```shell -module load rpy2/3.5.15-foss-2023a -``` +|`pytest-cov` version|rpy2 modules that include it| +| --- | --- | +|4.1.0|`rpy2/3.5.15-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### rpy2 -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|rpy2/3.5.15-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`rpy2` version|rpy2 modules that include it| +| --- | --- | +|3.5.15|`rpy2/3.5.15-foss-2023a`| -### rpy2/3.5.15-foss-2023a +### tzlocal -This is a list of extensions included in the module: -coverage-7.4.3, pytest-cov-4.1.0, rpy2-3.5.15, tzlocal-5.2 \ No newline at end of file +|`tzlocal` version|rpy2 modules that include it| +| --- | --- | +|5.2|`rpy2/3.5.15-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/ruamel.yaml.md b/docs/available_software/detail/ruamel.yaml.md index 9c7be3a17f..73828247a8 100644 --- a/docs/available_software/detail/ruamel.yaml.md +++ b/docs/available_software/detail/ruamel.yaml.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,44 +22,90 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''ruamel.yaml/0.17.32-GCCcore-12.3.0'', ''ruamel.yaml/0.18.6-GCCcore-13.2.0'']' + softwareVersion: '[''0.18.14'', ''0.18.6'', ''0.17.32'']' url: https://sourceforge.net/projects/ruamel-yaml --- - -ruamel.yaml -=========== +# ruamel.yaml ruamel.yaml is a YAML 1.2 loader/dumper package for Python. -https://sourceforge.net/projects/ruamel-yaml -# Available modules +homepage: [https://sourceforge.net/projects/ruamel-yaml](https://sourceforge.net/projects/ruamel-yaml) + +## Available installations + + +|ruamel.yaml version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.18.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ruamel.yaml/0.18.14-GCCcore-14.3.0`| +|0.18.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`ruamel.yaml/0.18.6-GCCcore-13.3.0`| +|0.18.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ruamel.yaml/0.18.6-GCCcore-13.2.0`| +|0.17.32|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ruamel.yaml/0.17.32-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in ruamel.yaml installations + + +### configobj + + +|`configobj` version|ruamel.yaml modules that include it| +| --- | --- | +|5.0.9|`ruamel.yaml/0.18.14-GCCcore-14.3.0`| +|5.0.8|`ruamel.yaml/0.18.6-GCCcore-13.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.2.0`
`ruamel.yaml/0.17.32-GCCcore-12.3.0`| + +### lz4 + + +|`lz4` version|ruamel.yaml modules that include it| +| --- | --- | +|4.4.4|`ruamel.yaml/0.18.14-GCCcore-14.3.0`| +|4.3.3|`ruamel.yaml/0.18.6-GCCcore-13.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.2.0`| +|4.3.2|`ruamel.yaml/0.17.32-GCCcore-12.3.0`| + +### ruamel.yaml + + +|`ruamel.yaml` version|ruamel.yaml modules that include it| +| --- | --- | +|0.18.14|`ruamel.yaml/0.18.14-GCCcore-14.3.0`| +|0.18.6|`ruamel.yaml/0.18.6-GCCcore-13.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.2.0`| +|0.17.32|`ruamel.yaml/0.17.32-GCCcore-12.3.0`| + +### ruamel.yaml.base + +|`ruamel.yaml.base` version|ruamel.yaml modules that include it| +| --- | --- | +|0.3.2|`ruamel.yaml/0.18.14-GCCcore-14.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.2.0`
`ruamel.yaml/0.17.32-GCCcore-12.3.0`| -The overview below shows which ruamel.yaml installations are available per target architecture in EESSI, ordered based on software version (new to old). +### ruamel.yaml.clib -To start using ruamel.yaml, load one of these modules using a `module load` command like: -```shell -module load ruamel.yaml/0.18.6-GCCcore-13.2.0 -``` +|`ruamel.yaml.clib` version|ruamel.yaml modules that include it| +| --- | --- | +|0.2.12|`ruamel.yaml/0.18.14-GCCcore-14.3.0`| +|0.2.8|`ruamel.yaml/0.18.6-GCCcore-13.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.2.0`| +|0.2.7|`ruamel.yaml/0.17.32-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### ruamel.yaml.cmd -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|ruamel.yaml/0.18.6-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|ruamel.yaml/0.17.32-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`ruamel.yaml.cmd` version|ruamel.yaml modules that include it| +| --- | --- | +|0.6.5|`ruamel.yaml/0.18.14-GCCcore-14.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.2.0`
`ruamel.yaml/0.17.32-GCCcore-12.3.0`| -### ruamel.yaml/0.18.6-GCCcore-13.2.0 +### ruamel.yaml.convert -This is a list of extensions included in the module: -configobj-5.0.8, lz4-4.3.3, ruamel.yaml-0.18.6, ruamel.yaml.base-0.3.2, ruamel.yaml.clib-0.2.8, ruamel.yaml.cmd-0.6.5, ruamel.yaml.convert-0.3.2, ruamel.yaml.jinja2-0.2.7 +|`ruamel.yaml.convert` version|ruamel.yaml modules that include it| +| --- | --- | +|0.3.2|`ruamel.yaml/0.18.14-GCCcore-14.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.2.0`
`ruamel.yaml/0.17.32-GCCcore-12.3.0`| -### ruamel.yaml/0.17.32-GCCcore-12.3.0 +### ruamel.yaml.jinja2 -This is a list of extensions included in the module: -configobj-5.0.8, lz4-4.3.2, ruamel.yaml-0.17.32, ruamel.yaml.base-0.3.2, ruamel.yaml.clib-0.2.7, ruamel.yaml.cmd-0.6.5, ruamel.yaml.convert-0.3.2 \ No newline at end of file +|`ruamel.yaml.jinja2` version|ruamel.yaml modules that include it| +| --- | --- | +|0.2.7|`ruamel.yaml/0.18.14-GCCcore-14.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.3.0`
`ruamel.yaml/0.18.6-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/scCODA.md b/docs/available_software/detail/scCODA.md index 5808e728fd..e7ab845eed 100644 --- a/docs/available_software/detail/scCODA.md +++ b/docs/available_software/detail/scCODA.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: scCODA allows for identification of compositional changes in high-throughput - sequencing count data,especially cell compositions from scRNA-seq. + description: 'scCODA allows for identification of compositional changes in high-throughput + sequencing count data, + + especially cell compositions from scRNA-seq.' license: Not confirmed name: scCODA offers: @@ -25,37 +25,32 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''scCODA/0.1.9-foss-2023a'']' + softwareVersion: '[''0.1.9'']' url: https://github.com/theislab/scCODA --- +# scCODA -scCODA -====== - - -scCODA allows for identification of compositional changes in high-throughput sequencing count data,especially cell compositions from scRNA-seq. -https://github.com/theislab/scCODA -# Available modules +scCODA allows for identification of compositional changes in high-throughput sequencing count data, +especially cell compositions from scRNA-seq. +homepage: [https://github.com/theislab/scCODA](https://github.com/theislab/scCODA) -The overview below shows which scCODA installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using scCODA, load one of these modules using a `module load` command like: -```shell -module load scCODA/0.1.9-foss-2023a -``` +|scCODA version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.1.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scCODA/0.1.9-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|scCODA/0.1.9-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in scCODA installations -### scCODA/0.1.9-foss-2023a +### scCODA -This is a list of extensions included in the module: -scCODA-0.1.9 \ No newline at end of file +|`scCODA` version|scCODA modules that include it| +| --- | --- | +|0.1.9|`scCODA/0.1.9-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/scanpy.md b/docs/available_software/detail/scanpy.md index 5622472d01..1055476909 100644 --- a/docs/available_software/detail/scanpy.md +++ b/docs/available_software/detail/scanpy.md @@ -1,14 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Scanpy is a scalable toolkit for analyzing single-cell gene expression - data built jointly with anndata. It includes preprocessing, visualization, clustering, - trajectory inference and differential expression testing. The Python-based implementation - efficiently deals with datasets of more than one million cells. + description: "Scanpy is a scalable toolkit for analyzing single-cell gene expression\ + \ data built\n jointly with anndata. It includes preprocessing, visualization,\ + \ clustering, trajectory inference\n and differential expression testing. The\ + \ Python-based implementation efficiently deals with\n datasets of more than one\ + \ million cells.\n" license: Not confirmed name: scanpy offers: @@ -27,37 +26,77 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''scanpy/1.9.8-foss-2023a'']' + softwareVersion: '[''1.9.8'']' url: https://scanpy.readthedocs.io/en/stable/ --- +# scanpy -scanpy -====== +Scanpy is a scalable toolkit for analyzing single-cell gene expression data built + jointly with anndata. It includes preprocessing, visualization, clustering, trajectory inference + and differential expression testing. The Python-based implementation efficiently deals with + datasets of more than one million cells. -Scanpy is a scalable toolkit for analyzing single-cell gene expression data built jointly with anndata. It includes preprocessing, visualization, clustering, trajectory inference and differential expression testing. The Python-based implementation efficiently deals with datasets of more than one million cells. -https://scanpy.readthedocs.io/en/stable/ -# Available modules +homepage: [https://scanpy.readthedocs.io/en/stable/](https://scanpy.readthedocs.io/en/stable/) +## Available installations -The overview below shows which scanpy installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using scanpy, load one of these modules using a `module load` command like: +|scanpy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scanpy/1.9.8-foss-2023a`| -```shell -module load scanpy/1.9.8-foss-2023a -``` +## Extensions -*(This data was automatically generated on {{ generated_time }})* +Overview of extensions included in scanpy installations -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|scanpy/1.9.8-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### joblib -### scanpy/1.9.8-foss-2023a -This is a list of extensions included in the module: +|`joblib` version|scanpy modules that include it| +| --- | --- | +|1.3.2|`scanpy/1.9.8-foss-2023a`| -joblib-1.3.2, legacy_api_wrap-1.4, natsort-8.4.0, packaging-23.2, scanpy-1.9.8, session-info-1.0.0, stdlib_list-0.10.0 \ No newline at end of file +### legacy_api_wrap + + +|`legacy_api_wrap` version|scanpy modules that include it| +| --- | --- | +|1.4|`scanpy/1.9.8-foss-2023a`| + +### natsort + + +|`natsort` version|scanpy modules that include it| +| --- | --- | +|8.4.0|`scanpy/1.9.8-foss-2023a`| + +### packaging + + +|`packaging` version|scanpy modules that include it| +| --- | --- | +|23.2|`scanpy/1.9.8-foss-2023a`| + +### scanpy + + +|`scanpy` version|scanpy modules that include it| +| --- | --- | +|1.9.8|`scanpy/1.9.8-foss-2023a`| + +### session-info + + +|`session-info` version|scanpy modules that include it| +| --- | --- | +|1.0.0|`scanpy/1.9.8-foss-2023a`| + +### stdlib_list + + +|`stdlib_list` version|scanpy modules that include it| +| --- | --- | +|0.10.0|`scanpy/1.9.8-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/scikit-bio.md b/docs/available_software/detail/scikit-bio.md index 5b36cbc642..191c6029c1 100644 --- a/docs/available_software/detail/scikit-bio.md +++ b/docs/available_software/detail/scikit-bio.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: scikit-bio is an open-source, BSD-licensed Python 3 package providing - data structures, algorithmsand educational resources for bioinformatics. + description: 'scikit-bio is an open-source, BSD-licensed Python 3 package providing + data structures, algorithms + + and educational resources for bioinformatics.' license: Not confirmed name: scikit-bio offers: @@ -25,37 +25,64 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''scikit-bio/0.6.0-foss-2023a'']' + softwareVersion: '[''0.7.2'', ''0.7.1.post1'', ''0.6.0'']' url: http://scikit-bio.org --- +# scikit-bio + + +scikit-bio is an open-source, BSD-licensed Python 3 package providing data structures, algorithms +and educational resources for bioinformatics. + +homepage: [http://scikit-bio.org](http://scikit-bio.org) + +## Available installations + + +|scikit-bio version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.7.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-bio/0.7.2-foss-2025b`| +|0.7.1.post1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-bio/0.7.1.post1-foss-2025a`| +|0.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scikit-bio/0.6.0-foss-2023a`| + +## Extensions + +Overview of extensions included in scikit-bio installations + + +### array_api_compat -scikit-bio -========== +|`array_api_compat` version|scikit-bio modules that include it| +| --- | --- | +|1.13.0|`scikit-bio/0.7.2-foss-2025b`
`scikit-bio/0.7.1.post1-foss-2025a`| -scikit-bio is an open-source, BSD-licensed Python 3 package providing data structures, algorithmsand educational resources for bioinformatics. +### hdmedians -http://scikit-bio.org -# Available modules +|`hdmedians` version|scikit-bio modules that include it| +| --- | --- | +|0.14.2|`scikit-bio/0.6.0-foss-2023a`| -The overview below shows which scikit-bio installations are available per target architecture in EESSI, ordered based on software version (new to old). +### natsort -To start using scikit-bio, load one of these modules using a `module load` command like: -```shell -module load scikit-bio/0.6.0-foss-2023a -``` +|`natsort` version|scikit-bio modules that include it| +| --- | --- | +|8.4.0|`scikit-bio/0.7.2-foss-2025b`
`scikit-bio/0.7.1.post1-foss-2025a`
`scikit-bio/0.6.0-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### packaging -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|scikit-bio/0.6.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`packaging` version|scikit-bio modules that include it| +| --- | --- | +|25.0|`scikit-bio/0.7.1.post1-foss-2025a`| -### scikit-bio/0.6.0-foss-2023a +### scikit-bio -This is a list of extensions included in the module: -hdmedians-0.14.2, natsort-8.4.0, scikit-bio-0.6.0 \ No newline at end of file +|`scikit-bio` version|scikit-bio modules that include it| +| --- | --- | +|0.7.2|`scikit-bio/0.7.2-foss-2025b`| +|0.7.1.post1|`scikit-bio/0.7.1.post1-foss-2025a`| +|0.6.0|`scikit-bio/0.6.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/scikit-build-core.md b/docs/available_software/detail/scikit-build-core.md index 8ae367dd7d..1991817cff 100644 --- a/docs/available_software/detail/scikit-build-core.md +++ b/docs/available_software/detail/scikit-build-core.md @@ -1,13 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Scikit-build-core is a complete ground-up rewrite of scikit-build on - top ofmodern packaging APIs. It provides a bridge between CMake and the Python - buildsystem, allowing you to make Python modules with CMake. + description: 'Scikit-build-core is a complete ground-up rewrite of scikit-build + on top of + + modern packaging APIs. It provides a bridge between CMake and the Python build + + system, allowing you to make Python modules with CMake.' license: Not confirmed name: scikit-build-core offers: @@ -26,52 +27,59 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''scikit-build-core/0.5.0-GCCcore-12.3.0'', ''scikit-build-core/0.9.3-GCCcore-12.3.0'', - ''scikit-build-core/0.9.3-GCCcore-13.2.0'']' + softwareVersion: '[''0.11.5'', ''0.11.1'', ''0.10.7'', ''0.10.6'', ''0.9.3'', ''0.5.0'']' url: https://scikit-build.readthedocs.io/en/latest/ --- +# scikit-build-core -scikit-build-core -================= - - -Scikit-build-core is a complete ground-up rewrite of scikit-build on top ofmodern packaging APIs. It provides a bridge between CMake and the Python buildsystem, allowing you to make Python modules with CMake. -https://scikit-build.readthedocs.io/en/latest/ -# Available modules +Scikit-build-core is a complete ground-up rewrite of scikit-build on top of +modern packaging APIs. It provides a bridge between CMake and the Python build +system, allowing you to make Python modules with CMake. +homepage: [https://scikit-build.readthedocs.io/en/latest/](https://scikit-build.readthedocs.io/en/latest/) -The overview below shows which scikit-build-core installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using scikit-build-core, load one of these modules using a `module load` command like: -```shell -module load scikit-build-core/0.9.3-GCCcore-13.2.0 -``` +|scikit-build-core version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.11.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-build-core/0.11.5-GCCcore-14.3.0`| +|0.11.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-build-core/0.11.1-GCCcore-14.2.0`| +|0.10.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scikit-build-core/0.10.7-GCCcore-13.2.0`| +|0.10.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-build-core/0.10.6-GCCcore-13.3.0`| +|0.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scikit-build-core/0.9.3-GCCcore-13.2.0`| +|0.9.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scikit-build-core/0.9.3-GCCcore-12.3.0`| +|0.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scikit-build-core/0.5.0-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|scikit-build-core/0.9.3-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|scikit-build-core/0.9.3-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|scikit-build-core/0.5.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in scikit-build-core installations -### scikit-build-core/0.9.3-GCCcore-13.2.0 +### pathspec -This is a list of extensions included in the module: -pyproject-metadata-0.8.0, scikit_build_core-0.9.3 +|`pathspec` version|scikit-build-core modules that include it| +| --- | --- | +|0.12.1|`scikit-build-core/0.11.5-GCCcore-14.3.0`
`scikit-build-core/0.11.1-GCCcore-14.2.0`| -### scikit-build-core/0.9.3-GCCcore-12.3.0 +### pyproject-metadata -This is a list of extensions included in the module: -pyproject-metadata-0.8.0, scikit_build_core-0.9.3 +|`pyproject-metadata` version|scikit-build-core modules that include it| +| --- | --- | +|0.9.1|`scikit-build-core/0.11.5-GCCcore-14.3.0`
`scikit-build-core/0.11.1-GCCcore-14.2.0`| +|0.8.0|`scikit-build-core/0.10.7-GCCcore-13.2.0`
`scikit-build-core/0.9.3-GCCcore-13.2.0`
`scikit-build-core/0.9.3-GCCcore-12.3.0`
`scikit-build-core/0.5.0-GCCcore-12.3.0`| -### scikit-build-core/0.5.0-GCCcore-12.3.0 +### scikit_build_core -This is a list of extensions included in the module: -pyproject-metadata-0.8.0, scikit_build_core-0.5.0 \ No newline at end of file +|`scikit_build_core` version|scikit-build-core modules that include it| +| --- | --- | +|0.11.5|`scikit-build-core/0.11.5-GCCcore-14.3.0`| +|0.11.1|`scikit-build-core/0.11.1-GCCcore-14.2.0`| +|0.10.7|`scikit-build-core/0.10.7-GCCcore-13.2.0`| +|0.10.6|`scikit-build-core/0.10.6-GCCcore-13.3.0`| +|0.9.3|`scikit-build-core/0.9.3-GCCcore-13.2.0`
`scikit-build-core/0.9.3-GCCcore-12.3.0`| +|0.5.0|`scikit-build-core/0.5.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/scikit-build.md b/docs/available_software/detail/scikit-build.md index e79fa93ab2..c016610f8d 100644 --- a/docs/available_software/detail/scikit-build.md +++ b/docs/available_software/detail/scikit-build.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Scikit-Build, or skbuild, is an improved build system generatorfor - CPython C/C++/Fortran/Cython extensions. + description: 'Scikit-Build, or skbuild, is an improved build system generator + + for CPython C/C++/Fortran/Cython extensions.' license: Not confirmed name: scikit-build offers: @@ -25,44 +24,66 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''scikit-build/0.17.6-GCCcore-12.3.0'', ''scikit-build/0.17.6-GCCcore-13.2.0'']' + softwareVersion: '[''0.18.1'', ''0.17.6'']' url: https://scikit-build.readthedocs.io/en/latest --- +# scikit-build + + +Scikit-Build, or skbuild, is an improved build system generator +for CPython C/C++/Fortran/Cython extensions. + +homepage: [https://scikit-build.readthedocs.io/en/latest](https://scikit-build.readthedocs.io/en/latest) + +## Available installations + + +|scikit-build version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.18.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-build/0.18.1-GCCcore-14.3.0`| +|0.18.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-build/0.18.1-GCCcore-14.2.0`| +|0.17.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-build/0.17.6-GCCcore-13.3.0`| +|0.17.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scikit-build/0.17.6-GCCcore-13.2.0`| +|0.17.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scikit-build/0.17.6-GCCcore-12.3.0`| + +## Extensions -scikit-build -============ +Overview of extensions included in scikit-build installations -Scikit-Build, or skbuild, is an improved build system generatorfor CPython C/C++/Fortran/Cython extensions. +### distro -https://scikit-build.readthedocs.io/en/latest -# Available modules +|`distro` version|scikit-build modules that include it| +| --- | --- | +|1.9.0|`scikit-build/0.18.1-GCCcore-14.3.0`
`scikit-build/0.18.1-GCCcore-14.2.0`| +|1.8.0|`scikit-build/0.17.6-GCCcore-13.3.0`
`scikit-build/0.17.6-GCCcore-13.2.0`
`scikit-build/0.17.6-GCCcore-12.3.0`| -The overview below shows which scikit-build installations are available per target architecture in EESSI, ordered based on software version (new to old). +### packaging -To start using scikit-build, load one of these modules using a `module load` command like: -```shell -module load scikit-build/0.17.6-GCCcore-13.2.0 -``` +|`packaging` version|scikit-build modules that include it| +| --- | --- | +|23.1|`scikit-build/0.17.6-GCCcore-13.2.0`
`scikit-build/0.17.6-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### pyproject-metadata -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|scikit-build/0.17.6-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|scikit-build/0.17.6-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`pyproject-metadata` version|scikit-build modules that include it| +| --- | --- | +|0.9.1|`scikit-build/0.18.1-GCCcore-14.3.0`
`scikit-build/0.18.1-GCCcore-14.2.0`| -### scikit-build/0.17.6-GCCcore-13.2.0 +### scikit-build -This is a list of extensions included in the module: -distro-1.8.0, packaging-23.1, scikit_build-0.17.6 +|`scikit-build` version|scikit-build modules that include it| +| --- | --- | +|0.18.1|`scikit-build/0.18.1-GCCcore-14.3.0`
`scikit-build/0.18.1-GCCcore-14.2.0`| +|0.17.6|`scikit-build/0.17.6-GCCcore-13.3.0`| -### scikit-build/0.17.6-GCCcore-12.3.0 +### scikit_build -This is a list of extensions included in the module: -distro-1.8.0, packaging-23.1, scikit_build-0.17.6 \ No newline at end of file +|`scikit_build` version|scikit-build modules that include it| +| --- | --- | +|0.17.6|`scikit-build/0.17.6-GCCcore-13.2.0`
`scikit-build/0.17.6-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/scikit-image.md b/docs/available_software/detail/scikit-image.md new file mode 100644 index 0000000000..b860d5b9bb --- /dev/null +++ b/docs/available_software/detail/scikit-image.md @@ -0,0 +1,75 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: scikit-image is a collection of algorithms for image processing. + license: Not confirmed + name: scikit-image + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.25.0'']' + url: https://scikit-image.org/ +--- +# scikit-image + + +scikit-image is a collection of algorithms for image processing. + +homepage: [https://scikit-image.org/](https://scikit-image.org/) + +## Available installations + + +|scikit-image version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.25.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-image/0.25.0-foss-2025a`| +|0.25.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-image/0.25.0-foss-2024a`| + +## Extensions + +Overview of extensions included in scikit-image installations + + +### imread + + +|`imread` version|scikit-image modules that include it| +| --- | --- | +|0.7.6|`scikit-image/0.25.0-foss-2025a`
`scikit-image/0.25.0-foss-2024a`| + +### lazy_loader + + +|`lazy_loader` version|scikit-image modules that include it| +| --- | --- | +|0.4|`scikit-image/0.25.0-foss-2025a`
`scikit-image/0.25.0-foss-2024a`| + +### scikit-image + + +|`scikit-image` version|scikit-image modules that include it| +| --- | --- | +|0.25.0|`scikit-image/0.25.0-foss-2025a`
`scikit-image/0.25.0-foss-2024a`| + +### tifffile + + +|`tifffile` version|scikit-image modules that include it| +| --- | --- | +|2025.10.16|`scikit-image/0.25.0-foss-2025a`| +|2024.12.12|`scikit-image/0.25.0-foss-2024a`| \ No newline at end of file diff --git a/docs/available_software/detail/scikit-learn.md b/docs/available_software/detail/scikit-learn.md index 7e1ad1e0a3..6bfa73d0e1 100644 --- a/docs/available_software/detail/scikit-learn.md +++ b/docs/available_software/detail/scikit-learn.md @@ -1,15 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Scikit-learn integrates machine learning algorithms in the tightly-knit - scientific Python world,building upon numpy, scipy, and matplotlib. As a machine-learning - module,it provides versatile tools for data mining and analysis in any field of - science and engineering.It strives to be simple and efficient, accessible to everybody, - and reusable in various contexts. + description: 'Scikit-learn integrates machine learning algorithms in the tightly-knit + scientific Python world, + + building upon numpy, scipy, and matplotlib. As a machine-learning module, + + it provides versatile tools for data mining and analysis in any field of science + and engineering. + + It strives to be simple and efficient, accessible to everybody, and reusable in + various contexts.' license: Not confirmed name: scikit-learn offers: @@ -28,44 +31,49 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''scikit-learn/1.3.1-gfbf-2023a'', ''scikit-learn/1.4.0-gfbf-2023b'']' + softwareVersion: '[''1.7.1'', ''1.7.0'', ''1.5.2'', ''1.4.0'', ''1.3.1'']' url: https://scikit-learn.org/stable/index.html --- +# scikit-learn -scikit-learn -============ - - -Scikit-learn integrates machine learning algorithms in the tightly-knit scientific Python world,building upon numpy, scipy, and matplotlib. As a machine-learning module,it provides versatile tools for data mining and analysis in any field of science and engineering.It strives to be simple and efficient, accessible to everybody, and reusable in various contexts. -https://scikit-learn.org/stable/index.html -# Available modules +Scikit-learn integrates machine learning algorithms in the tightly-knit scientific Python world, +building upon numpy, scipy, and matplotlib. As a machine-learning module, +it provides versatile tools for data mining and analysis in any field of science and engineering. +It strives to be simple and efficient, accessible to everybody, and reusable in various contexts. +homepage: [https://scikit-learn.org/stable/index.html](https://scikit-learn.org/stable/index.html) -The overview below shows which scikit-learn installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using scikit-learn, load one of these modules using a `module load` command like: -```shell -module load scikit-learn/1.4.0-gfbf-2023b -``` +|scikit-learn version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.7.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-learn/1.7.1-gfbf-2025b`| +|1.7.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-learn/1.7.0-gfbf-2025a`| +|1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`scikit-learn/1.5.2-gfbf-2024a`| +|1.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scikit-learn/1.4.0-gfbf-2023b`| +|1.3.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`scikit-learn/1.3.1-gfbf-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|scikit-learn/1.4.0-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|scikit-learn/1.3.1-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in scikit-learn installations -### scikit-learn/1.4.0-gfbf-2023b +### scikit-learn -This is a list of extensions included in the module: -scikit-learn-1.4.0, sklearn-0.0 +|`scikit-learn` version|scikit-learn modules that include it| +| --- | --- | +|1.7.1|`scikit-learn/1.7.1-gfbf-2025b`| +|1.7.0|`scikit-learn/1.7.0-gfbf-2025a`| +|1.5.2|`scikit-learn/1.5.2-gfbf-2024a`| +|1.4.0|`scikit-learn/1.4.0-gfbf-2023b`| +|1.3.1|`scikit-learn/1.3.1-gfbf-2023a`| -### scikit-learn/1.3.1-gfbf-2023a +### sklearn -This is a list of extensions included in the module: -scikit-learn-1.3.1, sklearn-0.0 \ No newline at end of file +|`sklearn` version|scikit-learn modules that include it| +| --- | --- | +|0.0|`scikit-learn/1.7.1-gfbf-2025b`
`scikit-learn/1.7.0-gfbf-2025a`
`scikit-learn/1.5.2-gfbf-2024a`
`scikit-learn/1.4.0-gfbf-2023b`
`scikit-learn/1.3.1-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/seatd.md b/docs/available_software/detail/seatd.md new file mode 100644 index 0000000000..e642661806 --- /dev/null +++ b/docs/available_software/detail/seatd.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: A minimal seat management daemon, and a universal seat management library. + license: Not confirmed + name: seatd + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.9.2'']' + url: https://sr.ht/~kennylevinsen/seatd/ +--- +# seatd + + +A minimal seat management daemon, and a universal seat management library. + +homepage: [https://sr.ht/~kennylevinsen/seatd/](https://sr.ht/~kennylevinsen/seatd/) + +## Available installations + + +|seatd version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.9.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`seatd/0.9.2-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/setuptools-rust.md b/docs/available_software/detail/setuptools-rust.md index 0b7bf98965..9a785b73f6 100644 --- a/docs/available_software/detail/setuptools-rust.md +++ b/docs/available_software/detail/setuptools-rust.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: setuptools-rust is a plugin for setuptools to build Rust Python extensionsimplemented - with PyO3 or rust-cpython. + description: 'setuptools-rust is a plugin for setuptools to build Rust Python extensions + + implemented with PyO3 or rust-cpython.' license: Not confirmed name: setuptools-rust offers: @@ -25,44 +24,69 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''setuptools-rust/1.6.0-GCCcore-12.3.0'', ''setuptools-rust/1.8.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.11.0'', ''1.9.0'', ''1.8.0'', ''1.6.0'']' url: https://github.com/PyO3/setuptools-rust --- +# setuptools-rust + + +setuptools-rust is a plugin for setuptools to build Rust Python extensions +implemented with PyO3 or rust-cpython. + +homepage: [https://github.com/PyO3/setuptools-rust](https://github.com/PyO3/setuptools-rust) + +## Available installations + + +|setuptools-rust version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.11.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`setuptools-rust/1.11.0-GCCcore-14.3.0`| +|1.11.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`setuptools-rust/1.11.0-GCCcore-14.2.0`| +|1.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`setuptools-rust/1.9.0-GCCcore-13.3.0`| +|1.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`setuptools-rust/1.8.0-GCCcore-13.2.0`| +|1.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`setuptools-rust/1.6.0-GCCcore-12.3.0`| + +## Extensions -setuptools-rust -=============== +Overview of extensions included in setuptools-rust installations -setuptools-rust is a plugin for setuptools to build Rust Python extensionsimplemented with PyO3 or rust-cpython. +### semantic-version -https://github.com/PyO3/setuptools-rust -# Available modules +|`semantic-version` version|setuptools-rust modules that include it| +| --- | --- | +|2.10.0|`setuptools-rust/1.11.0-GCCcore-14.3.0`
`setuptools-rust/1.11.0-GCCcore-14.2.0`
`setuptools-rust/1.9.0-GCCcore-13.3.0`| -The overview below shows which setuptools-rust installations are available per target architecture in EESSI, ordered based on software version (new to old). +### semantic_version -To start using setuptools-rust, load one of these modules using a `module load` command like: -```shell -module load setuptools-rust/1.8.0-GCCcore-13.2.0 -``` +|`semantic_version` version|setuptools-rust modules that include it| +| --- | --- | +|2.10.0|`setuptools-rust/1.8.0-GCCcore-13.2.0`
`setuptools-rust/1.6.0-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### setuptools-rust -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|setuptools-rust/1.8.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|setuptools-rust/1.6.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`setuptools-rust` version|setuptools-rust modules that include it| +| --- | --- | +|1.11.0|`setuptools-rust/1.11.0-GCCcore-14.3.0`
`setuptools-rust/1.11.0-GCCcore-14.2.0`| +|1.9.0|`setuptools-rust/1.9.0-GCCcore-13.3.0`| +|1.8.0|`setuptools-rust/1.8.0-GCCcore-13.2.0`| +|1.6.0|`setuptools-rust/1.6.0-GCCcore-12.3.0`| -### setuptools-rust/1.8.0-GCCcore-13.2.0 +### typing-extensions -This is a list of extensions included in the module: -semantic_version-2.10.0, setuptools-rust-1.8.0, typing_extensions-4.8.0 +|`typing-extensions` version|setuptools-rust modules that include it| +| --- | --- | +|4.14.1|`setuptools-rust/1.11.0-GCCcore-14.3.0`| +|4.12.2|`setuptools-rust/1.11.0-GCCcore-14.2.0`
`setuptools-rust/1.9.0-GCCcore-13.3.0`| -### setuptools-rust/1.6.0-GCCcore-12.3.0 +### typing_extensions -This is a list of extensions included in the module: -semantic_version-2.10.0, setuptools-rust-1.6.0, typing_extensions-4.6.3 \ No newline at end of file +|`typing_extensions` version|setuptools-rust modules that include it| +| --- | --- | +|4.8.0|`setuptools-rust/1.8.0-GCCcore-13.2.0`| +|4.6.3|`setuptools-rust/1.6.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/setuptools.md b/docs/available_software/detail/setuptools.md index 6f057c9b84..517a049399 100644 --- a/docs/available_software/detail/setuptools.md +++ b/docs/available_software/detail/setuptools.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,38 +22,41 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''setuptools/64.0.3-GCCcore-12.2.0'', ''setuptools/80.9.0-GCCcore-12.3.0'']' + softwareVersion: '[''80.9.0'', ''64.0.3'']' url: https://pypi.org/project/setuptools --- - -setuptools -========== +# setuptools Easily download, build, install, upgrade, and uninstall Python packages -https://pypi.org/project/setuptools -# Available modules +homepage: [https://pypi.org/project/setuptools](https://pypi.org/project/setuptools) + +## Available installations + +|setuptools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|80.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`setuptools/80.9.0-GCCcore-14.2.0`| +|80.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`setuptools/80.9.0-GCCcore-13.2.0`| +|80.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`setuptools/80.9.0-GCCcore-12.3.0`| +|64.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`setuptools/64.0.3-GCCcore-12.2.0`| -The overview below shows which setuptools installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using setuptools, load one of these modules using a `module load` command like: +Overview of extensions included in setuptools installations -```shell -module load setuptools/80.9.0-GCCcore-12.3.0 -``` -*(This data was automatically generated on {{ generated_time }})* +### packaging -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|setuptools/80.9.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|setuptools/64.0.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`packaging` version|setuptools modules that include it| +| --- | --- | +|25.0|`setuptools/80.9.0-GCCcore-14.2.0`
`setuptools/80.9.0-GCCcore-13.2.0`
`setuptools/80.9.0-GCCcore-12.3.0`| -### setuptools/80.9.0-GCCcore-12.3.0 +### setuptools -This is a list of extensions included in the module: -packaging-25.0, setuptools-80.9.0 \ No newline at end of file +|`setuptools` version|setuptools modules that include it| +| --- | --- | +|80.9.0|`setuptools/80.9.0-GCCcore-14.2.0`
`setuptools/80.9.0-GCCcore-13.2.0`
`setuptools/80.9.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/shared-mime-info.md b/docs/available_software/detail/shared-mime-info.md new file mode 100644 index 0000000000..566c52ff20 --- /dev/null +++ b/docs/available_software/detail/shared-mime-info.md @@ -0,0 +1,53 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'The shared-mime-info package contains: + + The core database of common MIME types, their file extensions and icon names. + + The update-mime-database command, used to extend the DB and install a new MIME + data. + + The freedesktop.org shared MIME database spec. + + It is used by GLib, GNOME, KDE, XFCE and many others.' + license: Not confirmed + name: shared-mime-info + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.4'']' + url: https://gitlab.freedesktop.org/xdg/shared-mime-info +--- +# shared-mime-info + + +The shared-mime-info package contains: +The core database of common MIME types, their file extensions and icon names. +The update-mime-database command, used to extend the DB and install a new MIME data. +The freedesktop.org shared MIME database spec. +It is used by GLib, GNOME, KDE, XFCE and many others. + +homepage: [https://gitlab.freedesktop.org/xdg/shared-mime-info](https://gitlab.freedesktop.org/xdg/shared-mime-info) + +## Available installations + + +|shared-mime-info version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`shared-mime-info/2.4-GCCcore-14.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/siscone.md b/docs/available_software/detail/siscone.md index 6b89589e5b..7c3e253d62 100644 --- a/docs/available_software/detail/siscone.md +++ b/docs/available_software/detail/siscone.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''siscone/3.0.6-GCCcore-12.3.0'']' + softwareVersion: '[''3.0.6'']' url: https://siscone.hepforge.org/ --- - -siscone -======= +# siscone Hadron Seedless Infrared-Safe Cone jet algorithm -https://siscone.hepforge.org/ -# Available modules - - -The overview below shows which siscone installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using siscone, load one of these modules using a `module load` command like: +homepage: [https://siscone.hepforge.org/](https://siscone.hepforge.org/) -```shell -module load siscone/3.0.6-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|siscone/3.0.6-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|siscone version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.0.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`siscone/3.0.6-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/slepc4py.md b/docs/available_software/detail/slepc4py.md new file mode 100644 index 0000000000..091587c105 --- /dev/null +++ b/docs/available_software/detail/slepc4py.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Python bindings for SLEPc, the Scalable Library for Eigenvalue Problem + Computations. + license: Not confirmed + name: slepc4py + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''3.22.2'']' + url: https://bitbucket.org/slepc/slepc4py +--- +# slepc4py + + +Python bindings for SLEPc, the Scalable Library for Eigenvalue Problem Computations. + +homepage: [https://bitbucket.org/slepc/slepc4py](https://bitbucket.org/slepc/slepc4py) + +## Available installations + + +|slepc4py version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.22.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`slepc4py/3.22.2-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/snakemake.md b/docs/available_software/detail/snakemake.md index c7b98df499..2e303dafc2 100644 --- a/docs/available_software/detail/snakemake.md +++ b/docs/available_software/detail/snakemake.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,44 +23,245 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''snakemake/8.4.2-foss-2023a'', ''snakemake/8.28.0-foss-2023b'']' + softwareVersion: '[''8.28.0'', ''8.4.2'']' url: https://snakemake.readthedocs.io --- - -snakemake -========= +# snakemake The Snakemake workflow management system is a tool to create reproducible and scalable data analyses. -https://snakemake.readthedocs.io -# Available modules +homepage: [https://snakemake.readthedocs.io](https://snakemake.readthedocs.io) + +## Available installations + + +|snakemake version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.28.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`snakemake/8.28.0-foss-2023b`| +|8.4.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`snakemake/8.4.2-foss-2023a`| + +## Extensions + +Overview of extensions included in snakemake installations + + +### argparse-dataclass + + +|`argparse-dataclass` version|snakemake modules that include it| +| --- | --- | +|2.0.0|`snakemake/8.28.0-foss-2023b`
`snakemake/8.4.2-foss-2023a`| + +### conda-inject + + +|`conda-inject` version|snakemake modules that include it| +| --- | --- | +|1.3.2|`snakemake/8.28.0-foss-2023b`| +|1.3.1|`snakemake/8.4.2-foss-2023a`| + +### ConfigArgParse + + +|`ConfigArgParse` version|snakemake modules that include it| +| --- | --- | +|1.7|`snakemake/8.28.0-foss-2023b`
`snakemake/8.4.2-foss-2023a`| + +### connection-pool + + +|`connection-pool` version|snakemake modules that include it| +| --- | --- | +|0.0.3|`snakemake/8.28.0-foss-2023b`
`snakemake/8.4.2-foss-2023a`| + +### datrie + + +|`datrie` version|snakemake modules that include it| +| --- | --- | +|0.8.2|`snakemake/8.28.0-foss-2023b`
`snakemake/8.4.2-foss-2023a`| + +### dpath + + +|`dpath` version|snakemake modules that include it| +| --- | --- | +|2.2.0|`snakemake/8.28.0-foss-2023b`| +|2.1.6|`snakemake/8.4.2-foss-2023a`| + +### fastjsonschema + + +|`fastjsonschema` version|snakemake modules that include it| +| --- | --- | +|2.19.1|`snakemake/8.28.0-foss-2023b`
`snakemake/8.4.2-foss-2023a`| + +### humanfriendly + + +|`humanfriendly` version|snakemake modules that include it| +| --- | --- | +|10.0|`snakemake/8.28.0-foss-2023b`
`snakemake/8.4.2-foss-2023a`| + +### immutables + + +|`immutables` version|snakemake modules that include it| +| --- | --- | +|0.21|`snakemake/8.28.0-foss-2023b`| +|0.20|`snakemake/8.4.2-foss-2023a`| + +### jupyter-core + + +|`jupyter-core` version|snakemake modules that include it| +| --- | --- | +|5.7.2|`snakemake/8.28.0-foss-2023b`| +|5.7.1|`snakemake/8.4.2-foss-2023a`| + +### nbformat + + +|`nbformat` version|snakemake modules that include it| +| --- | --- | +|5.10.4|`snakemake/8.28.0-foss-2023b`| +|5.9.2|`snakemake/8.4.2-foss-2023a`| + +### plac + + +|`plac` version|snakemake modules that include it| +| --- | --- | +|1.4.3|`snakemake/8.28.0-foss-2023b`| +|1.4.2|`snakemake/8.4.2-foss-2023a`| + +### reretry + + +|`reretry` version|snakemake modules that include it| +| --- | --- | +|0.11.8|`snakemake/8.28.0-foss-2023b`
`snakemake/8.4.2-foss-2023a`| + +### smart-open + + +|`smart-open` version|snakemake modules that include it| +| --- | --- | +|7.1.0|`snakemake/8.28.0-foss-2023b`| +|6.4.0|`snakemake/8.4.2-foss-2023a`| + +### snakemake + + +|`snakemake` version|snakemake modules that include it| +| --- | --- | +|8.28.0|`snakemake/8.28.0-foss-2023b`| +|8.4.2|`snakemake/8.4.2-foss-2023a`| + +### snakemake-executor-plugin-cluster-generic + + +|`snakemake-executor-plugin-cluster-generic` version|snakemake modules that include it| +| --- | --- | +|1.0.9|`snakemake/8.28.0-foss-2023b`| +|1.0.7|`snakemake/8.4.2-foss-2023a`| + +### snakemake-executor-plugin-cluster-sync + + +|`snakemake-executor-plugin-cluster-sync` version|snakemake modules that include it| +| --- | --- | +|0.1.4|`snakemake/8.28.0-foss-2023b`| +|0.1.3|`snakemake/8.4.2-foss-2023a`| + +### snakemake-executor-plugin-flux + + +|`snakemake-executor-plugin-flux` version|snakemake modules that include it| +| --- | --- | +|0.1.1|`snakemake/8.28.0-foss-2023b`| +|0.1.0|`snakemake/8.4.2-foss-2023a`| + +### snakemake-executor-plugin-slurm + + +|`snakemake-executor-plugin-slurm` version|snakemake modules that include it| +| --- | --- | +|0.12.0|`snakemake/8.28.0-foss-2023b`| +|0.2.1|`snakemake/8.4.2-foss-2023a`| + +### snakemake-executor-plugin-slurm-jobstep + + +|`snakemake-executor-plugin-slurm-jobstep` version|snakemake modules that include it| +| --- | --- | +|0.2.1|`snakemake/8.28.0-foss-2023b`| +|0.1.10|`snakemake/8.4.2-foss-2023a`| + +### snakemake-interface-common + + +|`snakemake-interface-common` version|snakemake modules that include it| +| --- | --- | +|1.17.4|`snakemake/8.28.0-foss-2023b`| +|1.15.2|`snakemake/8.4.2-foss-2023a`| + +### snakemake-interface-executor-plugins + + +|`snakemake-interface-executor-plugins` version|snakemake modules that include it| +| --- | --- | +|9.3.3|`snakemake/8.28.0-foss-2023b`| +|8.2.0|`snakemake/8.4.2-foss-2023a`| + +### snakemake-interface-report-plugins + + +|`snakemake-interface-report-plugins` version|snakemake modules that include it| +| --- | --- | +|1.1.0|`snakemake/8.28.0-foss-2023b`| + +### snakemake-interface-storage-plugins + + +|`snakemake-interface-storage-plugins` version|snakemake modules that include it| +| --- | --- | +|3.3.0|`snakemake/8.28.0-foss-2023b`| +|3.0.0|`snakemake/8.4.2-foss-2023a`| + +### stopit + +|`stopit` version|snakemake modules that include it| +| --- | --- | +|1.1.2|`snakemake/8.28.0-foss-2023b`
`snakemake/8.4.2-foss-2023a`| -The overview below shows which snakemake installations are available per target architecture in EESSI, ordered based on software version (new to old). +### throttler -To start using snakemake, load one of these modules using a `module load` command like: -```shell -module load snakemake/8.28.0-foss-2023b -``` +|`throttler` version|snakemake modules that include it| +| --- | --- | +|1.2.2|`snakemake/8.28.0-foss-2023b`
`snakemake/8.4.2-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### toposort -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|snakemake/8.28.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|snakemake/8.4.2-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`toposort` version|snakemake modules that include it| +| --- | --- | +|1.10|`snakemake/8.28.0-foss-2023b`
`snakemake/8.4.2-foss-2023a`| -### snakemake/8.28.0-foss-2023b +### wrapt -This is a list of extensions included in the module: -argparse-dataclass-2.0.0, conda-inject-1.3.2, ConfigArgParse-1.7, connection-pool-0.0.3, datrie-0.8.2, dpath-2.2.0, fastjsonschema-2.19.1, humanfriendly-10.0, immutables-0.21, jupyter-core-5.7.2, nbformat-5.10.4, plac-1.4.3, reretry-0.11.8, smart-open-7.1.0, snakemake-8.28.0, snakemake-executor-plugin-cluster-generic-1.0.9, snakemake-executor-plugin-cluster-sync-0.1.4, snakemake-executor-plugin-flux-0.1.1, snakemake-executor-plugin-slurm-0.12.0, snakemake-executor-plugin-slurm-jobstep-0.2.1, snakemake-interface-common-1.17.4, snakemake-interface-executor-plugins-9.3.3, snakemake-interface-report-plugins-1.1.0, snakemake-interface-storage-plugins-3.3.0, stopit-1.1.2, throttler-1.2.2, toposort-1.10, wrapt-1.16.0, yte-1.5.5 +|`wrapt` version|snakemake modules that include it| +| --- | --- | +|1.16.0|`snakemake/8.28.0-foss-2023b`| -### snakemake/8.4.2-foss-2023a +### yte -This is a list of extensions included in the module: -argparse-dataclass-2.0.0, conda-inject-1.3.1, ConfigArgParse-1.7, connection-pool-0.0.3, datrie-0.8.2, dpath-2.1.6, fastjsonschema-2.19.1, humanfriendly-10.0, immutables-0.20, jupyter-core-5.7.1, nbformat-5.9.2, plac-1.4.2, reretry-0.11.8, smart-open-6.4.0, snakemake-8.4.2, snakemake-executor-plugin-cluster-generic-1.0.7, snakemake-executor-plugin-cluster-sync-0.1.3, snakemake-executor-plugin-flux-0.1.0, snakemake-executor-plugin-slurm-0.2.1, snakemake-executor-plugin-slurm-jobstep-0.1.10, snakemake-interface-common-1.15.2, snakemake-interface-executor-plugins-8.2.0, snakemake-interface-storage-plugins-3.0.0, stopit-1.1.2, throttler-1.2.2, toposort-1.10, yte-1.5.4 \ No newline at end of file +|`yte` version|snakemake modules that include it| +| --- | --- | +|1.5.5|`snakemake/8.28.0-foss-2023b`| +|1.5.4|`snakemake/8.4.2-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/snappy.md b/docs/available_software/detail/snappy.md index a34a1cf25f..90ee4006cc 100644 --- a/docs/available_software/detail/snappy.md +++ b/docs/available_software/detail/snappy.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Snappy is a compression/decompression library. It does not aimfor maximum - compression, or compatibility with any other compression library;instead, it aims - for very high speeds and reasonable compression. + description: 'Snappy is a compression/decompression library. It does not aim + + for maximum compression, or compatibility with any other compression library; + + instead, it aims for very high speeds and reasonable compression.' license: Not confirmed name: snappy offers: @@ -26,33 +26,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''snappy/1.1.9-GCCcore-12.2.0'', ''snappy/1.1.10-GCCcore-12.3.0'', - ''snappy/1.1.10-GCCcore-13.2.0'']' + softwareVersion: '[''1.2.2'', ''1.2.1'', ''1.1.10'', ''1.1.9'']' url: https://github.com/google/snappy --- - -snappy -====== - - -Snappy is a compression/decompression library. It does not aimfor maximum compression, or compatibility with any other compression library;instead, it aims for very high speeds and reasonable compression. - -https://github.com/google/snappy -# Available modules +# snappy -The overview below shows which snappy installations are available per target architecture in EESSI, ordered based on software version (new to old). +Snappy is a compression/decompression library. It does not aim +for maximum compression, or compatibility with any other compression library; +instead, it aims for very high speeds and reasonable compression. -To start using snappy, load one of these modules using a `module load` command like: +homepage: [https://github.com/google/snappy](https://github.com/google/snappy) -```shell -module load snappy/1.1.10-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|snappy/1.1.10-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|snappy/1.1.10-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|snappy/1.1.9-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|snappy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`snappy/1.2.2-GCCcore-14.3.0`| +|1.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`snappy/1.2.2-GCCcore-14.2.0`| +|1.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`snappy/1.2.1-GCCcore-13.3.0`| +|1.1.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`snappy/1.1.10-GCCcore-13.2.0`| +|1.1.10|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`snappy/1.1.10-GCCcore-12.3.0`| +|1.1.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`snappy/1.1.9-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/spdlog.md b/docs/available_software/detail/spdlog.md new file mode 100644 index 0000000000..afef7e30c0 --- /dev/null +++ b/docs/available_software/detail/spdlog.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Very fast, header-only/compiled, C++ logging library. + license: Not confirmed + name: spdlog + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.12.0'']' + url: https://github.com/gabime/spdlog +--- +# spdlog + + +Very fast, header-only/compiled, C++ logging library. + +homepage: [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog) + +## Available installations + + +|spdlog version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.12.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`spdlog/1.12.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/spglib-python.md b/docs/available_software/detail/spglib-python.md index dd8de60fae..70a6cb0f35 100644 --- a/docs/available_software/detail/spglib-python.md +++ b/docs/available_software/detail/spglib-python.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,38 +23,48 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''spglib-python/2.0.2-gfbf-2022b'', ''spglib-python/2.1.0-gfbf-2023a'']' + softwareVersion: '[''2.6.0'', ''2.1.0'', ''2.0.2'']' url: https://pypi.python.org/pypi/spglib --- - -spglib-python -============= +# spglib-python Spglib for Python. Spglib is a library for finding and handling crystal symmetries written in C. -https://pypi.python.org/pypi/spglib -# Available modules +homepage: [https://pypi.python.org/pypi/spglib](https://pypi.python.org/pypi/spglib) + +## Available installations + + +|spglib-python version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.6.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`spglib-python/2.6.0-gfbf-2025a`| +|2.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`spglib-python/2.1.0-gfbf-2023a`| +|2.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`spglib-python/2.0.2-gfbf-2022b`| + +## Extensions + +Overview of extensions included in spglib-python installations -The overview below shows which spglib-python installations are available per target architecture in EESSI, ordered based on software version (new to old). +### pyproject-metadata -To start using spglib-python, load one of these modules using a `module load` command like: -```shell -module load spglib-python/2.1.0-gfbf-2023a -``` +|`pyproject-metadata` version|spglib-python modules that include it| +| --- | --- | +|0.7.1|`spglib-python/2.1.0-gfbf-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### pyproject_metadata -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|spglib-python/2.1.0-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|spglib-python/2.0.2-gfbf-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`pyproject_metadata` version|spglib-python modules that include it| +| --- | --- | +|0.9.1|`spglib-python/2.6.0-gfbf-2025a`| -### spglib-python/2.1.0-gfbf-2023a +### spglib -This is a list of extensions included in the module: -pyproject-metadata-0.7.1, spglib-2.1.0 \ No newline at end of file +|`spglib` version|spglib-python modules that include it| +| --- | --- | +|2.6.0|`spglib-python/2.6.0-gfbf-2025a`| +|2.1.0|`spglib-python/2.1.0-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/spin.md b/docs/available_software/detail/spin.md new file mode 100644 index 0000000000..33341b56f1 --- /dev/null +++ b/docs/available_software/detail/spin.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Developer tool for scientific Python libraries + license: Not confirmed + name: spin + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.14'']' + url: https://github.com/scientific-python/spin +--- +# spin + + +Developer tool for scientific Python libraries + +homepage: [https://github.com/scientific-python/spin](https://github.com/scientific-python/spin) + +## Available installations + + +|spin version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`spin/0.14-GCCcore-14.3.0`| +|0.14|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`spin/0.14-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/statsmodels.md b/docs/available_software/detail/statsmodels.md index 98bf20d73d..2308e15771 100644 --- a/docs/available_software/detail/statsmodels.md +++ b/docs/available_software/detail/statsmodels.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Statsmodels is a Python module that allows users to explore data, estimate - statistical models,and perform statistical tests. + description: 'Statsmodels is a Python module that allows users to explore data, + estimate statistical models, + + and perform statistical tests.' license: Not confirmed name: statsmodels offers: @@ -25,44 +25,45 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''statsmodels/0.14.1-gfbf-2023a'', ''statsmodels/0.14.1-gfbf-2023b'']' + softwareVersion: '[''0.14.6'', ''0.14.5'', ''0.14.1'']' url: https://www.statsmodels.org/ --- +# statsmodels -statsmodels -=========== - - -Statsmodels is a Python module that allows users to explore data, estimate statistical models,and perform statistical tests. -https://www.statsmodels.org/ -# Available modules +Statsmodels is a Python module that allows users to explore data, estimate statistical models, +and perform statistical tests. +homepage: [https://www.statsmodels.org/](https://www.statsmodels.org/) -The overview below shows which statsmodels installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using statsmodels, load one of these modules using a `module load` command like: -```shell -module load statsmodels/0.14.1-gfbf-2023b -``` +|statsmodels version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.14.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`statsmodels/0.14.6-gfbf-2025b`| +|0.14.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`statsmodels/0.14.5-gfbf-2025a`| +|0.14.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`statsmodels/0.14.1-gfbf-2023b`| +|0.14.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`statsmodels/0.14.1-gfbf-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|statsmodels/0.14.1-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|statsmodels/0.14.1-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in statsmodels installations -### statsmodels/0.14.1-gfbf-2023b +### patsy -This is a list of extensions included in the module: -patsy-0.5.6, statsmodels-0.14.1 +|`patsy` version|statsmodels modules that include it| +| --- | --- | +|1.0.1|`statsmodels/0.14.6-gfbf-2025b`
`statsmodels/0.14.5-gfbf-2025a`| +|0.5.6|`statsmodels/0.14.1-gfbf-2023b`
`statsmodels/0.14.1-gfbf-2023a`| -### statsmodels/0.14.1-gfbf-2023a +### statsmodels -This is a list of extensions included in the module: -patsy-0.5.6, statsmodels-0.14.1 \ No newline at end of file +|`statsmodels` version|statsmodels modules that include it| +| --- | --- | +|0.14.6|`statsmodels/0.14.6-gfbf-2025b`| +|0.14.5|`statsmodels/0.14.5-gfbf-2025a`| +|0.14.1|`statsmodels/0.14.1-gfbf-2023b`
`statsmodels/0.14.1-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/sympy.md b/docs/available_software/detail/sympy.md index 3213b4f0ee..a71253b159 100644 --- a/docs/available_software/detail/sympy.md +++ b/docs/available_software/detail/sympy.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: SymPy is a Python library for symbolic mathematics. It aims to become - a full-featured computer algebra system (CAS) while keeping the code as simple - as possible in order to be comprehensible and easily extensible. SymPy is written - entirely in Python and does not require any external libraries. + description: "SymPy is a Python library for symbolic mathematics. It aims to\n become\ + \ a full-featured computer algebra system (CAS) while keeping the code as\n simple\ + \ as possible in order to be comprehensible and easily extensible. SymPy\n is\ + \ written entirely in Python and does not require any external libraries." license: Not confirmed name: sympy offers: @@ -27,31 +25,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''sympy/1.12-gfbf-2023a'', ''sympy/1.12-gfbf-2023b'']' + softwareVersion: '[''1.13.3'', ''1.12'']' url: https://sympy.org/ --- +# sympy -sympy -===== +SymPy is a Python library for symbolic mathematics. It aims to + become a full-featured computer algebra system (CAS) while keeping the code as + simple as possible in order to be comprehensible and easily extensible. SymPy + is written entirely in Python and does not require any external libraries. -SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python and does not require any external libraries. +homepage: [https://sympy.org/](https://sympy.org/) -https://sympy.org/ -# Available modules +## Available installations -The overview below shows which sympy installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using sympy, load one of these modules using a `module load` command like: - -```shell -module load sympy/1.12-gfbf-2023b -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|sympy/1.12-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|sympy/1.12-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|sympy version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.13.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`sympy/1.13.3-gfbf-2024a`| +|1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`sympy/1.12-gfbf-2023b`| +|1.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`sympy/1.12-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/tbb.md b/docs/available_software/detail/tbb.md index 60de89527b..d969de3ced 100644 --- a/docs/available_software/detail/tbb.md +++ b/docs/available_software/detail/tbb.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Intel(R) Threading Building Blocks (Intel(R) TBB) lets you easily write - parallel C++ programs that take full advantage of multicore performance, that - are portable, composable and have future-proof scalability. + description: "Intel(R) Threading Building Blocks (Intel(R) TBB) lets you easily\ + \ write parallel C++ programs that\n take full advantage of multicore performance,\ + \ that are portable, composable and have future-proof scalability." license: Not confirmed name: tbb offers: @@ -26,33 +24,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''tbb/2021.10.0-GCCcore-12.2.0'', ''tbb/2021.11.0-GCCcore-12.3.0'', - ''tbb/2021.13.0-GCCcore-13.2.0'']' + softwareVersion: '[''2022.2.0'', ''2021.13.0'', ''2021.11.0'', ''2021.10.0'']' url: https://github.com/oneapi-src/oneTBB --- +# tbb -tbb -=== +Intel(R) Threading Building Blocks (Intel(R) TBB) lets you easily write parallel C++ programs that + take full advantage of multicore performance, that are portable, composable and have future-proof scalability. -Intel(R) Threading Building Blocks (Intel(R) TBB) lets you easily write parallel C++ programs that take full advantage of multicore performance, that are portable, composable and have future-proof scalability. +homepage: [https://github.com/oneapi-src/oneTBB](https://github.com/oneapi-src/oneTBB) -https://github.com/oneapi-src/oneTBB -# Available modules +## Available installations -The overview below shows which tbb installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using tbb, load one of these modules using a `module load` command like: - -```shell -module load tbb/2021.13.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|tbb/2021.13.0-GCCcore-13.2.0|-|-|-|-|-|x|x|x|x|x|x|x|x|x| -|tbb/2021.11.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|tbb/2021.10.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|tbb version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2022.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tbb/2022.2.0-GCCcore-14.3.0`| +|2022.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tbb/2022.2.0-GCCcore-14.2.0`| +|2021.13.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tbb/2021.13.0-GCCcore-13.3.0`| +|2021.13.0|`generic`: `x86_64`
Arm:
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tbb/2021.13.0-GCCcore-13.2.0`| +|2021.11.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tbb/2021.11.0-GCCcore-12.3.0`| +|2021.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tbb/2021.10.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/tblite.md b/docs/available_software/detail/tblite.md index 0b2dfa39ff..834a6329d2 100644 --- a/docs/available_software/detail/tblite.md +++ b/docs/available_software/detail/tblite.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,31 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''tblite/0.4.0-gfbf-2023b'']' + softwareVersion: '[''0.4.0'']' url: https://github.com/tblite/tblite --- - -tblite -====== +# tblite Light-weight tight-binding framework -https://github.com/tblite/tblite -# Available modules - +homepage: [https://github.com/tblite/tblite](https://github.com/tblite/tblite) -The overview below shows which tblite installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using tblite, load one of these modules using a `module load` command like: -```shell -module load tblite/0.4.0-gfbf-2023b -``` +|tblite version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.4.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tblite/0.4.0-gfbf-2023b`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|tblite/0.4.0-gfbf-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in tblite installations -### tblite/0.4.0-gfbf-2023b +### tblite -This is a list of extensions included in the module: -tblite-0.4.0 \ No newline at end of file +|`tblite` version|tblite modules that include it| +| --- | --- | +|0.4.0|`tblite/0.4.0-gfbf-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/tcsh.md b/docs/available_software/detail/tcsh.md index 4cee94d575..58e004966d 100644 --- a/docs/available_software/detail/tcsh.md +++ b/docs/available_software/detail/tcsh.md @@ -1,15 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Tcsh is an enhanced, but completely compatible version of the Berkeley - UNIX C shell (csh). It is a command language interpreter usable both as an interactive - login shell and a shell script command processor. It includes a command-line editor, - programmable word completion, spelling correction, a history mechanism, job control - and a C-like syntax. + description: "Tcsh is an enhanced, but completely compatible version of the Berkeley\ + \ UNIX C shell (csh).\n It is a command language interpreter usable both as an\ + \ interactive login shell and a shell script command\n processor. It includes\ + \ a command-line editor, programmable word completion, spelling correction, a\ + \ history\n mechanism, job control and a C-like syntax." license: Not confirmed name: tcsh offers: @@ -28,30 +26,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''tcsh/6.24.07-GCCcore-12.2.0'']' + softwareVersion: '[''6.24.13'', ''6.24.07'']' url: https://www.tcsh.org --- +# tcsh -tcsh -==== +Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C shell (csh). + It is a command language interpreter usable both as an interactive login shell and a shell script command + processor. It includes a command-line editor, programmable word completion, spelling correction, a history + mechanism, job control and a C-like syntax. -Tcsh is an enhanced, but completely compatible version of the Berkeley UNIX C shell (csh). It is a command language interpreter usable both as an interactive login shell and a shell script command processor. It includes a command-line editor, programmable word completion, spelling correction, a history mechanism, job control and a C-like syntax. +homepage: [https://www.tcsh.org](https://www.tcsh.org) -https://www.tcsh.org -# Available modules +## Available installations -The overview below shows which tcsh installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using tcsh, load one of these modules using a `module load` command like: - -```shell -module load tcsh/6.24.07-GCCcore-12.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|tcsh/6.24.07-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|tcsh version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.24.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tcsh/6.24.13-GCCcore-13.3.0`| +|6.24.07|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tcsh/6.24.07-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/tensorboard.md b/docs/available_software/detail/tensorboard.md index ef8661f857..ef82c267b7 100644 --- a/docs/available_software/detail/tensorboard.md +++ b/docs/available_software/detail/tensorboard.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: TensorBoard is a suite of web applications for inspecting andunderstanding - your TensorFlow runs and graphs. + description: 'TensorBoard is a suite of web applications for inspecting and + + understanding your TensorFlow runs and graphs.' license: Not confirmed name: tensorboard offers: @@ -25,37 +24,135 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''tensorboard/2.15.1-gfbf-2023a'']' + softwareVersion: '[''2.18.0'', ''2.15.1'']' url: https://github.com/tensorflow/tensorboard --- +# tensorboard + + +TensorBoard is a suite of web applications for inspecting and +understanding your TensorFlow runs and graphs. + +homepage: [https://github.com/tensorflow/tensorboard](https://github.com/tensorflow/tensorboard) + +## Available installations + + +|tensorboard version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tensorboard/2.18.0-gfbf-2024a`| +|2.15.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tensorboard/2.15.1-gfbf-2023a`| + +## Extensions + +Overview of extensions included in tensorboard installations + + +### absl-py + + +|`absl-py` version|tensorboard modules that include it| +| --- | --- | +|2.1.0|`tensorboard/2.15.1-gfbf-2023a`| + +### cachetools + + +|`cachetools` version|tensorboard modules that include it| +| --- | --- | +|5.5.0|`tensorboard/2.18.0-gfbf-2024a`| +|5.3.2|`tensorboard/2.15.1-gfbf-2023a`| + +### google-auth + + +|`google-auth` version|tensorboard modules that include it| +| --- | --- | +|2.26.2|`tensorboard/2.15.1-gfbf-2023a`| + +### google-auth-oauthlib + + +|`google-auth-oauthlib` version|tensorboard modules that include it| +| --- | --- | +|1.2.0|`tensorboard/2.15.1-gfbf-2023a`| + +### google_auth + + +|`google_auth` version|tensorboard modules that include it| +| --- | --- | +|2.35.0|`tensorboard/2.18.0-gfbf-2024a`| + +### gviz-api + + +|`gviz-api` version|tensorboard modules that include it| +| --- | --- | +|1.10.0|`tensorboard/2.15.1-gfbf-2023a`| + +### Markdown + + +|`Markdown` version|tensorboard modules that include it| +| --- | --- | +|3.5.2|`tensorboard/2.15.1-gfbf-2023a`| + +### oauthlib + + +|`oauthlib` version|tensorboard modules that include it| +| --- | --- | +|3.2.2|`tensorboard/2.15.1-gfbf-2023a`| + +### pyasn1_modules + + +|`pyasn1_modules` version|tensorboard modules that include it| +| --- | --- | +|0.4.1|`tensorboard/2.18.0-gfbf-2024a`| +|0.3.0|`tensorboard/2.15.1-gfbf-2023a`| + +### requests-oauthlib + + +|`requests-oauthlib` version|tensorboard modules that include it| +| --- | --- | +|1.3.1|`tensorboard/2.15.1-gfbf-2023a`| + +### rsa -tensorboard -=========== +|`rsa` version|tensorboard modules that include it| +| --- | --- | +|4.9|`tensorboard/2.18.0-gfbf-2024a`
`tensorboard/2.15.1-gfbf-2023a`| -TensorBoard is a suite of web applications for inspecting andunderstanding your TensorFlow runs and graphs. +### tensorboard -https://github.com/tensorflow/tensorboard -# Available modules +|`tensorboard` version|tensorboard modules that include it| +| --- | --- | +|2.18.0|`tensorboard/2.18.0-gfbf-2024a`| +|2.15.1|`tensorboard/2.15.1-gfbf-2023a`| -The overview below shows which tensorboard installations are available per target architecture in EESSI, ordered based on software version (new to old). +### tensorboard-plugin-profile -To start using tensorboard, load one of these modules using a `module load` command like: -```shell -module load tensorboard/2.15.1-gfbf-2023a -``` +|`tensorboard-plugin-profile` version|tensorboard modules that include it| +| --- | --- | +|2.15.1|`tensorboard/2.15.1-gfbf-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### tensorboard_data_server -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|tensorboard/2.15.1-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`tensorboard_data_server` version|tensorboard modules that include it| +| --- | --- | +|0.7.2|`tensorboard/2.18.0-gfbf-2024a`
`tensorboard/2.15.1-gfbf-2023a`| -### tensorboard/2.15.1-gfbf-2023a +### Werkzeug -This is a list of extensions included in the module: -absl-py-2.1.0, cachetools-5.3.2, google-auth-2.26.2, google-auth-oauthlib-1.2.0, gviz-api-1.10.0, Markdown-3.5.2, oauthlib-3.2.2, pyasn1_modules-0.3.0, requests-oauthlib-1.3.1, rsa-4.9, tensorboard-2.15.1, tensorboard-plugin-profile-2.15.1, tensorboard_data_server-0.7.2, Werkzeug-3.0.1 \ No newline at end of file +|`Werkzeug` version|tensorboard modules that include it| +| --- | --- | +|3.1.3|`tensorboard/2.18.0-gfbf-2024a`| +|3.0.1|`tensorboard/2.15.1-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/tensorflow-probability.md b/docs/available_software/detail/tensorflow-probability.md index ce256d3675..f0eabf52bf 100644 --- a/docs/available_software/detail/tensorflow-probability.md +++ b/docs/available_software/detail/tensorflow-probability.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,37 +23,38 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''tensorflow-probability/0.20.0-foss-2023a'']' + softwareVersion: '[''0.20.0'']' url: https://www.tensorflow.org/probability --- - -tensorflow-probability -====================== +# tensorflow-probability TensorFlow Probability (TFP) is a library for probabilistic reasoning and statistical analysis. -https://www.tensorflow.org/probability -# Available modules +homepage: [https://www.tensorflow.org/probability](https://www.tensorflow.org/probability) + +## Available installations + +|tensorflow-probability version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.20.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tensorflow-probability/0.20.0-foss-2023a`| -The overview below shows which tensorflow-probability installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using tensorflow-probability, load one of these modules using a `module load` command like: +Overview of extensions included in tensorflow-probability installations -```shell -module load tensorflow-probability/0.20.0-foss-2023a -``` -*(This data was automatically generated on {{ generated_time }})* +### cloudpickle -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|tensorflow-probability/0.20.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`cloudpickle` version|tensorflow-probability modules that include it| +| --- | --- | +|3.0.0|`tensorflow-probability/0.20.0-foss-2023a`| -### tensorflow-probability/0.20.0-foss-2023a +### tensorflow-probability -This is a list of extensions included in the module: -cloudpickle-3.0.0, tensorflow-probability-0.20.0 \ No newline at end of file +|`tensorflow-probability` version|tensorflow-probability modules that include it| +| --- | --- | +|0.20.0|`tensorflow-probability/0.20.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/test-drive.md b/docs/available_software/detail/test-drive.md index d8e8ba446f..411ab78cc6 100644 --- a/docs/available_software/detail/test-drive.md +++ b/docs/available_software/detail/test-drive.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: This project offers a lightweight, procedural unit testing framework - based on nothing but standard Fortran. + description: "This project offers a lightweight, procedural unit testing framework\n\ + \ based on nothing but standard Fortran." license: Not confirmed name: test-drive offers: @@ -25,30 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''test-drive/0.5.0-GCC-12.3.0'']' + softwareVersion: '[''0.5.0'']' url: https://github.com/fortran-lang/test-drive --- +# test-drive -test-drive -========== +This project offers a lightweight, procedural unit testing framework + based on nothing but standard Fortran. -This project offers a lightweight, procedural unit testing framework based on nothing but standard Fortran. +homepage: [https://github.com/fortran-lang/test-drive](https://github.com/fortran-lang/test-drive) -https://github.com/fortran-lang/test-drive -# Available modules +## Available installations -The overview below shows which test-drive installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using test-drive, load one of these modules using a `module load` command like: - -```shell -module load test-drive/0.5.0-GCC-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|test-drive/0.5.0-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|test-drive version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`test-drive/0.5.0-GCC-13.3.0`| +|0.5.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`test-drive/0.5.0-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/time.md b/docs/available_software/detail/time.md index 70165fff43..26e3bd05a2 100644 --- a/docs/available_software/detail/time.md +++ b/docs/available_software/detail/time.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The `time' command runs another program, then displays information - about the resources used by that program, collected by the system while the program - was running. + description: "The `time' command runs another program, then displays information\ + \ about the resources used by that\n program, collected by the system while the\ + \ program was running." license: Not confirmed name: time offers: @@ -26,30 +24,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''time/1.9-GCCcore-12.2.0'']' + softwareVersion: '[''1.9'']' url: https://www.gnu.org/software/time/ --- +# time -time -==== +The `time' command runs another program, then displays information about the resources used by that + program, collected by the system while the program was running. -The `time' command runs another program, then displays information about the resources used by that program, collected by the system while the program was running. +homepage: [https://www.gnu.org/software/time/](https://www.gnu.org/software/time/) -https://www.gnu.org/software/time/ -# Available modules +## Available installations -The overview below shows which time installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using time, load one of these modules using a `module load` command like: - -```shell -module load time/1.9-GCCcore-12.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|time/1.9-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|time version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`time/1.9-GCCcore-13.3.0`| +|1.9|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`time/1.9-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/tint2.md b/docs/available_software/detail/tint2.md new file mode 100644 index 0000000000..fa9af146bc --- /dev/null +++ b/docs/available_software/detail/tint2.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: A lightweight panel/taskbar for Linux desktops. + license: Not confirmed + name: tint2 + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''17.0.2'']' + url: https://gitlab.com/o9000/tint2 +--- +# tint2 + + +A lightweight panel/taskbar for Linux desktops. + +homepage: [https://gitlab.com/o9000/tint2](https://gitlab.com/o9000/tint2) + +## Available installations + + +|tint2 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|17.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tint2/17.0.2-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/tlparse.md b/docs/available_software/detail/tlparse.md new file mode 100644 index 0000000000..2c09a0e39b --- /dev/null +++ b/docs/available_software/detail/tlparse.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Parse structured PT2 (PyTorch 2) logs + license: Not confirmed + name: tlparse + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.3.37'']' + url: https://github.com/ezyang/tlparse +--- +# tlparse + + +Parse structured PT2 (PyTorch 2) logs + +homepage: [https://github.com/ezyang/tlparse](https://github.com/ezyang/tlparse) + +## Available installations + + +|tlparse version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.3.37|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tlparse/0.3.37-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/tmux.md b/docs/available_software/detail/tmux.md index 3dbf6c9120..47e5e54bdf 100644 --- a/docs/available_software/detail/tmux.md +++ b/docs/available_software/detail/tmux.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: 'tmux is a terminal multiplexer: it enables a number ofterminals to - be created, accessed, and controlled from a single screen. tmuxmay be detached - from a screen and continue running in the background, thenlater reattached.' + description: 'tmux is a terminal multiplexer: it enables a number of + + terminals to be created, accessed, and controlled from a single screen. tmux + + may be detached from a screen and continue running in the background, then + + later reattached.' license: Not confirmed name: tmux offers: @@ -26,30 +28,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''tmux/3.3a-GCCcore-12.3.0'']' + softwareVersion: '[''3.4'', ''3.3a'']' url: https://github.com/tmux/tmux/ --- - -tmux -==== - - -tmux is a terminal multiplexer: it enables a number ofterminals to be created, accessed, and controlled from a single screen. tmuxmay be detached from a screen and continue running in the background, thenlater reattached. - -https://github.com/tmux/tmux/ -# Available modules +# tmux -The overview below shows which tmux installations are available per target architecture in EESSI, ordered based on software version (new to old). +tmux is a terminal multiplexer: it enables a number of +terminals to be created, accessed, and controlled from a single screen. tmux +may be detached from a screen and continue running in the background, then +later reattached. -To start using tmux, load one of these modules using a `module load` command like: +homepage: [https://github.com/tmux/tmux/](https://github.com/tmux/tmux/) -```shell -module load tmux/3.3a-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|tmux/3.3a-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|tmux version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tmux/3.4-GCCcore-13.3.0`| +|3.3a|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tmux/3.3a-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/toil-cwl.md b/docs/available_software/detail/toil-cwl.md index d4a01bcced..2ccca86884 100644 --- a/docs/available_software/detail/toil-cwl.md +++ b/docs/available_software/detail/toil-cwl.md @@ -1,12 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: A scalable, efficient, cross-platform (Linux/macOS) and easy-to-use - workflow engine in pure Python.This installation contains toil, with the cwl extras. + description: ' + + A scalable, efficient, cross-platform (Linux/macOS) and easy-to-use workflow engine + in pure Python. + + This installation contains toil, with the cwl extras. + + ' license: Not confirmed name: toil-cwl offers: @@ -25,37 +29,153 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''toil-cwl/8.2.0-foss-2023b'']' + softwareVersion: '[''8.2.0'']' url: https://github.com/DataBiosphere/toil --- +# toil-cwl + + + +A scalable, efficient, cross-platform (Linux/macOS) and easy-to-use workflow engine in pure Python. +This installation contains toil, with the cwl extras. + + +homepage: [https://github.com/DataBiosphere/toil](https://github.com/DataBiosphere/toil) + +## Available installations + + +|toil-cwl version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|8.2.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`toil-cwl/8.2.0-foss-2023b`| + +## Extensions + +Overview of extensions included in toil-cwl installations + + +### addict + + +|`addict` version|toil-cwl modules that include it| +| --- | --- | +|2.4.0|`toil-cwl/8.2.0-foss-2023b`| + +### bleach + + +|`bleach` version|toil-cwl modules that include it| +| --- | --- | +|6.2.0|`toil-cwl/8.2.0-foss-2023b`| + +### blessed + + +|`blessed` version|toil-cwl modules that include it| +| --- | --- | +|1.21.0|`toil-cwl/8.2.0-foss-2023b`| + +### boltons + + +|`boltons` version|toil-cwl modules that include it| +| --- | --- | +|25.0.0|`toil-cwl/8.2.0-foss-2023b`| + +### conda-package-streaming + + +|`conda-package-streaming` version|toil-cwl modules that include it| +| --- | --- | +|0.11.0|`toil-cwl/8.2.0-foss-2023b`| + +### configargparse + + +|`configargparse` version|toil-cwl modules that include it| +| --- | --- | +|1.7.1|`toil-cwl/8.2.0-foss-2023b`| + +### docker + + +|`docker` version|toil-cwl modules that include it| +| --- | --- | +|7.1.0|`toil-cwl/8.2.0-foss-2023b`| + +### enlighten + + +|`enlighten` version|toil-cwl modules that include it| +| --- | --- | +|1.14.1|`toil-cwl/8.2.0-foss-2023b`| + +### galaxy-tool-util + + +|`galaxy-tool-util` version|toil-cwl modules that include it| +| --- | --- | +|24.2.3|`toil-cwl/8.2.0-foss-2023b`| + +### galaxy-util + + +|`galaxy-util` version|toil-cwl modules that include it| +| --- | --- | +|24.2.3|`toil-cwl/8.2.0-foss-2023b`| + +### prefixed + + +|`prefixed` version|toil-cwl modules that include it| +| --- | --- | +|0.9.0|`toil-cwl/8.2.0-foss-2023b`| + +### prompt_toolkit + + +|`prompt_toolkit` version|toil-cwl modules that include it| +| --- | --- | +|3.0.51|`toil-cwl/8.2.0-foss-2023b`| + +### PyPubSub + + +|`PyPubSub` version|toil-cwl modules that include it| +| --- | --- | +|4.0.3|`toil-cwl/8.2.0-foss-2023b`| + +### repoze.lru -toil-cwl -======== +|`repoze.lru` version|toil-cwl modules that include it| +| --- | --- | +|0.7|`toil-cwl/8.2.0-foss-2023b`| -A scalable, efficient, cross-platform (Linux/macOS) and easy-to-use workflow engine in pure Python.This installation contains toil, with the cwl extras. +### Routes -https://github.com/DataBiosphere/toil -# Available modules +|`Routes` version|toil-cwl modules that include it| +| --- | --- | +|2.5.1|`toil-cwl/8.2.0-foss-2023b`| -The overview below shows which toil-cwl installations are available per target architecture in EESSI, ordered based on software version (new to old). +### toil -To start using toil-cwl, load one of these modules using a `module load` command like: -```shell -module load toil-cwl/8.2.0-foss-2023b -``` +|`toil` version|toil-cwl modules that include it| +| --- | --- | +|8.2.0|`toil-cwl/8.2.0-foss-2023b`| -*(This data was automatically generated on {{ generated_time }})* +### zipstream-new -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|toil-cwl/8.2.0-foss-2023b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`zipstream-new` version|toil-cwl modules that include it| +| --- | --- | +|1.1.8|`toil-cwl/8.2.0-foss-2023b`| -### toil-cwl/8.2.0-foss-2023b +### zstandard -This is a list of extensions included in the module: -addict-2.4.0, bleach-6.2.0, blessed-1.21.0, boltons-25.0.0, conda-package-streaming-0.11.0, configargparse-1.7.1, docker-7.1.0, enlighten-1.14.1, galaxy-tool-util-24.2.3, galaxy-util-24.2.3, prefixed-0.9.0, prompt_toolkit-3.0.51, PyPubSub-4.0.3, repoze.lru-0.7, Routes-2.5.1, toil-8.2.0, zipstream-new-1.1.8, zstandard-0.23.0 \ No newline at end of file +|`zstandard` version|toil-cwl modules that include it| +| --- | --- | +|0.23.0|`toil-cwl/8.2.0-foss-2023b`| \ No newline at end of file diff --git a/docs/available_software/detail/tornado.md b/docs/available_software/detail/tornado.md index 27a4674625..d5044479da 100644 --- a/docs/available_software/detail/tornado.md +++ b/docs/available_software/detail/tornado.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''tornado/6.3.2-GCCcore-12.3.0'']' + softwareVersion: '[''6.5.1'', ''6.4.1'', ''6.4'', ''6.3.2'']' url: https://github.com/tornadoweb/tornado --- - -tornado -======= +# tornado Tornado is a Python web framework and asynchronous networking library. -https://github.com/tornadoweb/tornado -# Available modules - - -The overview below shows which tornado installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using tornado, load one of these modules using a `module load` command like: +homepage: [https://github.com/tornadoweb/tornado](https://github.com/tornadoweb/tornado) -```shell -module load tornado/6.3.2-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|tornado/6.3.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|tornado version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tornado/6.5.1-GCCcore-14.3.0`| +|6.5.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tornado/6.5.1-GCCcore-14.2.0`| +|6.4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`tornado/6.4.1-GCCcore-13.3.0`| +|6.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tornado/6.4-GCCcore-13.2.0`| +|6.3.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tornado/6.3.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/tqdm.md b/docs/available_software/detail/tqdm.md index 0922564615..551d582dc7 100644 --- a/docs/available_software/detail/tqdm.md +++ b/docs/available_software/detail/tqdm.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''tqdm/4.64.1-GCCcore-12.2.0'', ''tqdm/4.66.1-GCCcore-12.3.0'', - ''tqdm/4.66.2-GCCcore-13.2.0'']' + softwareVersion: '[''4.66.2'', ''4.66.1'', ''4.64.1'']' url: https://github.com/tqdm/tqdm --- - -tqdm -==== +# tqdm A fast, extensible progress bar for Python and CLI -https://github.com/tqdm/tqdm -# Available modules - - -The overview below shows which tqdm installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using tqdm, load one of these modules using a `module load` command like: +homepage: [https://github.com/tqdm/tqdm](https://github.com/tqdm/tqdm) -```shell -module load tqdm/4.66.2-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|tqdm/4.66.2-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|tqdm/4.66.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|tqdm/4.64.1-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|tqdm version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.66.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tqdm/4.66.2-GCCcore-13.2.0`| +|4.66.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tqdm/4.66.1-GCCcore-12.3.0`| +|4.64.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`tqdm/4.64.1-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/typing-extensions.md b/docs/available_software/detail/typing-extensions.md index 171d1942f4..7403301c6a 100644 --- a/docs/available_software/detail/typing-extensions.md +++ b/docs/available_software/detail/typing-extensions.md @@ -1,11 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Typing Extensions - Backported and Experimental Type Hints for Python + description: "Typing Extensions \u2013 Backported and Experimental Type Hints for\ + \ Python" license: Not confirmed name: typing-extensions offers: @@ -24,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''typing-extensions/4.9.0-GCCcore-12.3.0'', ''typing-extensions/4.10.0-GCCcore-13.2.0'']' - url: https://github.com/python/typing_extensions + softwareVersion: '[''4.11.0'', ''4.10.0'', ''4.9.0'']' + url: https://github.com/python/typing/blob/master/typing_extensions/README.rst --- +# typing-extensions -typing-extensions -================= +Typing Extensions – Backported and Experimental Type Hints for Python -Typing Extensions - Backported and Experimental Type Hints for Python +homepage: [https://github.com/python/typing/blob/master/typing_extensions/README.rst](https://github.com/python/typing/blob/master/typing_extensions/README.rst) -https://github.com/python/typing_extensions -# Available modules +## Available installations -The overview below shows which typing-extensions installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using typing-extensions, load one of these modules using a `module load` command like: - -```shell -module load typing-extensions/4.10.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|typing-extensions/4.10.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|typing-extensions/4.9.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|typing-extensions version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.11.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`typing-extensions/4.11.0-GCCcore-13.3.0`| +|4.10.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`typing-extensions/4.10.0-GCCcore-13.2.0`| +|4.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`typing-extensions/4.9.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/umap-learn.md b/docs/available_software/detail/umap-learn.md index 844b71c603..036d72f1c2 100644 --- a/docs/available_software/detail/umap-learn.md +++ b/docs/available_software/detail/umap-learn.md @@ -1,13 +1,18 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Uniform Manifold Approximation and Projection (UMAP) is a dimension - reduction techniquethat can be used for visualisation similarly to t-SNE, but - also for general non-lineardimension reduction. + description: ' + + Uniform Manifold Approximation and Projection (UMAP) is a dimension reduction + technique + + that can be used for visualisation similarly to t-SNE, but also for general non-linear + + dimension reduction. + + ' license: Not confirmed name: umap-learn offers: @@ -26,37 +31,42 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''umap-learn/0.5.5-foss-2023a'']' + softwareVersion: '[''0.5.5'']' url: https://umap-learn.readthedocs.io/en/latest/ --- +# umap-learn + + + +Uniform Manifold Approximation and Projection (UMAP) is a dimension reduction technique +that can be used for visualisation similarly to t-SNE, but also for general non-linear +dimension reduction. -umap-learn -========== +homepage: [https://umap-learn.readthedocs.io/en/latest/](https://umap-learn.readthedocs.io/en/latest/) -Uniform Manifold Approximation and Projection (UMAP) is a dimension reduction techniquethat can be used for visualisation similarly to t-SNE, but also for general non-lineardimension reduction. +## Available installations -https://umap-learn.readthedocs.io/en/latest/ -# Available modules +|umap-learn version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.5.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`umap-learn/0.5.5-foss-2023a`| -The overview below shows which umap-learn installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using umap-learn, load one of these modules using a `module load` command like: +Overview of extensions included in umap-learn installations -```shell -module load umap-learn/0.5.5-foss-2023a -``` -*(This data was automatically generated on {{ generated_time }})* +### pynndescent -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|umap-learn/0.5.5-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`pynndescent` version|umap-learn modules that include it| +| --- | --- | +|0.5.11|`umap-learn/0.5.5-foss-2023a`| -### umap-learn/0.5.5-foss-2023a +### umap-learn -This is a list of extensions included in the module: -pynndescent-0.5.11, umap-learn-0.5.5 \ No newline at end of file +|`umap-learn` version|umap-learn modules that include it| +| --- | --- | +|0.5.5|`umap-learn/0.5.5-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/uncertainties.md b/docs/available_software/detail/uncertainties.md index 9f66d0f3ee..077bfcc90d 100644 --- a/docs/available_software/detail/uncertainties.md +++ b/docs/available_software/detail/uncertainties.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Transparent calculations with uncertainties on the quantities involved - (aka error propagation); fast calculation of derivatives + description: "Transparent calculations with uncertainties on the quantities involved\ + \ (aka error propagation);\n fast calculation of derivatives" license: Not confirmed name: uncertainties offers: @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''uncertainties/3.1.7-foss-2023a'']' + softwareVersion: '[''3.1.7'']' url: http://uncertainties-python-package.readthedocs.io --- +# uncertainties -uncertainties -============= +Transparent calculations with uncertainties on the quantities involved (aka error propagation); + fast calculation of derivatives -Transparent calculations with uncertainties on the quantities involved (aka error propagation); fast calculation of derivatives +homepage: [http://uncertainties-python-package.readthedocs.io](http://uncertainties-python-package.readthedocs.io) -http://uncertainties-python-package.readthedocs.io -# Available modules +## Available installations -The overview below shows which uncertainties installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using uncertainties, load one of these modules using a `module load` command like: - -```shell -module load uncertainties/3.1.7-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|uncertainties/3.1.7-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|uncertainties version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`uncertainties/3.1.7-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/unifdef.md b/docs/available_software/detail/unifdef.md index f817ce0e68..7caeb05078 100644 --- a/docs/available_software/detail/unifdef.md +++ b/docs/available_software/detail/unifdef.md @@ -1,13 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: unifdef - selectively remove C preprocessor conditionalsThe unifdef - utility selectively processes conditional C preprocessorand the additional text - that they delimit, while otherwise leaving thefile alone. + description: 'unifdef - selectively remove C preprocessor conditionals + + The unifdef utility selectively processes conditional C preprocessor + + and the additional text that they delimit, while otherwise leaving the + + file alone.' license: Not confirmed name: unifdef offers: @@ -26,30 +28,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''unifdef/2.12-GCCcore-12.3.0'']' + softwareVersion: '[''2.12'']' url: https://github.com/fanf2/unifdef --- - -unifdef -======= - - -unifdef - selectively remove C preprocessor conditionalsThe unifdef utility selectively processes conditional C preprocessorand the additional text that they delimit, while otherwise leaving thefile alone. - -https://github.com/fanf2/unifdef -# Available modules +# unifdef -The overview below shows which unifdef installations are available per target architecture in EESSI, ordered based on software version (new to old). +unifdef - selectively remove C preprocessor conditionals +The unifdef utility selectively processes conditional C preprocessor +and the additional text that they delimit, while otherwise leaving the +file alone. -To start using unifdef, load one of these modules using a `module load` command like: +homepage: [https://github.com/fanf2/unifdef](https://github.com/fanf2/unifdef) -```shell -module load unifdef/2.12-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|unifdef/2.12-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|unifdef version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`unifdef/2.12-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/unittest-xml-reporting.md b/docs/available_software/detail/unittest-xml-reporting.md new file mode 100644 index 0000000000..880f5546c8 --- /dev/null +++ b/docs/available_software/detail/unittest-xml-reporting.md @@ -0,0 +1,45 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'A unittest test runner that can save test results to XML files in + xUnit format. + + The files can be consumed by a wide range of tools, such as build systems, IDEs + and continuous integration servers.' + license: Not confirmed + name: unittest-xml-reporting + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''3.1.0'']' + url: http://github.com/xmlrunner/unittest-xml-reporting +--- +# unittest-xml-reporting + + +A unittest test runner that can save test results to XML files in xUnit format. +The files can be consumed by a wide range of tools, such as build systems, IDEs and continuous integration servers. + +homepage: [http://github.com/xmlrunner/unittest-xml-reporting](http://github.com/xmlrunner/unittest-xml-reporting) + +## Available installations + + +|unittest-xml-reporting version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.1.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`unittest-xml-reporting/3.1.0-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/unixODBC.md b/docs/available_software/detail/unixODBC.md index 80107902b5..82e4809575 100644 --- a/docs/available_software/detail/unixODBC.md +++ b/docs/available_software/detail/unixODBC.md @@ -1,12 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: unixODBC provides a uniform interface betweenapplication and database - driver + description: 'unixODBC provides a uniform interface between + + application and database driver' license: Not confirmed name: unixODBC offers: @@ -25,30 +24,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''unixODBC/2.3.12-GCCcore-12.3.0'']' + softwareVersion: '[''2.3.12'']' url: https://www.unixodbc.org --- - -unixODBC -======== - - -unixODBC provides a uniform interface betweenapplication and database driver - -https://www.unixodbc.org -# Available modules +# unixODBC -The overview below shows which unixODBC installations are available per target architecture in EESSI, ordered based on software version (new to old). +unixODBC provides a uniform interface between +application and database driver -To start using unixODBC, load one of these modules using a `module load` command like: +homepage: [https://www.unixodbc.org](https://www.unixodbc.org) -```shell -module load unixODBC/2.3.12-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|unixODBC/2.3.12-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|unixODBC version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.3.12|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`unixODBC/2.3.12-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/utf8proc.md b/docs/available_software/detail/utf8proc.md index b1141233f7..4c1bb68e0b 100644 --- a/docs/available_software/detail/utf8proc.md +++ b/docs/available_software/detail/utf8proc.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: utf8proc is a small, clean C library that provides Unicode normalization, - case-folding, and other operations for data in the UTF-8 encoding. + description: "utf8proc is a small, clean C library that provides Unicode normalization,\ + \ case-folding, \nand other operations for data in the UTF-8 encoding." license: Not confirmed name: utf8proc offers: @@ -25,33 +23,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''utf8proc/2.8.0-GCCcore-12.2.0'', ''utf8proc/2.8.0-GCCcore-12.3.0'', - ''utf8proc/2.9.0-GCCcore-13.2.0'']' + softwareVersion: '[''2.9.0'', ''2.8.0'']' url: https://github.com/JuliaStrings/utf8proc --- +# utf8proc -utf8proc -======== +utf8proc is a small, clean C library that provides Unicode normalization, case-folding, +and other operations for data in the UTF-8 encoding. -utf8proc is a small, clean C library that provides Unicode normalization, case-folding, and other operations for data in the UTF-8 encoding. +homepage: [https://github.com/JuliaStrings/utf8proc](https://github.com/JuliaStrings/utf8proc) -https://github.com/JuliaStrings/utf8proc -# Available modules +## Available installations -The overview below shows which utf8proc installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using utf8proc, load one of these modules using a `module load` command like: - -```shell -module load utf8proc/2.9.0-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|utf8proc/2.9.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|utf8proc/2.8.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|utf8proc/2.8.0-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|utf8proc version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`utf8proc/2.9.0-GCCcore-13.3.0`| +|2.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`utf8proc/2.9.0-GCCcore-13.2.0`| +|2.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`utf8proc/2.8.0-GCCcore-12.3.0`| +|2.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`utf8proc/2.8.0-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/uthash.md b/docs/available_software/detail/uthash.md new file mode 100644 index 0000000000..91018dc6bd --- /dev/null +++ b/docs/available_software/detail/uthash.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Austin is a Python frame stack sampler for CPython written in pure + C. + license: Not confirmed + name: uthash + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''2.3.0'']' + url: https://troydhanson.github.io/uthash/ +--- +# uthash + + +Austin is a Python frame stack sampler for CPython written in pure C. + +homepage: [https://troydhanson.github.io/uthash/](https://troydhanson.github.io/uthash/) + +## Available installations + + +|uthash version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.3.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`uthash/2.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/uv.md b/docs/available_software/detail/uv.md new file mode 100644 index 0000000000..ffd47af7e6 --- /dev/null +++ b/docs/available_software/detail/uv.md @@ -0,0 +1,41 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: An extremely fast Python package installer and resolver, written in + Rust. + license: Not confirmed + name: uv + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''0.7.13'']' + url: https://github.com/astral-sh/uv +--- +# uv + + +An extremely fast Python package installer and resolver, written in Rust. + +homepage: [https://github.com/astral-sh/uv](https://github.com/astral-sh/uv) + +## Available installations + + +|uv version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.7.13|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`uv/0.7.13-GCCcore-14.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/virtualenv.md b/docs/available_software/detail/virtualenv.md index 7feb6f242a..94421b1755 100644 --- a/docs/available_software/detail/virtualenv.md +++ b/docs/available_software/detail/virtualenv.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,44 +22,72 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''virtualenv/20.23.1-GCCcore-12.3.0'', ''virtualenv/20.24.6-GCCcore-13.2.0'']' + softwareVersion: '[''20.32.0'', ''20.29.2'', ''20.26.2'', ''20.24.6'', ''20.23.1'']' url: https://github.com/pypa/virtualenv --- - -virtualenv -========== +# virtualenv A tool for creating isolated virtual python environments. -https://github.com/pypa/virtualenv -# Available modules +homepage: [https://github.com/pypa/virtualenv](https://github.com/pypa/virtualenv) + +## Available installations + + +|virtualenv version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|20.32.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`virtualenv/20.32.0-GCCcore-14.3.0`| +|20.29.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`virtualenv/20.29.2-GCCcore-14.2.0`| +|20.26.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`virtualenv/20.26.2-GCCcore-13.3.0`| +|20.24.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`virtualenv/20.24.6-GCCcore-13.2.0`| +|20.23.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`virtualenv/20.23.1-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in virtualenv installations -The overview below shows which virtualenv installations are available per target architecture in EESSI, ordered based on software version (new to old). +### distlib -To start using virtualenv, load one of these modules using a `module load` command like: -```shell -module load virtualenv/20.24.6-GCCcore-13.2.0 -``` +|`distlib` version|virtualenv modules that include it| +| --- | --- | +|0.4.0|`virtualenv/20.32.0-GCCcore-14.3.0`| +|0.3.9|`virtualenv/20.29.2-GCCcore-14.2.0`| +|0.3.8|`virtualenv/20.26.2-GCCcore-13.3.0`| +|0.3.7|`virtualenv/20.24.6-GCCcore-13.2.0`| +|0.3.6|`virtualenv/20.23.1-GCCcore-12.3.0`| -*(This data was automatically generated on {{ generated_time }})* +### filelock -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|virtualenv/20.24.6-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|virtualenv/20.23.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`filelock` version|virtualenv modules that include it| +| --- | --- | +|3.18.0|`virtualenv/20.32.0-GCCcore-14.3.0`| +|3.17.0|`virtualenv/20.29.2-GCCcore-14.2.0`| +|3.15.1|`virtualenv/20.26.2-GCCcore-13.3.0`| +|3.13.0|`virtualenv/20.24.6-GCCcore-13.2.0`| +|3.12.2|`virtualenv/20.23.1-GCCcore-12.3.0`| -### virtualenv/20.24.6-GCCcore-13.2.0 +### platformdirs -This is a list of extensions included in the module: -distlib-0.3.7, filelock-3.13.0, platformdirs-3.11.0, virtualenv-20.24.6 +|`platformdirs` version|virtualenv modules that include it| +| --- | --- | +|4.3.8|`virtualenv/20.32.0-GCCcore-14.3.0`| +|4.3.6|`virtualenv/20.29.2-GCCcore-14.2.0`| +|4.2.2|`virtualenv/20.26.2-GCCcore-13.3.0`| +|3.11.0|`virtualenv/20.24.6-GCCcore-13.2.0`| +|3.8.0|`virtualenv/20.23.1-GCCcore-12.3.0`| -### virtualenv/20.23.1-GCCcore-12.3.0 +### virtualenv -This is a list of extensions included in the module: -distlib-0.3.6, filelock-3.12.2, platformdirs-3.8.0, virtualenv-20.23.1 \ No newline at end of file +|`virtualenv` version|virtualenv modules that include it| +| --- | --- | +|20.32.0|`virtualenv/20.32.0-GCCcore-14.3.0`| +|20.29.2|`virtualenv/20.29.2-GCCcore-14.2.0`| +|20.26.2|`virtualenv/20.26.2-GCCcore-13.3.0`| +|20.24.6|`virtualenv/20.24.6-GCCcore-13.2.0`| +|20.23.1|`virtualenv/20.23.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/waLBerla.md b/docs/available_software/detail/waLBerla.md index 7c39477980..97b5304e54 100644 --- a/docs/available_software/detail/waLBerla.md +++ b/docs/available_software/detail/waLBerla.md @@ -1,12 +1,10 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Widely applicable Lattics-Boltzmann from Erlangen is a block-structured - high-performance framework for multiphysics simulations + description: "Widely applicable Lattics-Boltzmann from Erlangen is a \nblock-structured\ + \ high-performance framework for multiphysics simulations" license: Not confirmed name: waLBerla offers: @@ -25,31 +23,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''waLBerla/6.1-foss-2022b'', ''waLBerla/6.1-foss-2023a'']' + softwareVersion: '[''6.1'']' url: https://walberla.net/index.html --- +# waLBerla -waLBerla -======== +Widely applicable Lattics-Boltzmann from Erlangen is a +block-structured high-performance framework for multiphysics simulations -Widely applicable Lattics-Boltzmann from Erlangen is a block-structured high-performance framework for multiphysics simulations +homepage: [https://walberla.net/index.html](https://walberla.net/index.html) -https://walberla.net/index.html -# Available modules +## Available installations -The overview below shows which waLBerla installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using waLBerla, load one of these modules using a `module load` command like: - -```shell -module load waLBerla/6.1-foss-2023a -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|waLBerla/6.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|waLBerla/6.1-foss-2022b|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|waLBerla version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`waLBerla/6.1-foss-2023a`| +|6.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`waLBerla/6.1-foss-2022b`| \ No newline at end of file diff --git a/docs/available_software/detail/websockify.md b/docs/available_software/detail/websockify.md index 6eb1c1e2de..9ae297675e 100644 --- a/docs/available_software/detail/websockify.md +++ b/docs/available_software/detail/websockify.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,39 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''websockify/0.13.0-gfbf-2023a'']' + softwareVersion: '[''0.13.0'']' url: https://github.com/novnc/websockify --- - -websockify -========== +# websockify WebSockets support for any application/server -https://github.com/novnc/websockify -# Available modules +homepage: [https://github.com/novnc/websockify](https://github.com/novnc/websockify) + +## Available installations + +|websockify version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.13.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`websockify/0.13.0-gfbf-2024a`| +|0.13.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`websockify/0.13.0-gfbf-2023a`| -The overview below shows which websockify installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Extensions -To start using websockify, load one of these modules using a `module load` command like: +Overview of extensions included in websockify installations -```shell -module load websockify/0.13.0-gfbf-2023a -``` -*(This data was automatically generated on {{ generated_time }})* +### jwcrypto -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|websockify/0.13.0-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`jwcrypto` version|websockify modules that include it| +| --- | --- | +|1.5.6|`websockify/0.13.0-gfbf-2024a`
`websockify/0.13.0-gfbf-2023a`| -### websockify/0.13.0-gfbf-2023a +### websockify -This is a list of extensions included in the module: -jwcrypto-1.5.6, websockify-0.13.0 \ No newline at end of file +|`websockify` version|websockify modules that include it| +| --- | --- | +|0.13.0|`websockify/0.13.0-gfbf-2024a`
`websockify/0.13.0-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/wget.md b/docs/available_software/detail/wget.md index 222be81870..41fc8a6557 100644 --- a/docs/available_software/detail/wget.md +++ b/docs/available_software/detail/wget.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: GNU Wget is a free software package for retrieving files using HTTP, - HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive - commandline tool, so it may easily be called from scripts, cron jobs, terminals - without X-Windows support, etc. + description: "GNU Wget is a free software package for retrieving files using HTTP,\ + \ HTTPS and FTP,\n the most widely-used Internet protocols. It is a non-interactive\ + \ commandline tool,\n so it may easily be called from scripts, cron jobs, terminals\ + \ without X-Windows support, etc." license: Not confirmed name: wget offers: @@ -27,31 +25,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''wget/1.21.4-GCCcore-13.2.0'', ''wget/1.24.5-GCCcore-12.3.0'']' + softwareVersion: '[''1.24.5'', ''1.21.4'']' url: https://www.gnu.org/software/wget --- +# wget -wget -==== +GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, + the most widely-used Internet protocols. It is a non-interactive commandline tool, + so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc. -GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc. +homepage: [https://www.gnu.org/software/wget](https://www.gnu.org/software/wget) -https://www.gnu.org/software/wget -# Available modules +## Available installations -The overview below shows which wget installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using wget, load one of these modules using a `module load` command like: - -```shell -module load wget/1.24.5-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|wget/1.24.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|wget/1.21.4-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|wget version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.24.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`wget/1.24.5-GCCcore-12.3.0`| +|1.21.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`wget/1.21.4-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/wpebackend-fdo.md b/docs/available_software/detail/wpebackend-fdo.md index 40f2cb482e..436b485d07 100644 --- a/docs/available_software/detail/wpebackend-fdo.md +++ b/docs/available_software/detail/wpebackend-fdo.md @@ -1,14 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: WPE WebKit allows embedders to create simple and performantsystems - based on Web platform technologies. It is a WebKit port designed withflexibility - and hardware acceleration in mind, leveraging common 3D graphicsAPIs for best - performance. + description: 'WPE WebKit allows embedders to create simple and performant + + systems based on Web platform technologies. It is a WebKit port designed with + + flexibility and hardware acceleration in mind, leveraging common 3D graphics + + APIs for best performance.' license: Not confirmed name: wpebackend-fdo offers: @@ -27,30 +28,22 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''wpebackend-fdo/1.15.90-GCCcore-12.3.0'']' + softwareVersion: '[''1.15.90'']' url: https://wpewebkit.org/ --- - -wpebackend-fdo -============== - - -WPE WebKit allows embedders to create simple and performantsystems based on Web platform technologies. It is a WebKit port designed withflexibility and hardware acceleration in mind, leveraging common 3D graphicsAPIs for best performance. - -https://wpewebkit.org/ -# Available modules +# wpebackend-fdo -The overview below shows which wpebackend-fdo installations are available per target architecture in EESSI, ordered based on software version (new to old). +WPE WebKit allows embedders to create simple and performant +systems based on Web platform technologies. It is a WebKit port designed with +flexibility and hardware acceleration in mind, leveraging common 3D graphics +APIs for best performance. -To start using wpebackend-fdo, load one of these modules using a `module load` command like: +homepage: [https://wpewebkit.org/](https://wpewebkit.org/) -```shell -module load wpebackend-fdo/1.15.90-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|wpebackend-fdo/1.15.90-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|wpebackend-fdo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.15.90|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`wpebackend-fdo/1.15.90-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/wradlib.md b/docs/available_software/detail/wradlib.md index c9efbb64ab..6fa13b64b6 100644 --- a/docs/available_software/detail/wradlib.md +++ b/docs/available_software/detail/wradlib.md @@ -1,12 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The wradlib project has been initiated in order to facilitate the use - of weatherradar data as well as to provide a common platform for research on newalgorithms. + description: ' + + The wradlib project has been initiated in order to facilitate the use of weather + + radar data as well as to provide a common platform for research on new + + algorithms.' license: Not confirmed name: wradlib offers: @@ -25,37 +28,76 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''wradlib/2.0.3-foss-2023a'']' + softwareVersion: '[''2.0.3'']' url: https://docs.wradlib.org/ --- +# wradlib + + + +The wradlib project has been initiated in order to facilitate the use of weather +radar data as well as to provide a common platform for research on new +algorithms. + +homepage: [https://docs.wradlib.org/](https://docs.wradlib.org/) + +## Available installations + + +|wradlib version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.0.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`wradlib/2.0.3-foss-2023a`| + +## Extensions + +Overview of extensions included in wradlib installations + + +### cmweather + + +|`cmweather` version|wradlib modules that include it| +| --- | --- | +|0.3.2|`wradlib/2.0.3-foss-2023a`| + +### deprecation + + +|`deprecation` version|wradlib modules that include it| +| --- | --- | +|2.1.0|`wradlib/2.0.3-foss-2023a`| + +### lat_lon_parser -wradlib -======= +|`lat_lon_parser` version|wradlib modules that include it| +| --- | --- | +|1.3.0|`wradlib/2.0.3-foss-2023a`| -The wradlib project has been initiated in order to facilitate the use of weatherradar data as well as to provide a common platform for research on newalgorithms. +### wradlib -https://docs.wradlib.org/ -# Available modules +|`wradlib` version|wradlib modules that include it| +| --- | --- | +|2.0.3|`wradlib/2.0.3-foss-2023a`| -The overview below shows which wradlib installations are available per target architecture in EESSI, ordered based on software version (new to old). +### xarray-datatree -To start using wradlib, load one of these modules using a `module load` command like: -```shell -module load wradlib/2.0.3-foss-2023a -``` +|`xarray-datatree` version|wradlib modules that include it| +| --- | --- | +|0.0.13|`wradlib/2.0.3-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### xmltodict -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|wradlib/2.0.3-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`xmltodict` version|wradlib modules that include it| +| --- | --- | +|0.13.0|`wradlib/2.0.3-foss-2023a`| -### wradlib/2.0.3-foss-2023a +### xradar -This is a list of extensions included in the module: -cmweather-0.3.2, deprecation-2.1.0, lat_lon_parser-1.3.0, wradlib-2.0.3, xarray-datatree-0.0.13, xmltodict-0.13.0, xradar-0.5.1 \ No newline at end of file +|`xradar` version|wradlib modules that include it| +| --- | --- | +|0.5.1|`wradlib/2.0.3-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/wrapt.md b/docs/available_software/detail/wrapt.md index ed1a426dba..12fa730462 100644 --- a/docs/available_software/detail/wrapt.md +++ b/docs/available_software/detail/wrapt.md @@ -1,13 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The aim of the wrapt module is to provide a transparent objectproxy - for Python, which can be used as the basis for the construction offunction wrappers - and decorator functions. + description: 'The aim of the wrapt module is to provide a transparent object + + proxy for Python, which can be used as the basis for the construction of + + function wrappers and decorator functions.' license: Not confirmed name: wrapt offers: @@ -26,38 +26,36 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''wrapt/1.15.0-gfbf-2023a'', ''wrapt/1.16.0-GCCcore-13.2.0'']' + softwareVersion: '[''1.16.0'', ''1.15.0'']' url: https://pypi.org/project/wrapt/ --- +# wrapt -wrapt -===== - - -The aim of the wrapt module is to provide a transparent objectproxy for Python, which can be used as the basis for the construction offunction wrappers and decorator functions. -https://pypi.org/project/wrapt/ -# Available modules +The aim of the wrapt module is to provide a transparent object +proxy for Python, which can be used as the basis for the construction of +function wrappers and decorator functions. +homepage: [https://pypi.org/project/wrapt/](https://pypi.org/project/wrapt/) -The overview below shows which wrapt installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using wrapt, load one of these modules using a `module load` command like: -```shell -module load wrapt/1.16.0-GCCcore-13.2.0 -``` +|wrapt version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.16.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`wrapt/1.16.0-GCCcore-13.2.0`| +|1.16.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`wrapt/1.16.0-gfbf-2024a`| +|1.15.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`wrapt/1.15.0-gfbf-2023a`| -*(This data was automatically generated on {{ generated_time }})* +## Extensions -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|wrapt/1.16.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|wrapt/1.15.0-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +Overview of extensions included in wrapt installations -### wrapt/1.15.0-gfbf-2023a +### wrapt -This is a list of extensions included in the module: -wrapt-1.15.0 \ No newline at end of file +|`wrapt` version|wrapt modules that include it| +| --- | --- | +|1.16.0|`wrapt/1.16.0-gfbf-2024a`| +|1.15.0|`wrapt/1.15.0-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/wxPython.md b/docs/available_software/detail/wxPython.md index 4ea6669b98..eddd0fdd19 100644 --- a/docs/available_software/detail/wxPython.md +++ b/docs/available_software/detail/wxPython.md @@ -1,14 +1,15 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Wraps the wxWidgets C++ toolkit and provides access to the user interface - portions of the wxWidgetsAPI, enabling Python applications to have a native GUI - on Windows, Macs or Unix systems, with a native look and feeland requiring very - little (if any) platform specific code. + description: 'Wraps the wxWidgets C++ toolkit and provides access to the user interface + portions of the wxWidgets + + API, enabling Python applications to have a native GUI on Windows, Macs or Unix + systems, with a native look and feel + + and requiring very little (if any) platform specific code.' license: Not confirmed name: wxPython offers: @@ -27,30 +28,21 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''wxPython/4.2.1-foss-2023a'']' + softwareVersion: '[''4.2.1'']' url: https://www.wxpython.org/ --- - -wxPython -======== - - -Wraps the wxWidgets C++ toolkit and provides access to the user interface portions of the wxWidgetsAPI, enabling Python applications to have a native GUI on Windows, Macs or Unix systems, with a native look and feeland requiring very little (if any) platform specific code. - -https://www.wxpython.org/ -# Available modules +# wxPython -The overview below shows which wxPython installations are available per target architecture in EESSI, ordered based on software version (new to old). +Wraps the wxWidgets C++ toolkit and provides access to the user interface portions of the wxWidgets +API, enabling Python applications to have a native GUI on Windows, Macs or Unix systems, with a native look and feel +and requiring very little (if any) platform specific code. -To start using wxPython, load one of these modules using a `module load` command like: +homepage: [https://www.wxpython.org/](https://www.wxpython.org/) -```shell -module load wxPython/4.2.1-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|wxPython/4.2.1-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|wxPython version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`wxPython/4.2.1-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/wxWidgets.md b/docs/available_software/detail/wxWidgets.md index f37e1ab199..66306d5361 100644 --- a/docs/available_software/detail/wxWidgets.md +++ b/docs/available_software/detail/wxWidgets.md @@ -1,16 +1,19 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: wxWidgets is a C++ library that lets developers createapplications - for Windows, Mac OS X, Linux and other platforms with asingle code base. It has - popular language bindings for Python, Perl,Ruby and many other languages, and - unlike other cross-platform toolkits,wxWidgets gives applications a truly native - look and feel because ituses the platform's native API rather than emulating the - GUI. + description: 'wxWidgets is a C++ library that lets developers create + + applications for Windows, Mac OS X, Linux and other platforms with a + + single code base. It has popular language bindings for Python, Perl, + + Ruby and many other languages, and unlike other cross-platform toolkits, + + wxWidgets gives applications a truly native look and feel because it + + uses the platform''s native API rather than emulating the GUI.' license: Not confirmed name: wxWidgets offers: @@ -29,33 +32,26 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''wxWidgets/3.2.2.1-GCC-12.2.0'', ''wxWidgets/3.2.2.1-GCC-12.3.0'', - ''wxWidgets/3.2.6-GCC-13.2.0'']' + softwareVersion: '[''3.2.6'', ''3.2.2.1'']' url: https://www.wxwidgets.org --- - -wxWidgets -========= - - -wxWidgets is a C++ library that lets developers createapplications for Windows, Mac OS X, Linux and other platforms with asingle code base. It has popular language bindings for Python, Perl,Ruby and many other languages, and unlike other cross-platform toolkits,wxWidgets gives applications a truly native look and feel because ituses the platform's native API rather than emulating the GUI. - -https://www.wxwidgets.org -# Available modules +# wxWidgets -The overview below shows which wxWidgets installations are available per target architecture in EESSI, ordered based on software version (new to old). +wxWidgets is a C++ library that lets developers create +applications for Windows, Mac OS X, Linux and other platforms with a +single code base. It has popular language bindings for Python, Perl, +Ruby and many other languages, and unlike other cross-platform toolkits, +wxWidgets gives applications a truly native look and feel because it +uses the platform's native API rather than emulating the GUI. -To start using wxWidgets, load one of these modules using a `module load` command like: +homepage: [https://www.wxwidgets.org](https://www.wxwidgets.org) -```shell -module load wxWidgets/3.2.6-GCC-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|wxWidgets/3.2.6-GCC-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|wxWidgets/3.2.2.1-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|wxWidgets/3.2.2.1-GCC-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|wxWidgets version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|3.2.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`wxWidgets/3.2.6-GCC-13.2.0`| +|3.2.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`wxWidgets/3.2.2.1-GCC-12.3.0`| +|3.2.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`wxWidgets/3.2.2.1-GCC-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/x264.md b/docs/available_software/detail/x264.md index 4ab2e01c6f..4db767d992 100644 --- a/docs/available_software/detail/x264.md +++ b/docs/available_software/detail/x264.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: x264 is a free software library and application for encoding video - streams into the H.264/MPEG-4 AVC compression format, and is released under the - terms of the GNU GPL. + description: "\n x264 is a free software library and application for encoding video\ + \ streams\n into the H.264/MPEG-4 AVC compression format, and is released under\ + \ the\n terms of the GNU GPL.\n" license: Not confirmed name: x264 offers: @@ -26,33 +24,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''x264/20230226-GCCcore-12.2.0'', ''x264/20230226-GCCcore-12.3.0'', - ''x264/20231019-GCCcore-13.2.0'']' + softwareVersion: '[''20250831'', ''20250619'', ''20240513'', ''20231019'', ''20230226'']' url: https://www.videolan.org/developers/x264.html --- +# x264 -x264 -==== -x264 is a free software library and application for encoding video streams into the H.264/MPEG-4 AVC compression format, and is released under the terms of the GNU GPL. + x264 is a free software library and application for encoding video streams + into the H.264/MPEG-4 AVC compression format, and is released under the + terms of the GNU GPL. -https://www.videolan.org/developers/x264.html -# Available modules +homepage: [https://www.videolan.org/developers/x264.html](https://www.videolan.org/developers/x264.html) -The overview below shows which x264 installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using x264, load one of these modules using a `module load` command like: -```shell -module load x264/20231019-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|x264/20231019-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|x264/20230226-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|x264/20230226-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|x264 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|20250831|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`x264/20250831-GCCcore-14.3.0`| +|20250619|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`x264/20250619-GCCcore-14.2.0`| +|20240513|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`x264/20240513-GCCcore-13.3.0`| +|20231019|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`x264/20231019-GCCcore-13.2.0`| +|20230226|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`x264/20230226-GCCcore-12.3.0`| +|20230226|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`x264/20230226-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/x265.md b/docs/available_software/detail/x265.md index 5c2d83ce9f..2477e9341b 100644 --- a/docs/available_software/detail/x265.md +++ b/docs/available_software/detail/x265.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: x265 is a free software library and application for encoding video - streams into the H.265 AVC compression format, and is released under the terms - of the GNU GPL. + description: "\n x265 is a free software library and application for encoding video\ + \ streams\n into the H.265 AVC compression format, and is released under the terms\ + \ of\n the GNU GPL.\n" license: Not confirmed name: x265 offers: @@ -26,32 +24,28 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''x265/3.5-GCCcore-12.2.0'', ''x265/3.5-GCCcore-12.3.0'', ''x265/3.5-GCCcore-13.2.0'']' + softwareVersion: '[''4.1'', ''3.6'', ''3.5'']' url: https://x265.org/ --- +# x265 -x265 -==== -x265 is a free software library and application for encoding video streams into the H.265 AVC compression format, and is released under the terms of the GNU GPL. + x265 is a free software library and application for encoding video streams + into the H.265 AVC compression format, and is released under the terms of + the GNU GPL. -https://x265.org/ -# Available modules +homepage: [https://x265.org/](https://x265.org/) -The overview below shows which x265 installations are available per target architecture in EESSI, ordered based on software version (new to old). +## Available installations -To start using x265, load one of these modules using a `module load` command like: -```shell -module load x265/3.5-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|x265/3.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|x265/3.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|x265/3.5-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|x265 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`x265/4.1-GCCcore-14.3.0`| +|4.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`x265/4.1-GCCcore-14.2.0`| +|3.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`x265/3.6-GCCcore-13.3.0`| +|3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`x265/3.5-GCCcore-13.2.0`| +|3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`x265/3.5-GCCcore-12.3.0`| +|3.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`x265/3.5-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/xESMF.md b/docs/available_software/detail/xESMF.md index 9e5c35e6ff..84bba635a4 100644 --- a/docs/available_software/detail/xESMF.md +++ b/docs/available_software/detail/xESMF.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,37 +22,52 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''xESMF/0.8.6-foss-2023a'']' + softwareVersion: '[''0.8.6'']' url: https://xesmf.readthedocs.io --- - -xESMF -===== +# xESMF xESMF: Universal Regridder for Geospatial Data -https://xesmf.readthedocs.io -# Available modules +homepage: [https://xesmf.readthedocs.io](https://xesmf.readthedocs.io) + +## Available installations + + +|xESMF version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.8.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`xESMF/0.8.6-foss-2023a`| + +## Extensions + +Overview of extensions included in xESMF installations + + +### cf_xarray + +|`cf_xarray` version|xESMF modules that include it| +| --- | --- | +|0.9.3|`xESMF/0.8.6-foss-2023a`| -The overview below shows which xESMF installations are available per target architecture in EESSI, ordered based on software version (new to old). +### cftime -To start using xESMF, load one of these modules using a `module load` command like: -```shell -module load xESMF/0.8.6-foss-2023a -``` +|`cftime` version|xESMF modules that include it| +| --- | --- | +|1.6.2|`xESMF/0.8.6-foss-2023a`| -*(This data was automatically generated on {{ generated_time }})* +### sparse -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|xESMF/0.8.6-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|`sparse` version|xESMF modules that include it| +| --- | --- | +|0.14.0|`xESMF/0.8.6-foss-2023a`| -### xESMF/0.8.6-foss-2023a +### xesmf -This is a list of extensions included in the module: -cf_xarray-0.9.3, cftime-1.6.2, sparse-0.14.0, xesmf-0.8.6 \ No newline at end of file +|`xesmf` version|xESMF modules that include it| +| --- | --- | +|0.8.6|`xESMF/0.8.6-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/xarray.md b/docs/available_software/detail/xarray.md index 1ccb891dba..e33199c683 100644 --- a/docs/available_software/detail/xarray.md +++ b/docs/available_software/detail/xarray.md @@ -1,13 +1,11 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: xarray (formerly xray) is an open source project and Python package - that aims to bring the labeled data power of pandas to the physical sciences, - by providing N-dimensional variants of the core pandas data structures. + description: "xarray (formerly xray) is an open source project and Python package\ + \ that aims to bring\n the labeled data power of pandas to the physical sciences,\ + \ by providing N-dimensional variants of the\n core pandas data structures." license: Not confirmed name: xarray offers: @@ -26,37 +24,33 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''xarray/2023.9.0-gfbf-2023a'']' + softwareVersion: '[''2023.9.0'']' url: https://github.com/pydata/xarray --- +# xarray -xarray -====== +xarray (formerly xray) is an open source project and Python package that aims to bring + the labeled data power of pandas to the physical sciences, by providing N-dimensional variants of the + core pandas data structures. -xarray (formerly xray) is an open source project and Python package that aims to bring the labeled data power of pandas to the physical sciences, by providing N-dimensional variants of the core pandas data structures. +homepage: [https://github.com/pydata/xarray](https://github.com/pydata/xarray) -https://github.com/pydata/xarray -# Available modules +## Available installations -The overview below shows which xarray installations are available per target architecture in EESSI, ordered based on software version (new to old). +|xarray version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2023.9.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`xarray/2023.9.0-gfbf-2023a`| -To start using xarray, load one of these modules using a `module load` command like: +## Extensions -```shell -module load xarray/2023.9.0-gfbf-2023a -``` +Overview of extensions included in xarray installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|xarray/2023.9.0-gfbf-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +### xarray -### xarray/2023.9.0-gfbf-2023a - -This is a list of extensions included in the module: - -xarray-2023.9.0 \ No newline at end of file +|`xarray` version|xarray modules that include it| +| --- | --- | +|2023.9.0|`xarray/2023.9.0-gfbf-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/xmlf90.md b/docs/available_software/detail/xmlf90.md index 334cb767e4..fce91e63c5 100644 --- a/docs/available_software/detail/xmlf90.md +++ b/docs/available_software/detail/xmlf90.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''xmlf90/1.6.3-GCC-12.3.0'']' + softwareVersion: '[''1.6.3'']' url: https://gitlab.com/siesta-project/libraries/xmlf90 --- - -xmlf90 -====== +# xmlf90 A fast XML parser and generator in Fortran -https://gitlab.com/siesta-project/libraries/xmlf90 -# Available modules - - -The overview below shows which xmlf90 installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using xmlf90, load one of these modules using a `module load` command like: +homepage: [https://gitlab.com/siesta-project/libraries/xmlf90](https://gitlab.com/siesta-project/libraries/xmlf90) -```shell -module load xmlf90/1.6.3-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|xmlf90/1.6.3-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|xmlf90 version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.6.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`xmlf90/1.6.3-GCC-13.3.0`| +|1.6.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`xmlf90/1.6.3-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/xorg-macros.md b/docs/available_software/detail/xorg-macros.md index 74d59956fb..ea37f148d4 100644 --- a/docs/available_software/detail/xorg-macros.md +++ b/docs/available_software/detail/xorg-macros.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,33 +22,24 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''xorg-macros/1.19.3-GCCcore-12.2.0'', ''xorg-macros/1.20.0-GCCcore-12.3.0'', - ''xorg-macros/1.20.0-GCCcore-13.2.0'']' - url: https://gitlab.freedesktop.org/xorg/util/macros + softwareVersion: '[''1.20.2'', ''1.20.1'', ''1.20.0'', ''1.19.3'']' + url: https://cgit.freedesktop.org/xorg/util/macros --- - -xorg-macros -=========== +# xorg-macros X.org macros utilities. -https://gitlab.freedesktop.org/xorg/util/macros -# Available modules - - -The overview below shows which xorg-macros installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using xorg-macros, load one of these modules using a `module load` command like: +homepage: [https://cgit.freedesktop.org/xorg/util/macros](https://cgit.freedesktop.org/xorg/util/macros) -```shell -module load xorg-macros/1.20.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|xorg-macros/1.20.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|xorg-macros/1.20.0-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|xorg-macros/1.19.3-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|xorg-macros version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.20.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`xorg-macros/1.20.2-GCCcore-14.3.0`| +|1.20.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`xorg-macros/1.20.2-GCCcore-14.2.0`| +|1.20.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`xorg-macros/1.20.1-GCCcore-13.3.0`| +|1.20.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`xorg-macros/1.20.0-GCCcore-13.2.0`| +|1.20.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`xorg-macros/1.20.0-GCCcore-12.3.0`| +|1.19.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`xorg-macros/1.19.3-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/xprop.md b/docs/available_software/detail/xprop.md index d9aa96fdad..58135e7880 100644 --- a/docs/available_software/detail/xprop.md +++ b/docs/available_software/detail/xprop.md @@ -1,14 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: The xprop utility is for displaying window and font properties in an - X server. One window or font is selected using the command line arguments or possibly - in the case of a window, by clicking on the desired window. A list of properties - is then given, possibly with formatting information. + description: "The xprop utility is for displaying window and font properties in\ + \ an X server.\n One window or font is selected using the command line arguments\ + \ or possibly\n in the case of a window, by clicking on the desired window. A\ + \ list of\n properties is then given, possibly with formatting information." license: Not confirmed name: xprop offers: @@ -27,30 +25,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''xprop/1.2.6-GCCcore-12.3.0'']' + softwareVersion: '[''1.2.8'', ''1.2.6'']' url: https://www.x.org/wiki/ --- +# xprop -xprop -===== +The xprop utility is for displaying window and font properties in an X server. + One window or font is selected using the command line arguments or possibly + in the case of a window, by clicking on the desired window. A list of + properties is then given, possibly with formatting information. -The xprop utility is for displaying window and font properties in an X server. One window or font is selected using the command line arguments or possibly in the case of a window, by clicking on the desired window. A list of properties is then given, possibly with formatting information. +homepage: [https://www.x.org/wiki/](https://www.x.org/wiki/) -https://www.x.org/wiki/ -# Available modules +## Available installations -The overview below shows which xprop installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using xprop, load one of these modules using a `module load` command like: - -```shell -module load xprop/1.2.6-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|xprop/1.2.6-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|xprop version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.2.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`xprop/1.2.8-GCCcore-14.2.0`| +|1.2.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`xprop/1.2.6-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/xterm.md b/docs/available_software/detail/xterm.md new file mode 100644 index 0000000000..b7975652c3 --- /dev/null +++ b/docs/available_software/detail/xterm.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: X11 terminal emulator for the X Window System + license: Not confirmed + name: xterm + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''402'']' + url: https://xterm.dev/ +--- +# xterm + + +X11 terminal emulator for the X Window System + +homepage: [https://xterm.dev/](https://xterm.dev/) + +## Available installations + + +|xterm version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|402|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`xterm/402-GCCcore-13.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/xxHash.md b/docs/available_software/detail/xxHash.md index 6cbce6eed2..2c6a25c457 100644 --- a/docs/available_software/detail/xxHash.md +++ b/docs/available_software/detail/xxHash.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''xxHash/0.8.2-GCCcore-12.3.0'']' + softwareVersion: '[''0.8.2'']' url: https://cyan4973.github.io/xxHash --- - -xxHash -====== +# xxHash xxHash is an extremely fast non-cryptographic hash algorithm, working at RAM speed limit. -https://cyan4973.github.io/xxHash -# Available modules - - -The overview below shows which xxHash installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using xxHash, load one of these modules using a `module load` command like: +homepage: [https://cyan4973.github.io/xxHash](https://cyan4973.github.io/xxHash) -```shell -module load xxHash/0.8.2-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|xxHash/0.8.2-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|xxHash version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.8.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`xxHash/0.8.2-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/xxd.md b/docs/available_software/detail/xxd.md index 8931b696c1..1f872406cc 100644 --- a/docs/available_software/detail/xxd.md +++ b/docs/available_software/detail/xxd.md @@ -1,12 +1,12 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: xxd is part of the VIM package and this will only install xxd, not - vim!xxd converts to/from hexdumps of binary files. + description: 'xxd is part of the VIM package and this will only install xxd, not + vim! + + xxd converts to/from hexdumps of binary files.' license: Not confirmed name: xxd offers: @@ -25,31 +25,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''xxd/9.0.2112-GCCcore-12.3.0'', ''xxd/9.1.0307-GCCcore-13.2.0'']' + softwareVersion: '[''9.1.1457'', ''9.1.1275'', ''9.1.0307'', ''9.0.2112'']' url: https://www.vim.org --- - -xxd -=== - - -xxd is part of the VIM package and this will only install xxd, not vim!xxd converts to/from hexdumps of binary files. - -https://www.vim.org -# Available modules +# xxd -The overview below shows which xxd installations are available per target architecture in EESSI, ordered based on software version (new to old). +xxd is part of the VIM package and this will only install xxd, not vim! +xxd converts to/from hexdumps of binary files. -To start using xxd, load one of these modules using a `module load` command like: +homepage: [https://www.vim.org](https://www.vim.org) -```shell -module load xxd/9.1.0307-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|xxd/9.1.0307-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|xxd/9.0.2112-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|xxd version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|9.1.1457|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`xxd/9.1.1457-GCCcore-14.2.0`| +|9.1.1275|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`xxd/9.1.1275-GCCcore-13.3.0`| +|9.1.0307|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`xxd/9.1.0307-GCCcore-13.2.0`| +|9.0.2112|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`xxd/9.0.2112-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/yacrd.md b/docs/available_software/detail/yacrd.md index f1eb897f28..bec5c06214 100644 --- a/docs/available_software/detail/yacrd.md +++ b/docs/available_software/detail/yacrd.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -24,30 +22,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''yacrd/1.0.0-foss-2023a'']' + softwareVersion: '[''1.0.0'']' url: https://github.com/natir/yacrd --- - -yacrd -===== +# yacrd Yet Another Chimeric Read Detector. -https://github.com/natir/yacrd -# Available modules - - -The overview below shows which yacrd installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using yacrd, load one of these modules using a `module load` command like: +homepage: [https://github.com/natir/yacrd](https://github.com/natir/yacrd) -```shell -module load yacrd/1.0.0-foss-2023a -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|yacrd/1.0.0-foss-2023a|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|yacrd version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.0.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`yacrd/1.0.0-foss-2023a`| \ No newline at end of file diff --git a/docs/available_software/detail/yaml-cpp.md b/docs/available_software/detail/yaml-cpp.md index 22357cc6d0..5e288a5c49 100644 --- a/docs/available_software/detail/yaml-cpp.md +++ b/docs/available_software/detail/yaml-cpp.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,20 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''yaml-cpp/0.8.0-GCCcore-13.2.0'']' + softwareVersion: '[''0.8.0'']' url: https://github.com/jbeder/yaml-cpp --- - -yaml-cpp -======== +# yaml-cpp yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec -https://github.com/jbeder/yaml-cpp -# Available modules - - -The overview below shows which yaml-cpp installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using yaml-cpp, load one of these modules using a `module load` command like: +homepage: [https://github.com/jbeder/yaml-cpp](https://github.com/jbeder/yaml-cpp) -```shell -module load yaml-cpp/0.8.0-GCCcore-13.2.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|yaml-cpp/0.8.0-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|yaml-cpp version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|0.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`yaml-cpp/0.8.0-GCCcore-13.3.0`| +|0.8.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`yaml-cpp/0.8.0-GCCcore-13.2.0`| \ No newline at end of file diff --git a/docs/available_software/detail/yell.md b/docs/available_software/detail/yell.md index de4380487e..fd544c3054 100644 --- a/docs/available_software/detail/yell.md +++ b/docs/available_software/detail/yell.md @@ -1,6 +1,4 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication @@ -25,30 +23,19 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''yell/2.2.2-GCC-12.3.0'']' + softwareVersion: '[''2.2.2'']' url: https://github.com/rudionrails/yell --- - -yell -==== +# yell Yell - Your Extensible Logging Library is a comprehensive logging replacement for Ruby. -https://github.com/rudionrails/yell -# Available modules - - -The overview below shows which yell installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using yell, load one of these modules using a `module load` command like: +homepage: [https://github.com/rudionrails/yell](https://github.com/rudionrails/yell) -```shell -module load yell/2.2.2-GCC-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|yell/2.2.2-GCC-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|yell version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|2.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`yell/2.2.2-GCC-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/yelp-tools.md b/docs/available_software/detail/yelp-tools.md index 2c0c7bd80d..d64542045e 100644 --- a/docs/available_software/detail/yelp-tools.md +++ b/docs/available_software/detail/yelp-tools.md @@ -1,14 +1,16 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: yelp-tools is a collection of scripts and build utilities to help create,manage, - and publish documentation for Yelp and the web. Most of the heavylifting is done - by packages like yelp-xsl and itstool. This package justwraps things up in a developer-friendly - way. + description: 'yelp-tools is a collection of scripts and build utilities to help + create, + + manage, and publish documentation for Yelp and the web. Most of the heavy + + lifting is done by packages like yelp-xsl and itstool. This package just + + wraps things up in a developer-friendly way.' license: Not confirmed name: yelp-tools offers: @@ -27,30 +29,23 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''yelp-tools/42.1-GCCcore-12.3.0'']' + softwareVersion: '[''42.1'']' url: https://gitlab.gnome.org/GNOME/yelp-tools --- - -yelp-tools -========== - - -yelp-tools is a collection of scripts and build utilities to help create,manage, and publish documentation for Yelp and the web. Most of the heavylifting is done by packages like yelp-xsl and itstool. This package justwraps things up in a developer-friendly way. - -https://gitlab.gnome.org/GNOME/yelp-tools -# Available modules +# yelp-tools -The overview below shows which yelp-tools installations are available per target architecture in EESSI, ordered based on software version (new to old). +yelp-tools is a collection of scripts and build utilities to help create, +manage, and publish documentation for Yelp and the web. Most of the heavy +lifting is done by packages like yelp-xsl and itstool. This package just +wraps things up in a developer-friendly way. -To start using yelp-tools, load one of these modules using a `module load` command like: +homepage: [https://gitlab.gnome.org/GNOME/yelp-tools](https://gitlab.gnome.org/GNOME/yelp-tools) -```shell -module load yelp-tools/42.1-GCCcore-12.3.0 -``` +## Available installations -*(This data was automatically generated on {{ generated_time }})* -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|yelp-tools/42.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|yelp-tools version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|42.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`yelp-tools/42.1-GCCcore-14.3.0`| +|42.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`yelp-tools/42.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/yelp-xsl.md b/docs/available_software/detail/yelp-xsl.md index b6a923a954..277097c208 100644 --- a/docs/available_software/detail/yelp-xsl.md +++ b/docs/available_software/detail/yelp-xsl.md @@ -1,15 +1,14 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: yelp-xsl is a collection of programs and data files to help you build, - maintain, and distribute documentation. It provides XSLT stylesheets that can - be built upon for help viewers and publishing systems. These stylesheets output - JavaScript and CSS content, and reference images provided by yelp-xsl. This package - also redistributes copies of the jQuery and jQuery.Syntax JavaScript libraries. + description: "yelp-xsl is a collection of programs and data files to help you build,\ + \ maintain,\n and distribute documentation. It provides XSLT stylesheets that\ + \ can be built upon for help\n viewers and publishing systems. These stylesheets\ + \ output JavaScript and CSS content,\n and reference images provided by yelp-xsl.\ + \ This package also redistributes copies\n of the jQuery and jQuery.Syntax JavaScript\ + \ libraries.\n" license: Not confirmed name: yelp-xsl offers: @@ -28,30 +27,25 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''yelp-xsl/42.1-GCCcore-12.3.0'']' + softwareVersion: '[''42.1'']' url: https://gitlab.gnome.org/GNOME/yelp-xslg --- +# yelp-xsl -yelp-xsl -======== +yelp-xsl is a collection of programs and data files to help you build, maintain, + and distribute documentation. It provides XSLT stylesheets that can be built upon for help + viewers and publishing systems. These stylesheets output JavaScript and CSS content, + and reference images provided by yelp-xsl. This package also redistributes copies + of the jQuery and jQuery.Syntax JavaScript libraries. -yelp-xsl is a collection of programs and data files to help you build, maintain, and distribute documentation. It provides XSLT stylesheets that can be built upon for help viewers and publishing systems. These stylesheets output JavaScript and CSS content, and reference images provided by yelp-xsl. This package also redistributes copies of the jQuery and jQuery.Syntax JavaScript libraries. -https://gitlab.gnome.org/GNOME/yelp-xslg -# Available modules +homepage: [https://gitlab.gnome.org/GNOME/yelp-xslg](https://gitlab.gnome.org/GNOME/yelp-xslg) +## Available installations -The overview below shows which yelp-xsl installations are available per target architecture in EESSI, ordered based on software version (new to old). -To start using yelp-xsl, load one of these modules using a `module load` command like: - -```shell -module load yelp-xsl/42.1-GCCcore-12.3.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|yelp-xsl/42.1-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|yelp-xsl version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|42.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`yelp-xsl/42.1-GCCcore-14.3.0`| +|42.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`yelp-xsl/42.1-GCCcore-12.3.0`| \ No newline at end of file diff --git a/docs/available_software/detail/zstd.md b/docs/available_software/detail/zstd.md index f5a4d45880..aeb3e526d7 100644 --- a/docs/available_software/detail/zstd.md +++ b/docs/available_software/detail/zstd.md @@ -1,14 +1,13 @@ --- -hide: -- toc json_ld: '@context': https://schema.org '@type': SoftwareApplication applicationCategory: DeveloperApplication - description: Zstandard is a real-time compression algorithm, providing high compression - ratios. It offers a very wide range of compression/speed trade-off, while being - backed by a very fast decoder. It also offers a special mode for small data, called - dictionary compression, and can create dictionaries from any sample set. + description: "Zstandard is a real-time compression algorithm, providing high compression\ + \ ratios.\n It offers a very wide range of compression/speed trade-off, while\ + \ being backed by a very fast decoder.\n It also offers a special mode for small\ + \ data, called dictionary compression, and can create dictionaries\n from any\ + \ sample set." license: Not confirmed name: zstd offers: @@ -27,33 +26,27 @@ json_ld: ratingValue: 5 softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available on your system - softwareVersion: '[''zstd/1.5.2-GCCcore-12.2.0'', ''zstd/1.5.5-GCCcore-12.3.0'', - ''zstd/1.5.5-GCCcore-13.2.0'']' + softwareVersion: '[''1.5.7'', ''1.5.6'', ''1.5.5'', ''1.5.2'']' url: https://facebook.github.io/zstd --- +# zstd -zstd -==== +Zstandard is a real-time compression algorithm, providing high compression ratios. + It offers a very wide range of compression/speed trade-off, while being backed by a very fast decoder. + It also offers a special mode for small data, called dictionary compression, and can create dictionaries + from any sample set. -Zstandard is a real-time compression algorithm, providing high compression ratios. It offers a very wide range of compression/speed trade-off, while being backed by a very fast decoder. It also offers a special mode for small data, called dictionary compression, and can create dictionaries from any sample set. +homepage: [https://facebook.github.io/zstd](https://facebook.github.io/zstd) -https://facebook.github.io/zstd -# Available modules +## Available installations -The overview below shows which zstd installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using zstd, load one of these modules using a `module load` command like: - -```shell -module load zstd/1.5.5-GCCcore-13.2.0 -``` - -*(This data was automatically generated on {{ generated_time }})* - -| |aarch64/generic|aarch64/a64fx|aarch64/neoverse_n1|aarch64/neoverse_v1|aarch64/nvidia/grace|x86_64/generic|x86_64/amd/zen2|x86_64/amd/zen3|x86_64/amd/zen4|x86_64/intel/cascadelake|x86_64/intel/haswell|x86_64/intel/icelake|x86_64/intel/sapphirerapids|x86_64/intel/skylake_avx512| -| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | -|zstd/1.5.5-GCCcore-13.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|zstd/1.5.5-GCCcore-12.3.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| -|zstd/1.5.2-GCCcore-12.2.0|x|x|x|x|x|x|x|x|x|x|x|x|x|x| +|zstd version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.5.7|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`zstd/1.5.7-GCCcore-14.3.0`| +|1.5.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`zstd/1.5.6-GCCcore-14.2.0`| +|1.5.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`zstd/1.5.6-GCCcore-13.3.0`| +|1.5.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`zstd/1.5.5-GCCcore-13.2.0`| +|1.5.5|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`zstd/1.5.5-GCCcore-12.3.0`| +|1.5.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`zstd/1.5.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/docs/available_software/index.md b/docs/available_software/index.md new file mode 100644 index 0000000000..900316bfec --- /dev/null +++ b/docs/available_software/index.md @@ -0,0 +1,63 @@ +{% set data = load_json_eessi_software() %} +{% set software = data.software %} + +# Software available in EESSI + +Overview of software available in [EESSI's production repository `software.eessi.io`](../repositories/software.eessi.io.md). + +{{ data.n_software }} unique software projects (+ {{ data.n_extensions }} unique extensions) + + + + +
+ +{% for pkg in software %} +{% set pkg_slug = pkg.name | replace(' ', '-') %} +{% if pkg.is_extension -%} +- + {{ pkg.name }} + (extension) +
+

+ {{ pkg.name }} is a {% if pkg.type == "python" -%} Python package{% elif pkg.type == "r" -%}R library{% elif pkg.type == "perl" -%}Perl module{% endif %} + that is included as extension in the following software installations: +

    + {% for parent in pkg.all_parent_names %} + {% set parent_slug = parent | replace(' ', '-') %} +
  • {{ parent }}
  • + {% endfor %} +

    +
+
+{% else -%} +- + + {{ pkg.name }} + + (more details) +
+ {{ pkg.homepages }} +
+

+ {{ pkg.description }} +

+ Available in EESSI versions: {% if '2023.06' in pkg.eessi_versions -%}2023.06{% endif %}{% if '2025.06' in pkg.eessi_versions -%}2025.06{% endif %} +
+ Supported CPU families: {% if 'AMD' in pkg.cpu_families -%}AMD{% endif %}{% if 'Intel' in pkg.cpu_families -%}Intel{% endif %}{% if 'Arm' in pkg.cpu_families -%}Arm{% endif %}{% if 'RISC-V' in pkg.cpu_families -%}RISC-V{% endif %} +
+ Supported GPU families: {% if pkg.gpu_families == '' -%}(none){% else -%}{% if 'AMD' in pkg.gpu_families -%}AMD{% endif %}{% if 'NVIDIA' in pkg.gpu_families -%}NVIDIA{% endif %}{% endif %} +
+
+{% endif %} +{% endfor %} + +
+ +--- + +Last update: {{ data.timestamp }} diff --git a/docs/available_software/javascripts/populate_overview.js b/docs/available_software/javascripts/populate_overview.js deleted file mode 100644 index 3f2bd69ae5..0000000000 --- a/docs/available_software/javascripts/populate_overview.js +++ /dev/null @@ -1,72 +0,0 @@ -/** - * Copyright 2023-2023 Ghent University - * - * - * SPDX license identifier: GPL-3.0-or-later - * - * @author: Michiel Lachaert, Kenneth Hoste (HPC-UGent) - */ - -/** - * A function that populates the table on the module overview page with information about all the available modules. - */ -function populate_overview(json_data) { - fetch(json_data) - .then((response) => response.json()) - .then((json) => { - // Set generated time - const p = document.getElementById("time") - p.innerText = `This data was automatically generated ${json.time_generated}` - - - // CONSTRUCT TABLE - - // list with all the names of the targets - const all_targets = json.targets.map(x => { - //Todo: split up the strings of the targets to automate the hierarchy of the table header - console.log(x) - let pathArray = x.split("/") - pathArray = pathArray.slice(7) - console.log(pathArray) - console.log(pathArray[pathArray.length -1]) - x = pathArray[pathArray.length -1] - //x = pathArray - return ({"title": x}) - }) - console.log(all_targets) - console.log([...[{"title": "name"}], ...all_targets]) - const table = new DataTable('#overview_table', { - columns: [...[{"title": "name"}], ...all_targets], - paging: true, - columnDefs: [ - { - targets: "_all", - className: 'dt-body-center' - } - ], - scrollX: true, - }); - console.log(table) - - - // ADD DATA - let new_rows = []; - - // list_avaible contains a list with booleans. - // These booleans indicates if the software is available on the corresponding cluster. - for (const [software, list_available] of Object.entries(json.modules)) { - let new_row = [`${software}`]; - list_available.forEach(bool => new_row.push(bool ? "x" : "-")); - new_rows.push(new_row); - } - - table.rows.add(new_rows).draw(); - }) -} - -// Only start populating the table if the correct page has been loaded. -document$.subscribe(function() { - if (document.getElementById("overview_table")) { - populate_overview("../data/json_data.json") - } -}) diff --git a/docs/available_software/javascripts/software-filter.js b/docs/available_software/javascripts/software-filter.js new file mode 100644 index 0000000000..727d58f895 --- /dev/null +++ b/docs/available_software/javascripts/software-filter.js @@ -0,0 +1,18 @@ +/* + * Javascript for search box in software overview page (see docs/available_software/index.md) + */ +document.addEventListener("DOMContentLoaded", () => { + const input = document.getElementById("software-search"); + const cards = document.querySelectorAll(".software-card"); + + input.addEventListener("input", () => { + const q = input.value.toLowerCase(); + + cards.forEach(card => { + const li = card.closest("li"); + const text = card.dataset.search.toLowerCase(); + li.style.display = text.includes(q) ? "" : "none"; + }); + }); +}); + diff --git a/docs/available_software/macros.py b/docs/available_software/macros.py new file mode 100644 index 0000000000..9a486a7911 --- /dev/null +++ b/docs/available_software/macros.py @@ -0,0 +1,137 @@ +# Macros implemented in Python that can be used in MarkDown files, +# see also https://mkdocs-macros-plugin.readthedocs.io/en/latest/macros/ +# +# author: Kenneth Hoste (Ghent University) +# license (SPDX): GPL-2.0-only +# +import json +import os +import urllib.request +from pathlib import Path + +EESSI_API_SOFTWARE_JSON_URL = 'https://www.eessi.io/api_data/data/eessi_api_metadata_software.json' + +CPU_ARCHS = { + 'x86_64': ['AMD', 'Intel'], + 'aarch64': ['Arm'], + 'riscv64': ['RISC-V'], +} +GPU_ARCHS = { + 'amd': 'AMD', + 'accel/amd': 'AMD', + 'nvidia': 'NVIDIA', + 'accel/nvidia': 'NVIDIA', +} + + +def define_env(env): + + @env.macro + def load_json_eessi_software(): + """ + Load JSON with metadata for software.eessi.io repository, + and return Python dictionary with relevant info to generate software overview in EESSI documentation. + """ + # https://eessi.io/api_data/data/eessi_api_metadata_software.json is expected to be downloaded to docs/available_software/data/ + root_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + json_path = os.path.join(root_dir, 'docs', 'available_software', 'data', 'eessi_api_metadata_software.json') + if os.path.exists(json_path): + with open(json_path) as fp: + data = json.loads(fp.read()) + else: + with urllib.request.urlopen(EESSI_API_SOFTWARE_JSON_URL) as response: + data = json.loads(response.read().decode('utf-8')) + + data_software = data['software'] + names = data_software.keys() + + ext_parents = {} + + res = { + 'timestamp': data['timestamp'], + 'n_software': len(names), + 'software': [], + } + for name in names: + name_data = data_software[name] + versions = name_data['versions'] + + # use description is last version + descr = ' '.join(versions[-1]['description'].strip().splitlines()) + descr = descr.replace('<', 'less than ').replace('>', 'more than ') + + # use all homepages + homepages = set(x['homepage'].rstrip('/') for x in versions) + homepages = ', '.join("%(h)s" % {'h': h} for h in homepages) + + licenses = ', '.join(y for x in versions for y in x['license']) + + # determine set of supported CPU families (first part of CPU target names, like x86_64 or aarch64) + cpu_families = set() + for version in versions: + for cpu_arch in version['cpu_arch']: + cpu_family = cpu_arch.split('/')[0] + cpu_families.update(CPU_ARCHS.get(cpu_family, [cpu_family])) + + # determine set of supported GPU families + gpu_families = set() + for version in versions: + for gpu_arch in [y for x in version['gpu_arch'].values() for y in x]: + gpu_family = '/'.join(gpu_arch.split('/')[:-1]) + gpu_families.add(GPU_ARCHS.get(gpu_family, gpu_family)) + + # EESSI versions in which this software is available + eessi_versions = set() + + software = { + 'name': name, + 'homepages': homepages, + 'description': descr, + 'n_versions': len(versions), + 'licenses': licenses, + 'cpu_families': ', '.join(x for x in sorted(cpu_families)), + 'gpu_families': ', '.join(x for x in sorted(gpu_families)), + 'is_extension': False, + } + + for version in versions: + + # determine EESSI version in which this software version is installed + req_mods = version['required_modules'] + if req_mods and req_mods[0].get('module_name') == 'EESSI': + eessi_versions.add(req_mods[0]['module_version']) + + # pick up on extensions included in this software installation (if any) + for ext in version['extensions']: + ext_key = ext['type'] + ':' + ext['name'] + + # keep track of "parents" for this extension name (per extension version) + if ext_key in ext_parents: + parents = ext_parents[ext_key] + else: + parents = {} + ext_parents[ext_key] = parents + # new extension, so also add it to list of software + res['software'].append({ + 'is_extension': True, + 'name': ext['name'], + 'type': ext['type'], + 'parents': parents, + }) + parent = {'name': name, 'full_module_name': version['module']['full_module_name']} + parents.setdefault(ext['version'], []).append(parent) + + software['eessi_versions'] = ', '.join(sorted(eessi_versions)) + res['software'].append(software) + + res['software'] = sorted(res['software'], key=lambda x: x['name'].lower()) + + # collect names of all parents per extension + for ext in (x for x in res['software'] if x['is_extension']): + ext['all_parent_names'] = set([y['name'] for x in ext['parents'].values() for y in x]) + + res['n_extensions'] = len([x for x in res['software'] if x['is_extension']]) + + print(f"[software overview] {res['n_software']=}, {res['n_extensions']=}") + + return res diff --git a/docs/available_software/overview.md b/docs/available_software/overview.md deleted file mode 100644 index 7744cf043f..0000000000 --- a/docs/available_software/overview.md +++ /dev/null @@ -1,37 +0,0 @@ -# Available software (via modules) - -This table gives an overview of all the available software in EESSI per specific CPU target. - -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Nameaarch64x86_64
nvidiaamdintel
diff --git a/docs/blog/.authors.yml b/docs/blog/.authors.yml index f3c82c5ef1..bcad5c6139 100644 --- a/docs/blog/.authors.yml +++ b/docs/blog/.authors.yml @@ -71,7 +71,7 @@ authors: slug: https://github.com/Timvnc ocaisa: name: Alan O'Cais - description: University of Barcelona + description: "" avatar: https://avatars.githubusercontent.com/u/3840437?v=4 slug: https://github.com/ocaisa Crivella: @@ -94,3 +94,33 @@ authors: description: National Institute of Chemistry, Slovenia avatar: https://avatars.githubusercontent.com/u/134068856?v=4 slug: https://github.com/PPapez + unode: + name: Renato Alves + description: European Molecular Biology Laboratory, Germany + avatar: https://avatars.githubusercontent.com/u/122319?v=4 + slug: https://github.com/unode + jpecar: + name: Jure Pečar + description: European Molecular Biology Laboratory, Germany + avatar: https://avatars.githubusercontent.com/u/6461381?v=4 + slug: https://github.com/jpecar + fullama: + name: Anthony Fullam + description: European Molecular Biology Laboratory, Germany + avatar: https://avatars.githubusercontent.com/u/8556960?v=4 + slug: https://github.com/fullama + weber8thomas: + name: Thomas Weber + description: European Molecular Biology Laboratory, Germany + avatar: https://avatars.githubusercontent.com/u/32496011?v=4 + slug: https://github.com/weber8thomas + stefanomarangoni495: + name: Stefano Marangoni + description: European Molecular Biology Laboratory, Germany + avatar: https://avatars.githubusercontent.com/u/44709261?v=4 + slug: https://github.com/stefanomarangoni495 + admccartney: + name: Adam McCartney + description: Austrian Scientific Computing (ASC), TU Wien + avatar: https://avatars.githubusercontent.com/u/35410331?v=4 + slug: https://github.com/adammccartney diff --git a/docs/blog/posts/2026/01/EESSI-at-EMBL.md b/docs/blog/posts/2026/01/EESSI-at-EMBL.md new file mode 100644 index 0000000000..dbe131b26d --- /dev/null +++ b/docs/blog/posts/2026/01/EESSI-at-EMBL.md @@ -0,0 +1,36 @@ +--- +authors: [unode, fullama, stefanomarangoni495, jpecar, weber8thomas] +date: 2026-01-31 +slug: easy-EESSI-at-EMBL-CoDash +--- + +# Easy EESSI at EMBL + +## Experiences from EMBL's CoDash hackathon on EESSI + +Bringing EESSI and [EMBL](https://www.embl.org)'s computational community closer together during [EMBL's CoDash hackathon](https://grp-bio-it.embl-community.io/hackathons/). +Simultaneously working towards bringing a large repository of scientific software in-use at [EMBL's HPC cluster](https://www.embl.org/about/info/it-services/it-infrastructure/) to EESSI. + + + +At [EMBL](https://www.embl.org) we have been using EasyBuild for close to a decade now. +In this time we accumulated multiple terabytes of software installations covering a wide range of bioinformatics software, built for several Linux OSs and optimized for multiple generations of CPUs. +As there is great desire among scientists for this software stack to be a "take out" item they can bring to their next workplace, migrating most of it to EESSI is a logical next step, facilitating also reproducibility and computational workflow portability goals. + +![Modules available on the EMBL cluster](modules-embl-cluster-2026-01.png) + +With this in mind we took the opportunity of [the CoDash EMBL hackathon](https://grp-bio-it.embl-community.io/hackathons/) to get some focus time dedicated to this topic, as well as introduce more interested people to the underlying technology, how to approach it and how to work with it. +Our goal was for each of them to set up a private EasyBuild environment, where they could first build a piece of software that is already available in [easyconfigs repository](https://github.com/easybuilders/easybuild-easyconfigs/), then continue with building a piece of software from scratch and then repeat the exercise with EESSI as a base. +We also learned on how to submit an easyconfig for evaluation by EESSI and have it appear on CVMFS "overnight". + +![First contribution from the hackathon](first-hackathon-contribution-2026-01.png) + +Additionally we started working on extending an existing internal CI pipeline to be also able to build on top of EESSI. +The pipeline is implemented on an internal GitLab instance and builds all of our EasyBuild managed software. + +![Ongoing work on EMBL's GitLab CI](wip-gitlab-ci-2026-01.png) + +We also started discussing options of how this same pipeline could also submit easyconfigs upstream and once they're available globally, delete local installations. So more fun to come, hopefully before next year's hackathon :) + +The contributors at the hackathon, +Anthony Fullam, Jure Pečar, Renato Alves, Stefano Marangoni, Thomas Weber diff --git a/docs/blog/posts/2026/01/Spack-on-top-of-EESSI-PoC.md b/docs/blog/posts/2026/01/Spack-on-top-of-EESSI-PoC.md index 5c1cc03a56..5f65794910 100644 --- a/docs/blog/posts/2026/01/Spack-on-top-of-EESSI-PoC.md +++ b/docs/blog/posts/2026/01/Spack-on-top-of-EESSI-PoC.md @@ -28,7 +28,7 @@ and leveraging software installations from EESSI for all required dependencies, ### Step 1: A Spack database for EESSI -To get started, we created an external *Spack database* using the [`spack.database.Database` class](https://spack.readthedocs.io/en/latest/spack.html#module-spack.database) +To get started, we created an external ("upstream") *Spack database* using (a modded version of) the [`spack.database.Database` class](https://spack.readthedocs.io/en/latest/spack.html#module-spack.database) that Spack provides, which exposes software installed in EESSI to Spack. This was done through a Python script, and only for a small set of hand-picked software @@ -38,7 +38,7 @@ Using `spack find`, we can check whether Spack is aware of these installations: ![Spack database for software installations included in EESSI](spack-eessi-20251106-001.webp) -Looks good so far... +The `[^]` symbol indicates a package that is provided by our custom "upstream" database. Looks good so far... ### Step 2: Checking required dependencies for QuantumESPRESSO @@ -53,7 +53,7 @@ When done correctly, we can see that all required dependencies are indeed resolv ![Checking required dependencies with `spack spec`](spack-eessi-20251106-002.webp) Here, we use `@7.4.1` to specify the QuantumESPRESSO version we want to install, -and `~mpi` to ensure that the QuantumESPRESSO installation will have MPI support. +and `~mpi` to disable MPI support, for the sake of this simple exercise. ### Step 3: Installing QuantumESPRESSO with Spack @@ -90,5 +90,7 @@ but this is a nice first step... This work is being done in collaboration with members of the Spack development team, including Todd Gamblin and Massimiliano Culpo. +The code and scripts developed for this proof-of-concept are available in the [Spood repository](https://github.com/lorisercole/spood). See "Approach #2 [legacy]" in the README for implementation details. + For updates, check the [dedicated support issue](https://gitlab.com/eessi/support/-/issues/170) that was opened on using Spack on top of EESSI, or stay tuned for future blog posts! diff --git a/docs/blog/posts/2026/01/first-hackathon-contribution-2026-01.png b/docs/blog/posts/2026/01/first-hackathon-contribution-2026-01.png new file mode 100644 index 0000000000..775486d039 Binary files /dev/null and b/docs/blog/posts/2026/01/first-hackathon-contribution-2026-01.png differ diff --git a/docs/blog/posts/2026/01/modules-embl-cluster-2026-01.png b/docs/blog/posts/2026/01/modules-embl-cluster-2026-01.png new file mode 100644 index 0000000000..5fdfb1f2d0 Binary files /dev/null and b/docs/blog/posts/2026/01/modules-embl-cluster-2026-01.png differ diff --git a/docs/blog/posts/2026/01/wip-gitlab-ci-2026-01.png b/docs/blog/posts/2026/01/wip-gitlab-ci-2026-01.png new file mode 100644 index 0000000000..52a0fadc05 Binary files /dev/null and b/docs/blog/posts/2026/01/wip-gitlab-ci-2026-01.png differ diff --git a/docs/blog/posts/2026/02/Spack-on-top-of-EESSI-best-of-both-worlds.md b/docs/blog/posts/2026/02/Spack-on-top-of-EESSI-best-of-both-worlds.md new file mode 100644 index 0000000000..5bd7aa2f3c --- /dev/null +++ b/docs/blog/posts/2026/02/Spack-on-top-of-EESSI-best-of-both-worlds.md @@ -0,0 +1,220 @@ +--- +authors: [lorisercole] +date: 2026-02-05 +slug: Spack-on-top-of-EESSI-best-of-both-worlds +--- + +# Using Spack on Top of EESSI: Best of Both Worlds + +
+![Spack + EESSI](../01/spack-plus-eessi.webp){width=75%} +
+ +The HPC software landscape offers powerful tools for managing scientific software, such as [EasyBuild](https://easybuild.io) and [Spack](https://spack.io). + +[EESSI](https://www.eessi.io) provides a ready-to-use software stack with thousands of optimized software installations that were built with EasyBuild. + +Imagine you are working on an HPC system with EESSI already available. You have access to a wealth of optimized installations for scientific software packages, libraries, tools, as well as compilers. But you need to install a new tool or a specific version of a package that's not in EESSI yet. + +You can already extend EESSI with new software through the [EESSI-extend](../../../../using_eessi/building_on_eessi.md) module. +This utility provides you with a pre-configured EasyBuild installation that you can use to build packages from [easyconfig files](https://docs.easybuild.io/terminology/#easyconfig_files). + +Like EasyBuild, [Spack](https://spack.io) is a flexible build tool that also offers a vast repository of build recipes maintained by a large and active community, making it a familiar tool for many HPC users. +By enabling Spack to leverage software installations already available in EESSI as dependencies, we can offer users the best of both worlds: the convenience of a pre-built, optimized software stack combined with the flexibility to quickly build new packages using tools they already know. + + + + +In a previous [blog post](../01/Spack-on-top-of-EESSI-PoC.md), we presented a first proof-of-concept implementation of this vision. +We used a custom-built upstream database to make Spack aware of EESSI's software stack and managed to build a new Quantum ESPRESSO installation that reused dependencies from EESSI. + +Thanks to recent updates to Spack (in particular, treating externals as concrete specs and allowing the definition of dependencies – see [this pull request in Spack](https://github.com/spack/spack/pull/51118)) and an active collaboration with its developers, it is now possible to connect Spack and EESSI in a *seamless* and *Spack-native* way. + +## How it works + +Spack 1.1+ introduces external packages treated as concrete specs (i.e. like any other spec), with dependency support, allowing us to expose software installed in EESSI as externals along with their dependencies. +This is the proper, *Spack-onic* way to achieve our goal, and it does not require any modification of Spack's source code, nor the creation of a custom database. + +!!! note + + Currently we need to add a small patch to Spack to make sure its compiler wrapper works correctly + with the unusual sysroot configuration of EESSI. This is a known + [issue](https://github.com/spack/spack/issues/51582) that will be addressed in future Spack releases. + +We implement the following workflow to connect Spack to EESSI, and build a new Quantum ESPRESSO with Spack reusing EESSI packages as dependencies. + + +### Step 1 – External packages for EESSI software layer + +Declare software installations in EESSI software layer as [external packages](https://spack.readthedocs.io/en/latest/packages_yaml.html#external-packages) in a `packages.yaml` configuration file with [external dependencies](https://spack.readthedocs.io/en/latest/packages_yaml.html#specifying-dependencies-among-external-packages). + +```yaml +# Example of packages.yaml file for EESSI software stack without compat-layer packages (to be added by detection tool) +# EESSI detected microarchitecture: haswell +packages: + gcc: + externals: + - spec: gcc@13.2.0 languages:='c,c++,fortran' target=haswell + prefix: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/GCCcore/13.2.0 + dependencies: [] + extra_attributes: + compilers: + c: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/GCCcore/13.2.0/bin/gcc + cxx: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/GCCcore/13.2.0/bin/g++ + fortran: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/GCCcore/13.2.0/bin/gfortran + gmake: + externals: + - spec: gmake@4.4.1 target=haswell + prefix: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/make/4.4.1-GCCcore-13.2.0 + dependencies: + - spec: gcc@13.2.0 target=haswell + openblas: + externals: + - spec: openblas@0.3.24~ilp64 threads=openmp target=haswell + prefix: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/OpenBLAS/0.3.24-GCC-13.2.0 + dependencies: + - spec: gcc@13.2.0 target=haswell + fftw: + externals: + - spec: fftw@3.3.10~mpi+openmp+shared precision=float,double,long_double,quad target=haswell + prefix: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/FFTW/3.3.10-GCC-13.2.0 + dependencies: + - spec: gcc@13.2.0 target=haswell + curl: + externals: + - spec: curl@8.3.0+nghttp2 target=haswell + prefix: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/cURL/8.3.0-GCCcore-13.2.0 + dependencies: + - spec: gcc@13.2.0 target=haswell + - spec: zlib@1.2.13 # compat + deptypes: + - link + - spec: openssl@1.1.1w # compat + deptypes: + - build + - link + libarchive: + externals: + - spec: libarchive@3.7.2 target=haswell + prefix: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/libarchive/3.7.2-GCCcore-13.2.0 + dependencies: + - spec: gcc@13.2.0 target=haswell + cmake: + externals: + - spec: cmake@3.31.8 target=haswell + prefix: /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/intel/haswell/software/CMake/3.27.6-GCCcore-13.2.0 + dependencies: + - spec: gcc@13.2.0 target=haswell + - spec: curl@8.3.0 target=haswell + deptypes: + - build + - link + - spec: ncurses@6.4.20230401 # compat + deptypes: + - build + - link + - spec: zlib@1.2.13 # compat + deptypes: + - build + - link + - spec: libarchive@3.7.2 target=haswell + deptypes: + - build + - link + - spec: bzip2@1.0.8 # compat + deptypes: + - link + - spec: openssl@1.1.1w # compat + deptypes: + - build + - link + +``` + +*Variants* (e.g. `~mpi+openmp`) should be specified to the best of our knowledge. By default, Spack will fill in the gaps with the package's default variants. + +*Link* and *runtime dependencies* should be specified whenever possible. Pure build dependencies are not needed (the only exception being the *compiler*, since Spack can reuse this information). A dependency spec should unambiguously point to another declared external package. If an ambiguity exists, Spack will throw an error. + +Many packages in EESSI depends on packages of the compatibility layer (e.g. `zlib`), that were filtered out during the build process. To detect these packages, see the [next step](#step-2-optional-suggested-eessi-compat-layer). + +Since software installations in EESSI are always RPATH'ed to their dependencies, linking will likely work in most real-case scenarios even if you forget to declare some dependencies. + + +### Step 2 – (optional, suggested) EESSI compatibility layer + +It is possible to detect software installations available in the EESSI compatibility layer and configure Spack to use them as externals. +In EESSI, these are often dependencies of software installations in the software layer (see previous example), so it is suggested to include them. + +This can be done automatically via `spack external find`: + + + + +### Step 3 – Show configured externals + +Externals can then be listed via `spack find --show-configured-externals`. +These packages will get reused during Spack solves by default. + +![Show configured externals](spack-eessi-20260205-001.webp) + + +### Step 4 – Build a new Quantum ESPRESSO with Spack + +We can now build new packages with Spack, reusing EESSI installations as dependencies! +Let's try this out by building a new Quantum ESPRESSO with Spack. + +We first check what the concretizer comes up with, using `spack spec -I quantum-espresso~mpi`: + +![Spack spec for quantum-espresso](spack-eessi-20260205-002.webp) + +Looks good! Spack is reusing EESSI packages as external dependencies. +It only needs to build the new `quantum-espresso` itself and a few Spack-specific packages: `compiler-wrapper` that is Spack's compiler wrapper, and `gcc-runtime` that is a local copy of the GCC runtime libraries that are provided by EESSI's `gcc@13.2.0`. + +Finally, we can proceed with the installation with `spack install quantum-espresso~mpi`: + + + + +### Step 5 – Verify and run Quantum ESPRESSO + +Finally, we can verify that the new Quantum ESPRESSO installation works correctly by running it: + +![Running Quantum ESPRESSO installed with Spack](spack-eessi-20260205-003.webp) + +When we inspect the `pw.x` binary, we can see that it links to libraries provided by EESSI: + +![Inspecting the list of libraries that `pw.x` binary links to](spack-eessi-20260205-004.webp) + +(the only exception being `libgomp`, `libgfortran`, `libgcc_s` which come from the `gcc-runtime` package that Spack installs). + + +## Demo code + +A demonstrated implementation of the presented approach is now available in the [Spood repository](https://github.com/lorisercole/spood). + +A simple [example script](https://github.com/lorisercole/spood/blob/develop/quick_start.sh) showcases the workflow. +It only requires a running EESSI environment and a patched Spack installation (see instructions in the [README](https://github.com/lorisercole/spood/blob/develop/README.md)): + + + + +## Conclusions and outlook + +The workflow we presented is a simple demonstration of how Spack can be integrated with EESSI to leverage its optimized software stack. +More complex scenarios, like building MPI-enabled packages and pre-configured toolchains, are being actively explored. + +A complete integration of Spack with EESSI will require building some automation around the generation of the `packages.yaml` files to keep them in sync with EESSI updates, as well as further testing and validation of various build scenarios. + +Such an integration will open powerful workflows for HPC users and administrators, allowing new software to be built quickly on top of EESSI's stable, optimized base by leveraging either Spack or EasyBuild. + +The future of HPC software management is not about choosing between distributions and package managers: it is about making them work together seamlessly. + +--- + +### Learn more and get involved + +We encourage you to join the discussion on the `#spack` channel of [EESSI Slack]({{ config.extra.slack_invite_url }}), as well as our weekly [EESSI Happy Hour sessions](https://www.eessi.io/docs/training-events/happy-hours-sessions/), and share your experiences and suggestions! + +### Acknowledgements + +This work was made possible thanks to the collaboration with the Spack development team, in particular [Todd Gamblin](https://github.com/tgamblin) and [Massimiliano Culpo](https://github.com/alalazo), as well as EESSI team members [Kenneth Hoste](https://github.com/boegel) and [Alan O'Cais](https://github.com/ocaisa). diff --git a/docs/blog/posts/2026/02/spack-eessi-20260205-001.webp b/docs/blog/posts/2026/02/spack-eessi-20260205-001.webp new file mode 100644 index 0000000000..c37c67c610 Binary files /dev/null and b/docs/blog/posts/2026/02/spack-eessi-20260205-001.webp differ diff --git a/docs/blog/posts/2026/02/spack-eessi-20260205-002.webp b/docs/blog/posts/2026/02/spack-eessi-20260205-002.webp new file mode 100644 index 0000000000..bd32f188b6 Binary files /dev/null and b/docs/blog/posts/2026/02/spack-eessi-20260205-002.webp differ diff --git a/docs/blog/posts/2026/02/spack-eessi-20260205-003.webp b/docs/blog/posts/2026/02/spack-eessi-20260205-003.webp new file mode 100644 index 0000000000..40a71c93b5 Binary files /dev/null and b/docs/blog/posts/2026/02/spack-eessi-20260205-003.webp differ diff --git a/docs/blog/posts/2026/02/spack-eessi-20260205-004.webp b/docs/blog/posts/2026/02/spack-eessi-20260205-004.webp new file mode 100644 index 0000000000..37dadbea1d Binary files /dev/null and b/docs/blog/posts/2026/02/spack-eessi-20260205-004.webp differ diff --git a/docs/blog/posts/2026/03/EFP-FSC-202602.webp b/docs/blog/posts/2026/03/EFP-FSC-202602.webp new file mode 100644 index 0000000000..9d485933d1 Binary files /dev/null and b/docs/blog/posts/2026/03/EFP-FSC-202602.webp differ diff --git a/docs/blog/posts/2026/03/EFP-Interactive-ParaView-202603.webp b/docs/blog/posts/2026/03/EFP-Interactive-ParaView-202603.webp new file mode 100644 index 0000000000..5716b32860 Binary files /dev/null and b/docs/blog/posts/2026/03/EFP-Interactive-ParaView-202603.webp differ diff --git a/docs/blog/posts/2026/03/efp-webinar.md b/docs/blog/posts/2026/03/efp-webinar.md new file mode 100644 index 0000000000..d1bd7be087 --- /dev/null +++ b/docs/blog/posts/2026/03/efp-webinar.md @@ -0,0 +1,167 @@ +--- +authors: [boegel, ocaisa] +date: 2026-03-09 +slug: EESSI-in-EFP-update +--- + +# Update on EESSI in EuroHPC Federation Platform + +Since our [blog post in Feb'25](../../2025/02/eessi-integration-in-efp.md) announcing that EESSI will be integrated in the [EuroHPC Federation Platform (EFP)](https://my-eurohpc.eu), we have been working hard on making this a reality. + +
+![EFP Federated Software Catalog](EFP-FSC-202602.webp){width=70%} +
+ +The **Federated Software Catalog** (FSC) component of EFP will use EESSI as a base. As a result, EESSI will soon be available on *all* [EuroHPC supercomputers](https://www.eurohpc-ju.europa.eu/supercomputers_en). + +In fact, EESSI is *already* available on the majority of them today! + + + +## EESSI as a base for the EFP Federated Software Catalog + +The Federated Software Catalog component of EFP +aims to provide a **uniform software stack** for end users across all EuroHPC supercomputers, with a focus on +applications, tools, and libraries (not system software like Slurm, network or GPU drivers, etc.). + +The goal is to alleviate some of the hurdles that researchers bump into when moving from one system to another, +by providing the exact same software environment everywhere. + +Does this ring a bell? It should! + +[EESSI](../../../../index.md), the European Environment for Scientific Software Installations, +is the perfect base for the EFP Federated Software Catalog. + +Not only will EESSI be available on all EuroHPC supercomputers, it lowers the barrier to entry to these systems +because it is also available on [various other HPC systems](../../../../systems.md). This enables people to familiarize +themselves with the software environment that will be available to them when they switch to a EuroHPC system. + +EESSI can also easily be installed in on-premise or commercial cloud environments. As we saw in a +[recent blog post](../../2025/12/eessi-k8.md), EESSI can be used as a Kubernetes Container Storage Interface (CSI) plugin +which makes it an excellent fit for some of the technologies we are likely to see in +[EuroHPC AI Factories](https://www.eurohpc-ju.europa.eu/ai-factories_en). + +In addition, EESSI has further advantages from an end user perspective since it can also be used in +[CI environments like GitHub Actions](../../../../using_eessi/eessi_in_ci.md), +and on personal workstations running [Linux](../../../../getting_access/native_installation.md), +or even in [Windows](../../../../getting_access/eessi_wsl.md) or [macOS](../../../../getting_access/eessi_limactl.md) +by using a Linux virtual machine. + +This is why [HPC team at Ghent University](https://www.ugent.be/hpc/en) was invited to join the EFP consortium, +which is led by [CSC - IT Center for Science](https://csc.fi/en/): to help with *integrating* EESSI into the EuroHPC Federation Platform. + + +## Deep integration in EFP + +EESSI is the base for the EFP Federated Software Catalog, but it is also being deeply integrated into several other EFP components. + +The *MyEFP user portal* will provide an overview of software that is available in the Federated Software Catalog, +specifically in the context of EuroHPC infrastructure. It will map the [CPU](../../../../software_layer/cpu_targets.md) +and [GPU](../../../../software_layer/gpu_targets.md) targets that EESSI supports to partitions of the EuroHPC supercomputers, +so that researchers can easily tell on which systems optimized installations of the software they would like to use are already available. + +Additionally, the *EFP Interactive* component that consists of a federated instance of [Open OnDemand](https://www.openondemand.org) +managed by the EFP consortium will rely on EESSI for the various interactive apps it provides. +This includes for example Jupyter, RStudio, MLflow, and even a Linux desktop environment in which GUI applications like ParaView can be run. + +
+![ParaView in desktop session via EFP Interactive](EFP-Interactive-ParaView-202603.webp){width=70%} +
+ +EESSI will effectively enable researchers to write *portable* (Slurm) job scripts that work across EuroHPC supercomputers, +as well as efficiently run entire workflows via the *EFP Workflows* component that is based on [LEXIS](https://docs.lexis.tech/). +These workflows may be executed not just within a single system, but even across multiple systems. + +Much of this is facilitated by the central internal API that is provided by the *EFP Allocations* component (based +on [Waldur](https://waldur.com/)), which allows other EFP components to query the contents of Federated Software Catalog +by providing an API that leverages the publicly available [EESSI data files](https://www.eessi.io/api_data/data/). + + +## Current availability of EESSI on EuroHPC supercomputers + +EESSI is already available on 7 out of 9 of current [EuroHPC supercomputers](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en). + +This includes, in alphabetical order: + +- [Deucalion](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#deucalion) in Portugal, hosted by [FCT](https://www.fct.pt/en) and managed by [CNCA](https://www.incd.pt/); +- [Discoverer](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#discoverer) in Bulgaria, hosted by [Sofia Tech Park](https://sofiatech.bg/en/); +- [Karolina](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#karolina) in Czech Republic, hosted by [IT4Innovations (IT4I)](https://www.it4i.cz/en); +- [Leonardo](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#leonardo) in Italy, hosted by [CINECA](https://www.cineca.it/en); +- [MareNostrum 5](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#marenostrum-5) in Spain, hosted by [Barcelona Supercomputing Centre](http://bsc.es/); +- [MeluXina](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#meluxina) in Luxembourg, hosted by [LuxProvide](https://luxprovide.lu/); +- [Vega](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#vega) in Slovenia, hosted by [IZUM](https://www.izum.si/en/home/); + +We are currently working closely together with [CSC – IT Center for Science](https://csc.fi/en/) to make EESSI available on +[LUMI](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#lumi), +and with [Jülich Supercomputing Centre (JSC)](https://www.fz-juelich.de/en/jsc) to do the same on +[JUPITER](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#jupiter). + + +## Webinars + +A series of webinars introducing the EuroHPC Federation Platform have been organised recently, with more coming up soon; see [https://my-eurohpc.eu/training](https://my-eurohpc.eu/training). + +The recordings of the first three webinars are embedded below, along with a link to the slides. + +### Introduction to EFP + +On 4 February 2026, a general introduction to the EuroHPC Federation Platform was presented by CSC. +It outlines the overall scope of the project, and briefly covers the role of each of its components. + +
+
+ +Over 250 people attended this webinar, confirming the broad interest from the EuroHPC community. + +The slides for this webinar are available here. + + +### EFP Federated Software Catalog + +On 25 February 2026, we presented the Federated Software Catalog in the 2nd EFP webinar. + +We covered the role of EESSI as its base, gave a quick introduction to EESSI itself, +and provided a high-level overview of the software installations that are already provided by EESSI. + +A quick demo with running GROMACS using the exact same job script on the EuroHPC supercomputers Vega and Deucalion +helped to convey to attendees how this could positively impact their daily workflow. + +
+ +
+ +The 100+ attendees of this webinar raised a variety of interesting questions, most of which were answered during the Q&A at the end. + +The slides for this webinar are available here. + +### EFP Interactive + +On 4 March 2026, the EFP Interactive component was covered in depth in a 3rd webinar. + +It showed how the Federated Software Catalog based on EESSI powers various interactive apps, +and included a live demo of the main features of this federated Open OnDemand instance. + +
+ +
+ +During Q&A, questions by the numerous (160+) attendees were answered. + +The slides for this webinar are available here. + +## Next steps + +Over the next couple of weeks and months, we will keep collaborating with the EuroHPC Hosting Entities to stabilize +the deployments of EESSI on the EuroHPC supercomputers, and get EESSI onboarded on the upcoming systems, +like [Arrhenius](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#arrhenius) in Sweden, +[DAEDALUS](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#daedalus) in Greece, +and [Alice Recoque](https://www.eurohpc-ju.europa.eu/supercomputers/our-supercomputers_en#alice-recoque) in France. + +In addition, we will provide concise but thorough documentation on the use of EESSI on the EuroHPC supercomputers, +and provide support to researchers who rely on it for their EuroHPC projects. + +The first version of the EuroHPC Federation Platform will become available soon: it is planned to be production-ready +by end of March 2026. By then, EESSI should be available on all current EuroHPC supercomputers. + +People who have questions related to the Federated Software Catalog of the EuroHPC Federation Platform +should contact the EFP Helpdesk via ``helpdesk (at) my-eurohpc.eu``. diff --git a/docs/blog/posts/2026/04/MUSICA-v2-32-Matthias_Heisler.jpg b/docs/blog/posts/2026/04/MUSICA-v2-32-Matthias_Heisler.jpg new file mode 100644 index 0000000000..c089c86cd8 Binary files /dev/null and b/docs/blog/posts/2026/04/MUSICA-v2-32-Matthias_Heisler.jpg differ diff --git a/docs/blog/posts/2026/04/eessi-musica.md b/docs/blog/posts/2026/04/eessi-musica.md new file mode 100644 index 0000000000..2bad2f4f33 --- /dev/null +++ b/docs/blog/posts/2026/04/eessi-musica.md @@ -0,0 +1,275 @@ +--- +authors: [admccartney] +date: 2026-04-02 +slug: eessi-musica +--- + +# Choosing EESSI as a base for MUSICA + +
+ ![MUSICA](MUSICA-v2-32-Matthias_Heisler.jpg){width=75%} +
(c) Matthias Heisler 2026
+
+ +MUSICA (Multi-Site Computer Austria) is the latest addition to Austria's +national supercomputing infrastructure. The system's compute resources +are distributed across three locations in Austria: Vienna, Innsbruck, +and Linz. We describe the process that led to the adoption of EESSI +as a base for the software stack on the MUSICA system at the [Austrian +Scientific Computing (ASC) research center](https://asc.ac.at/home/). + + + +The background section aims to provide a brief history of how cluster +computing at ASC has evolved, with a particular focus on the various +incarnations of the software stack. We outline our motivations for +redesigning a system that delivers the software stack, for initial +use on the MUSICA HPC system. We describe the timeline of events that +lead to the experiments with EESSI and EasyBuild, and offer details of +the two complementary approaches of building a software stack that we +compared. Finally, we offer a critical reflection on our experiments +and outline our ultimate reason for choosing to use EESSI as a base and +blueprint for the software stack. + + +## Background + +The ASC (formerly VSC) is a national center for high performance +computing and research powered by scientific software. The flagship +cluster VSC-1 was in service from 2009-2015, succeeded by a series of +clusters (2-5)[^1]. VSC 4 and 5 are the two clusters that remain in +service as of 2026, they will be joined in April 2026 by a new cluster +MUSICA, which stands for Multi-Site Compute Austria. MUSICA is a GPU +centric cluster run on OpenStack and has so far been the main testing +ground for our initial experiments with EasyBuild and EESSI. + +The management of the software stack at ASC evolved along the following +lines: + ++ VSC 1, 2: Initially catered to small groups of expert users, all + software was installed manually. + ++ VSC 3, 4: Still partially managed by hand. A set of scripting tools for + structuring software directory trees. These tools were initially copied + from Innsbruck and adapted to work on the VSC. Use of Tcl modules was also + adopted at this time. + ++ VSC 4, 5: Spack introduced (reduced the need for custom install + scripts, install lots of software quickly, pull in dependencies + automatically). + +## Motivation + +Internal discussions led to a comprehensive understanding of where +the current software stack was lacking and where it would ideally be. +During the discussions, members of the user support team were able +to clearly articulate the various use cases generated by users. This +lead to setting a number of high level goals that were used to derive +requirements. At a very high level, some of the more important goals can +be summarized as: + + - Improved reproducibility and redeployment. + - Establishment of clear release cycles. + - Creation of a more organized and user-friendly representations for the + cluster users. + +We articulated what an ideal software stack should look like, and we +identified a number of issues with the way the software stack was +currently managed. + +### Tooling & Presentation + +The way that we had been using Spack and Tcl Modules had led to a +fairly unmanageable situation on our clusters. To meet user requests +for software, we adopted a pragmatic approach. This led to a situation +in which a myriad of software variants were installed into the shared +file system hosting the systems' software. This quickly led to a +fairly overwhelming presentation of available modules to the user. +Another major issue here was that there were significant issues around +deduplication. We don't know the root cause of this, it may just have +been a misconfigured Spack. In any case, we ended up in an untenable +situation where certain dependencies would get installed many times +over. For example, there were multiple installs of the same OpenMPI +version on the system, all built slightly differently and most untested +on the systems. This meant that there was no way to indicate to the user +which version of a particular software was the one that worked. + +### Build procedure hard to reproduce + +During the last operating system upgrade, the need for a more automated +build process was painfully felt. Because most software was built ad-hoc +in response to user request, sometimes the only record of the build procedure +were the build artefacts themselves. This meant manually going over a very large +software repository and rebuilding everything more or less by hand for the new +operating system. + +### Poor bus factor + +This one refers to the well known metric from software engineering about +the degree of shared knowledge on a specialized domain within the team. +How many people would have to be hit by a bus before the team could +cease to carry out its work? In this particular case, the knowledge about the +software stack was concentrated in one or two individuals. + +## Searching + +As outlined above, the numerous issues with the current stack +established the frame in which to search for a set of tools and methods +to ease the realisation of the high level goals for the software +stack. To reiterate, manageability and user-friendliness were top of the list. + + +### Timeline + +We formed the The Software And Modules (SAM) working group in Q4 2024. +SAM consists of 5 people that are dedicating the majority of their +time to exploring possible alternative ways of building, managing and +presenting the software stack to users. The members draw on expertise +from different areas, notably from their work on the user-support, +sysadmin and platform teams. The goal for the new software stack was to +have it up and running on the new MUSICA system towards the end of 2025. + ++ *Summer 2024*: + Initial meetings that highlighted the need to reform the management + of software so that it could be easy to use, transparent and logical, + as well as tested and performant. This is the first mention of + EESSI/EasyBuild as possible alternatives to Spack and Lmod as an alternative + to Tcl Modules. + ++ *Autumn 2024*: + Working group established and a broad set of tools and approaches were + compared, namely an installation of Spack with Environment modules, + an installation of Guix, and an installation of EESSI. + These tools were evaluated against a set of high level user + requirements that we agreed. The outcome was to focus on Easybuild and + EESSI. + ++ *Winter 2024 - Spring 2025*: + Made the strategic decision to have EESSI installed on the MUSICA + system. Decided to run a small experiment whereby a small software + stack would be built and installed, in order to compare and contrast + approaches - "EESSI on the side" vs. "EESSI as a base". + ++ *Summer 2025*: + In June 2025, the system entered a closed test phase. In this phase + the system was open to a small number of power users. The core + software was provided by EESSI. The custom stack was extended during this + phase, in response to user software requests that center mostly around + proprietary software. + ++ *Autumn 2025 - Winter 2025/2026*: + In November 2025 the MUSICA open test phase began. At this stage + anyone with an existing account at ASC was granted access to the + system upon request. At the end of the open test phase, users + participated in a survey. Generally the response was quite positive + towards the setup of the system. + + - Users categorized their usage according to scientific domain, the largest + groups were: + Physics (45), AI (41), Chemistry (24), Data Science (15), Bioinformatics (11) + + - In response to a question as to whether the module system was used, or if + the user relied on individual installations: 32 used the module system; 24 + preferred an individual installation; 43 used a mixture of both. + + - What did users used to build, install or run their software? Of 99 + respondents: + + 63: Conda/Pip + + 21: `EESSI-extend` + + 16: None of these + + 15: Containers + + 13: buildenv + + 5: Spack + + - 5 out of 77 comments on the experience of compiling software on the + system explicitly mention using `$LD_LIBRARY_PATH`. Despite having + highlighted the recommendation to use the `buildenv` modules when + compiling, the users preferred their own approach. + Generally the `buildenv` modules and usage of RPATH wrappers is not + that well understood on the SAM team, so it's hard to explain to + users *why* the should be using this approach. + + +## Experiments + +### Test stack + +The following programs were agreed upon as a way to come in to contact +with specific workflows, such as writing easyconfig files, writing +custom easybuild hooks, installing commercial software, installing gpu +specific application software. + ++ AOCC 5.0.0 ++ Intel Compilers ++ Vasp 6.5.0 ++ 1 Commercial software (starccm, mathematica) ++ NVHPC ++ VASP 6.5.0 GPU ++ Containers (singularity, docker, nvidia) + +### EESSI on the side + +This approach in a sense represents the traditional way to build a +software stack, building everything directly on the host (Rocky Linux 9), and +relying on system libraries. It used scripts and wrappers from the sse2 +toolkit from National Supercomputer Centre at Linköping University as +a way to manage and structure the modules and software installations. +The software builds were a mixture of EasyBuild scripts and makefiles. +EESSI was offered as a module in its pure form and in general users were +discouraged from using `EESSI-extend`, or at their own risk. + +### EESSI as a base + +With this approach, we leveraged `EESSI-extend` extensively and aimed to +build the whole stack with the compatibility layer from EESSI as a base. +The learning curve for building software more or less moved back and +forth between three distinct phases, leveraging the various possible +settings for the `EESSI-extend` module. + ++ Phase 0 -> `$EESSI_USER_INSTALL` ++ Phase 1 -> `$EESSI_SITE_INSTALL` ++ Phase 2 -> `$EESSI_PROJECT_INSTALL` set to `/cvmfs/software.asc.ac.at` + + +## Reflections + +### EESSI on the side + +By comparison, it was much quicker and easier to build all the software +in list using this approach. It also offers a lot of control to the +sysadmin who builds the software and doing things like tweaking or +modifying module files in place was possible. The downsides were +reproducibility and portability, there would be obvious work involved +with building the stack again upon the next OS upgrade. That said, +everything worked much more smoothly than with `EESSI-extend`, it was +possible to build all the software that was listed and run basic tests +with Slurm. We had some open questions around interoperability between +custom modules and EESSI, and whether it would be problematic to mix +modules from the two independent stacks without running into issues +(probably not due to different libc versions). + + +### EESSI as a base + +By the end of the closed test phase of MUSICA, the engineering team +chose EESSI as the foundation for the software stack. While this approach +introduced complexity into our build and installation workflows, it +enabled us to meet certain key requirements for the MUSICA software +infrastructure. + +Specifically, we leveraged CernVM-FS to distribute the software stack across +the three sites - Vienna, Linz, and Innsbruck. EESSI offers access +to approximately 1960 modules that are ready to load on the target +architecture. Setting up EESSI was quite straight forward, and despite +team members finding the many options of installing with `EESSI-extend` +module too complex, adopting this method aligned with modern practices +for managing HPC software. EESSI is open source, well documented, and +maintained by colleagues within Europe's HPC ecosystem. + +Engaging with EESSI's documentation, source code, and community proved +valuable. We identified a reusable blueprint that we could adapt to fit +our specific needs. Despite the initial learning curve, this approach +provided long-term benefits in terms of maintainability and scalability. + + +[^1]: diff --git a/docs/contact.md b/docs/contact.md index 15e6bb160f..3d22c566d7 100644 --- a/docs/contact.md +++ b/docs/contact.md @@ -6,6 +6,7 @@ For more information: * Consult our [documentation](https://eessi.github.io/docs) * Ask for help at our [support portal](support.md) * Join our [Slack channel]({{ config.extra.slack_invite_url }}) +* Join our [mailing list](mailing_list.md) * Reach out to one of the [project partners](partners.md) * Check out our GitHub [repositories](https://github.com/EESSI) * Follow us on [Twitter](https://twitter.com/eessi_hpc) diff --git a/docs/getting_access/eessi_Apple_container_tool.md b/docs/getting_access/eessi_Apple_container_tool.md new file mode 100644 index 0000000000..2f70c93f99 --- /dev/null +++ b/docs/getting_access/eessi_Apple_container_tool.md @@ -0,0 +1,149 @@ +# Using EESSI with Apple Silicon on macOS 26 + +> **Requirements** +> +> - Mac with **Apple Silicon** (M-series chip) +> - **macOS 26** (Tahoe) or later +> - internet connection (EESSI software is streamed on demand from CVMFS Stratum 1 servers)/Other advanced solutions are also possible + +--- + +## 1. Install the `container` tool + +Download the latest signed installer package (`.pkg`) from the +[`apple/container` GitHub releases page](https://github.com/apple/container/releases). + +Double-click the downloaded `.pkg` file and follow the on-screen instructions. +When prompted, enter your administrator password to allow the installer to place +files under `/usr/local` + +Alternatively, using [Homebrew](https://formulae.brew.sh/): + +``` +brew install container +``` + +Verify the installation: + +``` +container --version +``` + +You should see output similar to: + +``` +container CLI version 0.10.0 (build: release, commit: unspeci) +``` + +--- + +## 2. Start the `container` system service + +The `container` tool requires a background API server. Start it with: + +``` +container system start +``` + +To confirm the service is running: + +``` +container system status +``` + +--- + +## 3. Pull the EESSI client container image + +Pull the EESSI `ubuntu22.04-macOS-26` image from the GitHub Container Registry: + +``` +container image pull ghcr.io/eessi/client:ubuntu22.04-macOS-26 +``` + +This [image](https://github.com/EESSI/filesystem-layer/blob/main/containers/Dockerfile.EESSI-client-ubuntu22.04-macOS-26) is an `arm64` (Apple Silicon) Ubuntu 22.04 image that includes the +CernVM-FS client pre-installed and configured for EESSI. + + +## 4. Start an interactive EESSI session + +Run the container interactively: + +``` +container run -it --rm --name eessi ghcr.io/eessi/client:ubuntu22.04-macOS-26 +``` +**Note**: `-it` provides an interactive session inside the container and `--rm` keeps your system clean by automatically removing the stopped container after you exit. + +--- + +## 5. Once inside the container shell + +Verify that the EESSI repository is accessible: + +``` +ls /cvmfs/software.eessi.io +``` + +You should see output similar to: + +``` +README.eessi defaults host_injections init versions +``` + +Initialize the EESSI environment: + +``` +source /cvmfs/software.eessi.io/versions/2023.06/init/lmod/bash +``` +Expected output: + +**Note**: EESSI currently supports NVIDIA GPUs, so the message **EESSI did not identify an accelerator on the system** is expected. + +``` +Module for EESSI/2023.06 loaded successfully +EESSI has selected aarch64/neoverse_n1 as the compatible CPU target for EESSI/2023.06 +EESSI did not identify an accelerator on the system +(for debug information when loading the EESSI module, set the environment variable EESSI_MODULE_DEBUG_INIT) +``` +EESSI is now ready to use inside the container. + +--- + +## 7. Use EESSI software + +List available modules: + +``` +module avail +``` + +Search for a specific package: + +``` +module avail TensorFlow +``` + +Load and use a module: + +``` +module load TensorFlow/2.13.0-foss-2023a +python3 -c "import tensorflow as tf; print(tf.__version__)" +``` + +--- + +## Cleanup + +Remove the pulled image: + +``` +container image rm ghcr.io/eessi/client:ubuntu22.04-macOS-26 +``` +Stop the `container` system service when it is no longer needed: + +``` +container system stop +``` + +--- + diff --git a/docs/getting_access/eessi_container.md b/docs/getting_access/eessi_container.md index 8777b872cf..b4701a3811 100644 --- a/docs/getting_access/eessi_container.md +++ b/docs/getting_access/eessi_container.md @@ -11,7 +11,7 @@ illustrating the use of the script. - Apptainer 1.0.0 (_or newer_), or Singularity 3.7.x - Check with `apptainer --version` or `singularity --version` - - Support for the `--fusemount` option in the ``shell`` and ``run`` subcommands is required + - Support for the `--fusemount` option in the ``shell`` and ``exec`` subcommands is required - Git - Check with `git --version` @@ -69,41 +69,55 @@ You should see the following output ``` usage: ./eessi_container.sh [OPTIONS] [[--] SCRIPT or COMMAND] OPTIONS: - -a | --access {ro,rw} - ro (read-only), rw (read & write) [default: ro] - -c | --container IMG - image file or URL defining the container to use - [default: docker://ghcr.io/eessi/build-node:debian11] - -g | --storage DIR - directory space on host machine (used for - temporary data) [default: 1. TMPDIR, 2. /tmp] - -h | --help - display this usage information [default: false] - -i | --host-injections - directory to link to for host_injections - [default: /..storage../opt-eessi] - -l | --list-repos - list available repository identifiers [default: false] - -m | --mode MODE - with MODE==shell (launch interactive shell) or - MODE==run (run a script or command) [default: shell] - -n | --nvidia MODE - configure the container to work with NVIDIA GPUs, - MODE==install for a CUDA installation, MODE==run to - attach a GPU, MODE==all for both [default: false] - -r | --repository CFG - configuration file or identifier defining the - repository to use [default: EESSI via - container configuration] - -u | --resume DIR/TGZ - resume a previous run from a directory or tarball, - where DIR points to a previously used tmp directory - (check for output 'Using DIR as tmp ...' of a previous - run) and TGZ is the path to a tarball which is - unpacked the tmp dir stored on the local storage space - (see option --storage above) [default: not set] - -s | --save DIR/TGZ - save contents of tmp directory to a tarball in - directory DIR or provided with the fixed full path TGZ - when a directory is provided, the format of the - tarball's name will be {REPO_ID}-{TIMESTAMP}.tgz - [default: not set] - -v | --verbose - display more information [default: false] - -x | --http-proxy URL - provides URL for the env variable http_proxy - [default: not set]; uses env var $http_proxy if set - -y | --https-proxy URL - provides URL for the env variable https_proxy - [default: not set]; uses env var $https_proxy if set - - If value for --mode is 'run', the SCRIPT/COMMAND provided is executed. If + -a | --access {ro,rw} - sets access globally for all CVMFS repositories: + ro (read-only), rw (read & write) [default: ro] + -b | --extra-bind-paths - specify extra paths to be bound into the container. + To specify multiple bind paths, separate by comma. + Example: '/src:/dest:ro,/src2:/dest2:rw' + -c | --container IMG - image file or URL defining the container to use + [default: docker://ghcr.io/eessi/build-node:debian12] + -f | --fakeroot - run the container with --fakeroot [default: false] + -g | --storage DIR - directory space on host machine (used for + temporary data) [default: 1. TMPDIR, 2. /tmp] + -h | --help - display this usage information [default: false] + -i | --host-injections - directory to link to for host_injections + [default: /..storage../opt-eessi] + -l | --list-repos - list available repository identifiers [default: false] + -m | --mode MODE - with MODE==shell (launch interactive shell) or + MODE==exec/run (run a script or command) [default: shell] + -n | --nvidia MODE - configure the container to work with NVIDIA GPUs, + MODE==install for a CUDA installation, MODE==run to + attach a GPU, MODE==all for both [default: false] + -o | --overlay-tool ARG - tool to use to create (read-only or writable) overlay; + selected tool *must* be available in container image being used; + can be 'fuse-overlayfs' or 'unionfs' [default: unionfs] + -p | --pass-through ARG - argument to pass through to the launch of the + container; can be given multiple times [default: not set] + -r | --repository CFG - configuration file or identifier defining the + repository to use; can be given multiple times; + CFG may include suffixes ',access={ro,rw},mode={bind,fuse}' to + overwrite the global access and/or mount mode for this repository; + use 'None' to not mount any repositories + [default: software.eessi.io via CVMFS config available + via default container, see --container] + -u | --resume DIR/TGZ - resume a previous run from a directory or tarball, + where DIR points to a previously used tmp directory + (check for output 'Using DIR as tmp ...' of a previous + run) and TGZ is the path to a tarball which is + unpacked the tmp dir stored on the local storage space + (see option --storage above) [default: not set] + -s | --save DIR/TGZ - save contents of tmp directory to a tarball in + directory DIR or provided with the fixed full path TGZ + when a directory is provided, the format of the + tarball's name will be {REPO_ID}-{TIMESTAMP}.tgz + [default: not set] + -v | --verbose - display more information [default: false] + -x | --http-proxy URL - provides URL for the env variable http_proxy + [default: not set]; uses env var $http_proxy if set + -y | --https-proxy URL - provides URL for the env variable https_proxy + [default: not set]; uses env var $https_proxy if set + + If value for --mode is 'exec' or 'run', the SCRIPT/COMMAND provided is executed. If arguments to the script/command start with '-' or '--', use the flag terminator '--' to let eessi_container.sh stop parsing arguments. ``` @@ -158,7 +172,7 @@ Let's "`ls /cvmfs/software.eessi.io`" through the `eessi_container.sh` script to check if the CernVM-FS EESSI repository is accessible: ``` { .bash .copy } -./eessi_container.sh --mode run ls /cvmfs/software.eessi.io +./eessi_container.sh --mode exec ls /cvmfs/software.eessi.io ``` You should see an output such as @@ -177,7 +191,7 @@ Note that this time no interactive shell session is started in the container: only the provided command is run in the container, and when that finishes you are back in the shell session where you ran the `eessi_container.sh` script. -This is because we used the `--mode run` command line option. +This is because we used the `--mode exec` command line option. !!! Note The last line in the output is the output of the `ls` command, @@ -194,7 +208,7 @@ CMD="ls -l /cvmfs/software.eessi.io" ``` !!! Note - We changed the mode from `run` to `shell` because we use a different method + We changed the mode from `exec` to `shell` because we use a different method to let the script run _our_ command, by feeding it in via the `stdin` input channel using `<<<`. Because `shell` is the default value for `--mode` we can also omit this and @@ -289,7 +303,7 @@ linux/x86_64/intel/skylake_avx512 ``` Lines 7 to 20 show the output of the script `eessi_architectures.sh`. -If you want to use the mode `run`, you have to make the script's location +If you want to use the mode `exec`, you have to make the script's location available inside the container. This can be done by mapping the current directory (`${PWD}`), @@ -299,13 +313,13 @@ inside the container using the `$SINGULARITY_BIND` or For example: ``` { .bash .copy } -SINGULARITY_BIND=${PWD}:/scripts ./eessi_container.sh --mode run /scripts/eessi_architectures.sh +SINGULARITY_BIND=${PWD}:/scripts ./eessi_container.sh --mode exec /scripts/eessi_architectures.sh ``` ## Running scripts or commands with parameters starting with `-` or `--` Let's assume we would like to get more information about the entries of `/cvmfs/software.eessi.io`. If we would just run ``` { .bash .copy } -./eessi_container.sh --mode run ls -lH /cvmfs/software.eessi.io +./eessi_container.sh --mode exec ls -lH /cvmfs/software.eessi.io ``` we would get an error message such as ``` { .bash .no-copy } @@ -335,7 +349,7 @@ We can resolve this in two ways: 2. Using the flag terminator `--` which tells `eessi_container.sh` to stop parsing command line arguments. For example, ``` { .bash .copy } - ./eessi_container.sh --mode run -- ls -lH /cvmfs/software.eessi.io + ./eessi_container.sh --mode exec -- ls -lH /cvmfs/software.eessi.io ``` which should result in the output similar to ``` { .yaml .no-copy } diff --git a/docs/governance/governance.md b/docs/governance/governance.md index 1adc0115e2..36b79f1c25 100644 --- a/docs/governance/governance.md +++ b/docs/governance/governance.md @@ -143,6 +143,7 @@ The Steering Committee shall be responsible for: - The [EESSI Charter](charter.md) - The [EESSI Governance](governance.md) - The [EESSI Policies](policies.md) +- The [EESSI Code of Conduct](code_of_conduct.md) - The [EESSI Terms of Use](terms_of_use.md) ### 6.2 Members and Chairs diff --git a/docs/img/logos/EESSI_Webinar_2026_qrcode.png b/docs/img/logos/EESSI_Webinar_2026_qrcode.png new file mode 100644 index 0000000000..b4ae953c1f Binary files /dev/null and b/docs/img/logos/EESSI_Webinar_2026_qrcode.png differ diff --git a/docs/index.md b/docs/index.md index d149b164ac..c1eeb9392b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -26,7 +26,7 @@ For users: * [`software.eessi.io` repository](repositories/software.eessi.io.md) * [Access](getting_access/is_eessi_accessible.md), [initialize](using_eessi/setting_up_environment.md) and [use](using_eessi/basic_commands.md) EESSI -* [Overview of software](available_software/overview.md) +* [Overview of software](available_software/index.md) * [How to run EESSI test suite](test-suite/index.md) * [How to use EESSI in CI](using_eessi/eessi_in_ci.md) - [GitHub Actions](using_eessi/eessi_in_ci.md/#the-eessi-github-action) diff --git a/docs/mailing_list.md b/docs/mailing_list.md new file mode 100644 index 0000000000..89cafece44 --- /dev/null +++ b/docs/mailing_list.md @@ -0,0 +1,18 @@ +# EESSI mailing list + +EESSI has a low-frequency mailing list, used for sending announcements about the bi-monthly update meeting +and important updates or news. + +To subscribe to the mailing list, send an email (the subject does not matter) with the following body to listserv@list.rug.nl: + +``` +SUBSCRIBE EESSI Firstname Lastname +``` + +Or click here to start an email message to subscribe. + +To unsubscribe from the mailing list, send an email (the subject does not matter) with the following body to listserv@list.rug.nl: +``` +UNSUBSCRIBE EESSI +``` +Or click here to start an email message to unsubscribe. diff --git a/docs/repositories/dev.eessi.io-riscv.md b/docs/repositories/dev.eessi.io-riscv.md new file mode 100644 index 0000000000..c9b7edf2d2 --- /dev/null +++ b/docs/repositories/dev.eessi.io-riscv.md @@ -0,0 +1,49 @@ +# EESSI RISC-V development repository (`dev.eessi.io/riscv`) + +!!! note "Is `dev.eessi.io` a webpage?" + If you landed on this page because you typed `dev.eessi.io` into your browser, then + you may not know yet that this is not a URL/webpage but a [CernVM-FS repository](../filesystem_layer.md) + that EESSI uses to distribute software. + + **See the [EESSI overview page](../overview.md) for a general introduction to EESSI.** + +This repository contains development versions of an EESSI RISC-V software stack +and replaces the older [`riscv.eessi.io`](riscv.eessi.io.md) repository, which is now deprecated. +Note that versions may be added, modified, or deleted at any time. + +## Accessing the RISC-V repository + +See [Getting access](../getting_access/is_eessi_accessible.md); +by making the EESSI CVMFS domain available, you will automatically have access to `dev.eessi.io/riscv` as well. + +## Using `dev.eessi.io/riscv` + +This repository currently offers one version (2025.06-001), which is built on top of the +RISC-V compatibility layer of EESSI version 2025.06 in the production repository `software.eessi.io`. +New versions may be added later, and will be named similarly. + +You can use this version by running the following commands on a RISC-V machine: + +``` { .bash .copy } +$ export EESSI_VERSION_OVERRIDE=2025.06-001 +$ source /cvmfs/software.eessi.io/versions/2025.06/init/lmod/bash +This EESSI production version only provides a RISC-V compatibility layer, +software installations are provided by the EESSI development repository at /cvmfs/dev.eessi.io/riscv. + +Module for EESSI/2025.06 loaded successfully +EESSI has selected riscv64/generic as the compatible CPU target for EESSI/2025.06 +EESSI did not identify an accelerator on the system +(for debug information when loading the EESSI module, set the environment variable EESSI_MODULE_DEBUG_INIT) +``` + +Note that we currently only provide generic builds, hence `riscv64/generic` is being used for all RISC-V CPUs. +We are currently working on support for builds that are optimized for specific RISC-V CPUs. + +The amount of software is constantly increasing. +Besides having the `foss/2025a` and `foss/2025b` toolchains available, several applications are already available as well. +Use `module avail` to get a full and up-to-date listing of available software. + + +## Infrastructure status + +The status of the CernVM-FS infrastructure for this repository is shown at [https://status.eessi.io](https://status.eessi.io/). diff --git a/docs/repositories/riscv.eessi.io.md b/docs/repositories/riscv.eessi.io.md index 36f1886610..5f7a4b6266 100644 --- a/docs/repositories/riscv.eessi.io.md +++ b/docs/repositories/riscv.eessi.io.md @@ -7,6 +7,10 @@ **See the [EESSI overview page](../overview.md) for a general introduction to EESSI.** +!!! warning "This repository is deprecated" + The `riscv.eessi.io` repository is no longer maintained. + New RISC-V software stacks are being made available in [`dev.eessi.io/riscv`](dev.eessi.io-riscv.md). + This repository contains development versions of an EESSI RISC-V software stack. Note that versions may be added, modified, or deleted at any time. diff --git a/docs/repositories/software.eessi.io.md b/docs/repositories/software.eessi.io.md index bb10383ab3..da650fe571 100644 --- a/docs/repositories/software.eessi.io.md +++ b/docs/repositories/software.eessi.io.md @@ -22,7 +22,7 @@ See [Using EESSI](../using_eessi/setting_up_environment.md). ## Available software -See [Available software](../available_software/overview.md). +See [Available software](../available_software/index.md). ### Architecture and micro-architecture support diff --git a/docs/roadmap.md b/docs/roadmap.md index 21ea3e83ec..f7be27b276 100644 --- a/docs/roadmap.md +++ b/docs/roadmap.md @@ -1,35 +1,68 @@ -# Short-Term Roadmap for EESSI +# EESSI roadmap -*(approved by EESSI Steering Committee: 2026-05-xx; questions and suggestions: support@eessi.io)* +*(approved by the [EESSI Steering Committee](governance/steering_committee.md); last revised: 27 May 2026)* -The purpose of this roadmap is to focus the collective effort of the EESSI community on a set of priorities for the coming year. It describes areas where the community aims to make progress together and is reviewed regularly by the Steering Committee as priorities evolve. +This roadmap outlines the goals we hope to accomplish for EESSI in the coming 6-12 months. -Most EESSI development currently happens within the scope of funded projects, but many of the goals outlined here benefit from broader community involvement and collaboration. If you are interested in contributing to one of these areas, or if you believe important topics are missing from the roadmap, please reach out to the EESSI community at support@eessi.io. +Its main purpose is to focus the collective effort of the EESSI community on a set of priorities. +It describes areas where the community aims to make progress together, and is reviewed regularly by the Steering Committee +as priorities evolve and goals that were set have been accomplished. -# Core Infrastructure -EESSI will continue improving the reliability and scalability of its build and deployment infrastructure. Particular attention will be given to distributing operational responsibilities across sites and contributors, improving build and testing workflows, and strengthening integration with EasyBuild. +Most EESSI development currently happens within the scope of funded projects, but many of the goals outlined here benefit +from broader community involvement and collaboration. -# Hardware Enablement -EESSI will continue expanding support for emerging and widely requested hardware platforms, while growing the collection of GPU-enabled scientific and AI/ML software available through the project. +Note that these goals are aspirational, we can *not* provide any guarantees that they will indeed be accomplished +in the near future. -Current areas of interest include newer generations of AWS Graviton systems and improved support for AMD GPU platforms through the ROCm software ecosystem. +In case of questions related to this roadmap, or if you believe important topics are missing from the roadmap, +please reach out to the [EESSI Steering Committee](governance/steering_committee.md), or open a [support ticket](support.md). + + +## Core Infrastructure + +We will continue improving the reliability and scalability of the EESSI build and deployment infrastructure. + +Particular attention will be given to distributing operational responsibilities across sites and contributors, +improving build and testing workflows, and strengthening integration with [EasyBuild](https://easybuild.io). + + +## Hardware Enablement + +We will continue expanding support in EESSI for additional hardware platforms, +while growing the collection of available GPU-enabled scientific and AI/ML software. + +Current areas of interest include support newer generations of [AWS Graviton](https://aws.github.io/graviton/) CPUs (4 and 5), +and support for AMD GPUs through the [ROCm software ecosystem](https://www.amd.com/en/products/software/rocm.html). + + +## Software Stack -# Software Stack EESSI will continue improving software quality, reproducibility, and transparency across the software stack, with particular attention to software licensing and compliance. Current areas of interest include automated license compliance workflows and improved visibility of software licensing information. -# User Experience -EESSI aims to improve how users discover, access, and reuse software provided through the project, while strengthening support for reproducible research. +In additional, we expect to provide installations for over 1,000 unique (non-extension) software projects soon -- +see also [Overview of available software](available_software/index.md). + + +## User Experience + +EESSI aims to improve how users discover, access, and reuse provided software installations, while strengthening support for reproducible research. -Current areas of interest include development of a dedicated EESSI CLI and mechanisms for uniquely identifying and reusing software installations in support of FAIR research practices. +Current areas of interest include development of a user-friendly [command-line interface for EESSI](https://github.com/EESSI/eessi-cli), +and mechanisms for uniquely identifying and reusing software installations in support of [FAIR](https://www.nature.com/articles/sdata201618) research practices. -# Community -The EESSI community plays a central role in the development and adoption of the project. EESSI will continue its efforts to engage with users, contributors, and partner organisations through community events, training activities, and participation in relevant conferences and workshops. + +## Community + +The EESSI community plays a central role in the development and adoption of the project. EESSI will continue its efforts to engage with users, contributors, and partner organisations through community events, [training activities](training-events/index.md), and participation in relevant conferences and workshops. Current areas of interest include community events and hackathons, shared outreach and training materials, and continued collaboration with related open source and HPC communities. -# Sustainability + +## Sustainability + As EESSI continues to grow beyond the original project partners and is adopted by a broader range of sites and organisations, the project will continue strengthening the organisational structures needed to support long-term coordination, maintenance, and community ownership. -Current areas of interest include continued evolution of the project's governance structures and collaboration with organisations such as the Linux Foundation and HPSF. +Current areas of interest include continued evolution of the project's [governance](governance/index.md) structures and collaboration with organisations +such as the [Linux Foundation Europe](https://linuxfoundation.eu/) and the [High Performance Software Foundation (HPSF)](https://hpsf.io/). diff --git a/docs/site_specific_config/gpu.md b/docs/site_specific_config/gpu.md index b6d8770e8b..fea3ff23bb 100644 --- a/docs/site_specific_config/gpu.md +++ b/docs/site_specific_config/gpu.md @@ -23,123 +23,148 @@ can use the GPU in your system is available below. EESSI supports running CUDA-enabled software. All CUDA-enabled modules are marked with the `(gpu)` feature, which is visible in the output produced by `module avail`. -### NVIDIA GPU drivers {: #nvidia_drivers } +### Configuring runtime support {: #nvidia_drivers} For CUDA-enabled software to run, it needs to be able to find the **NVIDIA GPU drivers** of the host system. The challenge here is that the NVIDIA GPU drivers are not _always_ in a standard system location, and that we can not install the GPU drivers in EESSI (since they are too closely tied to the client OS and GPU hardware). -### Compiling software on top of CUDA, cuDNN and other SDKs provided by NVIDIA {: #cuda_sdk } +#### Enabling runtime support for a native EESSI installation (using the helper script) {: #nvidia_eessi_native } -An additional requirement is necessary if you want to be able to compile software -that makes use of a CUDA installation or cu\* SDKs (e.g., cuDNN) included in -EESSI. This requires a *full* installation of the CUDA SDK, cuDNN, etc. However, -the [CUDA SDK End User License Agreement (EULA)](https://docs.nvidia.com/cuda/eula/index.html) -and the [Software License Agreement (SLA) for NVIDIA cuDNN](https://docs.nvidia.com/deeplearning/cudnn/latest/reference/eula.html) -do not allow for full redistribution. In EESSI, we are (currently) only allowed to -redistribute the files needed to *run* CUDA and cuDNN software. +To get runtime support, we need to ensure that the EESSI runtime linker can find the drivers. To do this, we symlink the drivers +in a predictable location that is searched by the EESSI runtime linker. -!!! note "A full CUDA SDK or cuDNN SDK is only needed to *compile* CUDA or cuDNN software" - Without a full CUDA SDK or cuDNN SDK on the host system, you will still - be able to *run* CUDA-enabled or cuDNN-enabled software from the EESSI stack, - you just won't be able to *compile* additional CUDA or cuDNN software. +*Step 1:* [initialize a version of EESSI](../using_eessi/setting_up_environment.md). -Below, we describe how to make sure that the EESSI software stack can find your -NVIDIA GPU drivers and (optionally) full installations of the CUDA SDK and the -cuDNN SDK. +*Step 2 (EESSI 2025.06 and newer, mandatory):* define the `EESSI_NVIDIA_OVERRIDE_DEFAULT` variable in your local CernVM-FS configuration to point to a directory where you want +to store the symlinks to the drivers. For example, to store these under `/opt/eessi/nvidia`, one would run: -### Configuring CUDA driver location {: #driver_location } +```{ .bash .copy } +sudo bash -c "echo 'EESSI_NVIDIA_OVERRIDE_DEFAULT=/opt/eessi/nvidia' >> /etc/cvmfs/default.local" +``` -All CUDA-enabled software in EESSI expects the CUDA drivers to be available in a specific subdirectory of this `host_injections` directory. -In addition, installations of the CUDA SDK and cuDNN SDK included EESSI are stripped down to the files that we are allowed to redistribute; -all other files are replaced by symbolic links that point to another specific subdirectory of `host_injections`. For example: +*Step 2 (EESSI 2023.06, optional):* Change the location in which the symlinks will end up by configuring `EESSI_HOST_INJECTIONS` explicitly (default: `/opt/eessi`): + +```{ .bash copy } +sudo bash -c "echo 'EESSI_HOST_INJECTIONS=/desired/path/to/host/injections' >> /etc/cvmfs/default.local" ``` -$ ls -l /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3/software/CUDA/12.1.1/bin/nvcc -lrwxrwxrwx 1 cvmfs cvmfs 109 Dec 21 14:49 /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3/software/CUDA/12.1.1/bin/nvcc -> /cvmfs/software.eessi.io/host_injections/2023.06/software/linux/x86_64/amd/zen3/software/CUDA/12.1.1/bin/nvcc + +*Step 3:* To actually reconfigure the variant symlinks, reload the updated CernVM-FS configuration using: +```{ .bash copy } +sudo cvmfs_config reload software.eessi.io ``` -If the corresponding full installation of the CUDA SDK is available there, the -CUDA installation included in EESSI can be used to build CUDA software. The same -applies to the cuDNN SDK. +*Step 4:* Run the helper script: +```{ .bash .copy } +/cvmfs/software.eessi.io/versions/${EESSI_VERSION}/scripts/gpu_support/nvidia/link_nvidia_host_libraries.sh +``` -### Using NVIDIA GPUs via a native EESSI installation {: #nvidia_eessi_native } +!!! tip "Rerun script after each driver update" + You should re-run this script every time you update the NVIDIA GPU drivers on the host system, as it may expose libraries that are new to your driver version. + Note that it is safe to re-run the script even if no driver updates were done: the script should detect that the current version of the drivers were already symlinked. -Here, we describe the steps to enable GPU support when you have a [native EESSI installation](../getting_access/native_installation.md) on your system. +!!! tip "Maintaining different driver versions for each EESSI version" + The standard approach for EESSI >= 2025.06 means that the drivers may be found by any EESSI version. If you prefer to create one set of symlinks per EESSI + version, instead of defining a single location through EESSI_NVIDIA_OVERRIDE_DEFAULT, you can define one per EESSI version, by setting EESSI__NVIDIA_OVERRIDE. + For example: + ```{ .bash .copy} + sudo bash -c "echo 'EESSI_202506_NVIDIA_OVERRIDE=/opt/eessi/2025.06/nvidia' >> /etc/cvmfs/default.local" + ``` -!!! warning "Required permissions" - To enable GPU support for EESSI on your system, you will typically need to have system administration rights, since you need write permissions on the folder to the target directory of the `host_injections` symlink. +!!! tip "Use a EESSI-specific CernVM-FS configuration file to configure the variant symlinks" + Instead of using `/etc/cvmfs/default.local` you can also put the symlink configuration in a local configuration file that is specific to the `software.eessi.io` repository + or to the `eessi.io` domain. + For the first you can use `/etc/cvmfs/config.d/software.eessi.io.local`, while for the latter you can use `/etc/cvmfs/domain.d/eessi.io.local`. + For more details about the different configuration files, + see [the configuration hierarchy section of our CernVM-FS tutorial](https://www.eessi.io/docs/training-events/2025/tutorial-best-practices-cvmfs-hpc/access/client/#configuration_hierarchy). -#### Exposing NVIDIA GPU drivers +!!! note "How does EESSI find the linked drivers?" -To install the symlinks to your GPU drivers in `host_injections`, run the `link_nvidia_host_libraries.sh` script that is included in EESSI: + The runtime linker provided by the EESSI [compatibility layer](../compatibility_layer.md) is configured to search an + additional directory (run `ld.so --help | grep -A 10 "Shared library search path"` after initializing EESSI). + For `EESSI/2025.06` and later, that is: `/cvmfs/software.eessi.io/versions//compat///lib/nvidia`). + This directory is special, since it is a CernVM-FS [Variant Symlink](https://cvmfs.readthedocs.io/en/stable/cpt-repo.html#variant-symlinks). + The target of this symlink is what you configure in your local CernVM-FS configuration. -```{ .bash .copy } -/cvmfs/software.eessi.io/versions/${EESSI_VERSION}/scripts/gpu_support/nvidia/link_nvidia_host_libraries.sh -``` +#### Enabling runtime support for a native EESSI installation (using manual symlinking) +If, for some reason, the helper script is unable to locate the drivers on your system you _can_ link them manually. +To do so, grab the list of libraries that need to be symlinked from [here](https://raw.githubusercontent.com/apptainer/apptainer/main/etc/nvliblist.conf). +Then, change to the correct directory: -This script uses `ldconfig` on your host system to locate your GPU drivers, and creates symbolic links to them in the correct location under `host_injections` directory. It also stores the CUDA version supported by the driver that the symlinks were created for. +- For EESSI 2025.06 and later: `/cvmfs/software.eessi.io/versions/${EESSI_VERSION}>/compat/${EESSI_OS_TYPE}/${EESSI_CPU_FAMILY}/lib/nvidia`, +- For EESSI 2023.06: `/cvmfs/software.eessi.io/host_injections/${EESSI_VERSION}/compat/${EESSI_OS_TYPE}/${EESSI_CPU_FAMILY}/lib` -!!! tip "Re-run `link_nvidia_host_libraries.sh` after NVIDIA GPU driver update" - You should re-run this script every time you update the NVIDIA GPU drivers on the host system. +Then, manually create the symlinks for each of the files in the aforementioned list (if they exist on your system) to the current directory. - Note that it is safe to re-run the script even if no driver updates were done: the script should detect that the current version of the drivers were already symlinked. +#### Runtime support when using EESSI in a container {: #nvidia_eessi_container } -#### Installing full CUDA SDK and cuDNN SDK (optional) {: #installing-full-cuda-sdk-optional } +If you are running your own [Apptainer](https://apptainer.org/)/[Singularity](https://sylabs.io/singularity) container, +it is sufficient to use the [`--nv` option](https://apptainer.org/docs/user/latest/gpu.html#nvidia-gpus-cuda-standard) +to enable access to GPUs from within the container. This will ensure the container runtime exposes the drivers through +the `$LD_LIBRARY_PATH`. -To install a full CUDA SDK and cuDNN SDK under `host_injections`, use the `install_cuda_and_libraries.sh` script that is included in EESSI: +If you are using the [EESSI container](../getting_access/eessi_container.md) to access the EESSI software, +simply pass `--nvidia run` or `--nvidia all` to enable nvidia GPU runtime support. -```{ .bash .copy } -/cvmfs/software.eessi.io/versions/${EESSI_VERSION}/scripts/gpu_support/nvidia/install_cuda_and_libraries.sh -``` +### Configuring compile time support {: #cuda_sdk } -For example, to install CUDA 12.1.1 and cuDNN 8.9.2.26 in the directory that the [`host_injections` variant symlink](host_injections.md) points to, -using `/tmp/$USER/EESSI` as directory to store temporary files: -``` -/cvmfs/software.eessi.io/versions/${EESSI_VERSION}/scripts/gpu_support/nvidia/install_cuda_and_libraries.sh --temp-dir /tmp/$USER/EESSI --accept-cuda-eula --accept-cudnn-eula -``` -The versions 12.1.1 for CUDA and 8.9.2.26 for cuDNN are defined in an easystack -file that is also included in EESSI: -``` -/cvmfs/software.eessi.io/versions/${EESSI_VERSION}/scripts/gpu_support/nvidia/easystacks/eessi-2023.06-eb-4.9.4-2023a-CUDA-host-injections.yml -``` -By default, the install script processes all files matching `eessi-*CUDA*.yml` in -the above `/cvmfs/software.eessi.io/versions/${EESSI_VERSION}/scripts/gpu_support/nvidia/easystacks` directory. +To compile new CUDA software using dependencies from EESSI, additional configuration is needed. -You can run `/cvmfs/software.eessi.io/versions/${EESSI_VERSION}/scripts/gpu_support/nvidia/install_cuda_and_libraries.sh --help` to check all of the options. +The [CUDA license](https://docs.nvidia.com/cuda/eula/index.html) and [cuDNN license](https://docs.nvidia.com/deeplearning/cudnn/latest/reference/eula.html) +only allow redistribution of their _runtime_ libraries. Thus, the installations of CUDA and cuDNN that come with EESSI have been stripped down to contain +only the runtime libraries. A local installation of CUDA and cuDNN is required to compile new software. -!!! tip +!!! note "A full CUDA SDK or cuDNN SDK is only needed to *compile* CUDA or cuDNN software" + Without a full CUDA SDK or cuDNN SDK on the host system, you will still + be able to *run* CUDA-enabled or cuDNN-enabled software from the EESSI stack + (provided the required configuration for runtime support was done - see above), + you just won't be able to *compile* additional CUDA or cuDNN software. - This script uses EasyBuild to install the CUDA SDK and the cuDNN SDK. For this to work, two requirements need to be satisfied: +First, [initialize a version of EESSI](../using_eessi/setting_up_environment.md). - * `module load EasyBuild/${EB_VERSION}` must work (EB_VERSION is extracted - from the name of the easystack file (e.g., from `eb-4.9.4` EB_VERSION is - derived as 4.9.4); - * `module load EESSI-extend/${EESSI_VERSION}-easybuild` must work. +Second, (optionally) define the `EESSI_HOST_INJECTIONS` variable in your local CernVM-FS configuration to point to a directory where you want to +store the local installations of CUDA and cuDNN (the default location is `/opt/eessi`): - Both modules are included in EESSI. +```{ .bash .copy } +sudo bash -c "echo 'EESSI_HOST_INJECTIONS=/my/custom/prefix' >> /etc/cvmfs/default.local" +``` +Third, run the helper script to install the CUDA and cuDNN versions that are used _in that version of EESSI_. -### Using NVIDIA GPUs via EESSI in a container {: #nvidia_eessi_container } +```{ .bash .copy } +/cvmfs/software.eessi.io/versions/${EESSI_VERSION}/scripts/gpu_support/nvidia/install_cuda_and_libraries.sh +``` -We focus here on the [Apptainer](https://apptainer.org/)/[Singularity](https://sylabs.io/singularity) use case, -and have only tested the [`--nv` option](https://apptainer.org/docs/user/latest/gpu.html#nvidia-gpus-cuda-standard) -to enable access to GPUs from within the container. +Note that this script uses EasyBuild in order to install CUDA and cuDNN - and EasyBuild does not allow running as root by default. +The recommended approach is to change ownership of the `host_injections` directory to a non-root user, and perform the installation with +that user. Alternatively (but not recommended), you can override EasyBuild's behaviour and install as root by setting +`export EASYBUILD_ALLOW_USE_AS_ROOT_AND_ACCEPT_CONSEQUENCES=1` before running `install_cuda_and_libraries.sh`. -If you are using the [EESSI container](../getting_access/eessi_container.md) to access the EESSI software, -the procedure for enabling GPU support is slightly different and will be documented here eventually. +The script searches `/cvmfs/software.eessi.io/versions/${EESSI_VERSION}/scripts/gpu_support/nvidia/easystacks` for any file +named `eessi-*CUDA*.yml`, and installs all CUDA and cuDNN versions defined in those files. -#### Exposing NVIDIA GPU drivers +Thus, you may want to periodically run this script to pick up on new CUDA and cuDNN versions that get added to EESSI over time. -When running a container with `apptainer` or `singularity` it is _not_ necessary to run the `install_cuda_host_injections.sh` -script since both these tools use `$LD_LIBRARY_PATH` internally in order to make the host GPU drivers available -in the container. +!!! note "How does EESSI find the local installation of CUDA/cuDNN?" + The non-redistributable components of CUDA/cuDNN in EESSI have been replaced by symlinks that point to a specific directory + in the `/cvmfs/software.eessi.io/host_injections` prefix. For example, the `nvcc` compiler can not be redistributed, so it + is replaced in EESSI with a symlink: + ``` + $ ls -l /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3/software/CUDA/12.1.1/bin/nvcc + lrwxrwxrwx 1 cvmfs cvmfs 109 Dec 21 14:49 /cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen3/software/CUDA/12.1.1/bin/nvcc -> /cvmfs/software.eessi.io/host_injections/2023.06/software/linux/x86_64/amd/zen3/software/CUDA/12.1.1/bin/nvcc + ``` + The `/cvmfs/software.eessi.io/host_injections` directory is special, since it is not part of the actual EESSI repository: + it is a CernVM-FS [Variant Symlink](https://cvmfs.readthedocs.io/en/stable/cpt-repo.html#variant-symlinks) that points to + a directory on the local system (`/opt/eessi` by default). + The `install_cuda_and_libraries.sh` script installs CUDA and cuDNN in this local directory, thus un-breaking the symlinks. + This means that from an end-user point of view, the EESSI CUDA module now 'just works', all while adhering to the EULA + (e.g. not redistributing the compiler through EESSI itself). -The only scenario where this would be required is if `$LD_LIBRARY_PATH` is modified or undefined. ### Testing the GPU support {: #gpu_cuda_testing } -The quickest way to test if software installations included in EESSI can access and use your GPU is to run the +The quickest way to test if software installations included in EESSI can access and use your GPU is to run the `deviceQuery` executable that is part of the `CUDA-Samples` module: ``` module load CUDA-Samples diff --git a/docs/software_layer/cpu_targets.md b/docs/software_layer/cpu_targets.md index 714d208b24..bc1541c371 100644 --- a/docs/software_layer/cpu_targets.md +++ b/docs/software_layer/cpu_targets.md @@ -1,20 +1,36 @@ +--- +hide: + - toc +--- +{% set eessi_202306 = '2023.06' %} +{% set eessi_202506 = '2025.06' %} + # CPU targets -In the 2023.06 version of the EESSI repository, the following CPU microarchitectures are supported. +The following table lists the CPU microarchitectures that are natively supported by the different versions of the EESSI repository. -* `aarch64/generic`: fallback for Arm 64-bit CPUs (like Raspberri Pi, etc.) -* `aarch64/a64fx`: Fujitsu A64FX -* `aarch64/neoverse_n1`: AWS Graviton 2, Ampere Altra, ... -* `aarch64/neoverse_v1`: AWS Graviton 3 -* `aarch64/nvidia/grace`: NVIDIA Grace -* `x86_64/generic`: fallback for older Intel + AMD CPUs (like Intel Sandy Bridge, ...) -* `x86_64/amd/zen2`: AMD Rome -* `x86_64/amd/zen3`: AMD Milan, Milan-X -* `x86_64/amd/zen4`: AMD Genoa, Genoa-X, Bergamo, Siena -* `x86_64/intel/haswell`: Intel Haswell, Broadwell -* `x86_64/intel/skylake_avx512`: Intel Skylake -* `x86_64/intel/cascadelake`: Intel Cascade Lake, Cooper Lake -* `x86_64/intel/icelake`: Intel Ice Lake -* `x86_64/intel/sapphirerapids`: Intel Sapphire Rapids, Emerald Rapids +| CPU target | Description | Supported in EESSI version | +| ----------------------------- | ------------------------------------------------------------------ | ----------------------------------------------------- | +| `aarch64/generic` | fallback for Arm 64-bit CPUs (like Raspberri Pi, etc.) | {{ eessi_202306 }} {{ eessi_202506 }} | +| `aarch64/a64fx` | Fujitsu A64FX | {{ eessi_202306 }} {{ eessi_202506 }} | +| `aarch64/neoverse_n1` | AWS Graviton 2, Ampere Altra, ... | {{ eessi_202306 }} {{ eessi_202506 }} | +| `aarch64/neoverse_v1` | AWS Graviton 3 | {{ eessi_202306 }} {{ eessi_202506 }} | +| `aarch64/nvidia/grace` | NVIDIA Grace | {{ eessi_202306 }} {{ eessi_202506 }} | +| `x86_64/generic` | fallback for older Intel + AMD CPUs (like Intel Sandy Bridge, ...) | {{ eessi_202306 }} {{ eessi_202506 }} | +| `x86_64/amd/zen2` | AMD Rome | {{ eessi_202306 }} {{ eessi_202506 }} | +| `x86_64/amd/zen3` | AMD Milan, Milan-X | {{ eessi_202306 }} {{ eessi_202506 }} | +| `x86_64/amd/zen4` | AMD Genoa, Genoa-X, Bergamo, Siena | {{ eessi_202306 }} {{ eessi_202506 }} | +| `x86_64/amd/zen5` | AMD Turin | {{ eessi_202506 }} | +| `x86_64/intel/haswell` | Intel Haswell, Broadwell | {{ eessi_202306 }} {{ eessi_202506 }} | +| `x86_64/intel/skylake_avx512` | Intel Skylake | {{ eessi_202306 }} {{ eessi_202506 }} | +| `x86_64/intel/cascadelake` | Intel Cascade Lake, Cooper Lake | {{ eessi_202306 }} {{ eessi_202506 }} | +| `x86_64/intel/icelake` | Intel Ice Lake | {{ eessi_202306 }} {{ eessi_202506 }} | +| `x86_64/intel/sapphirerapids` | Intel Sapphire Rapids, Emerald Rapids | {{ eessi_202306 }} {{ eessi_202506 }} | The names of these CPU targets correspond to the names used by [archspec](https://github.com/archspec/archspec). + +!!! info "What does native support mean?" + Native support means that the software has been built on, and has been optimized for, this specific CPU type. + That does not mean that CPUs that are not listed here are not supported: + EESSI's CPU autodetection scripts will simply fall back to the stack of the best matching CPU type in terms of supported CPU instructions. + For instance, on an Intel Broadwell CPU you will get the stack optimized for Intel Haswell, and for an AMD Zen 5 CPU you would get the Zen 4 stack in EESSI 2023.06. diff --git a/docs/software_layer/gpu_targets.md b/docs/software_layer/gpu_targets.md index 12f2c3bb32..a7eeffae70 100644 --- a/docs/software_layer/gpu_targets.md +++ b/docs/software_layer/gpu_targets.md @@ -1,130 +1,174 @@ +--- +hide: + - toc +--- +{% set eessi_202306_n = '2023.06: N' %} +{% set eessi_202306_x = '2023.06: x' %} +{% set eessi_202506_n = '2025.06: N' %} +{% set eessi_202506_x = '2025.06: x' %} + # GPU targets ## NVIDIA -EESSI includes optimized software installations for major NVIDIA GPU CUDA Compute Capabilities 7.0, 8.0 and 9.0, for all CPU targets listed in [CPU targets](cpu_targets.md). +Each version of EESSI includes optimized software installations for a selected range of major NVIDIA GPU CUDA Compute Capabilities, +for all CPU targets listed in [CPU targets](cpu_targets.md). -NVIDIA guarantees forwards compatibility within a major CUDA Compute Capability (i.e. a GPU with CUDA Compute Capability 8.6 can run code built for CUDA Compute Capability 8.0). -This means that all NVIDIA GPUs with Compute Capability 7.x, 8.x and 9.x are supported (see also [here](https://developer.nvidia.com/cuda-gpus)). +NVIDIA guarantees forward compatibility within a major CUDA Compute Capability, i.e. a GPU with CUDA Compute Capability 8.6 can run code built for CUDA Compute Capability 8.0. +This means that a given EESSI version supports all NVIDIA GPUs with Compute Capability X.Y if the table below includes support for Compute Capability X.0. +On the [NVIDIA website](https://developer.nvidia.com/cuda/gpus) you can find the Compute Capability of your GPU. -The decision to only ship code optimized for the major GPU architectures was made to keep the amount of software builds that need to be done at a reasonable level. -Even just building for the major CUDA Compute Capabilities for all CPU targets currently requires 39 builds (13 CPU targets times 3 GPU targets). +The decision to only ship code optimized for the major GPU architectures was made to keep the number of software builds that need to be done at a reasonable level. +Even just building a single application for five major CUDA Compute Capabilities for all CPU targets supported by EESSI version 2025.06 would require 75 builds in total (15 CPU targets times 5 GPU targets). Not all builds are done natively, i.e. on a system actually containing a CPU and GPU of the type that is being built for. -The table below shows an overview of the supported CPU/GPU architectures (marked with `x`). +The table below shows an overview of the supported CPU/GPU architectures for the different EESSI versions (marked with `x`). The combinations marked with an '`N`' are built natively; others are built on a CPU-only system. - - + + - + + + - - - - - + + + + + + - + + + - - - - + + + + + + - - - - + + + + + + - - - - - + + + + + + - - - - - + + + + + + + + + + + + + + - - - - - + + + + + + - - - - + + + + + + - - - - + + + + + + - - - - + + + + + + - - - - + + + + + + - - - - - + + + + + + - - - - + + + + + + - - - - + + + + + +
CUDA compute capability
CUDA compute capability
CPU microarchitecture
CPU microarchitecture
7.0 8.0 9.010.012.0
aarch64genericxxxaarch64/generic{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
a64fxaarch64/a64fx-- - - -
neoverse_n1xxxaarch64/neoverse_n1{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
neoverse_v1xxxaarch64/neoverse_v1{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
nvidiagracexxNaarch64/nvidia/grace{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_n }} {{ eessi_202506_n }}{{ eessi_202506_x }}{{ eessi_202506_x }}
x86_64genericxxxx86_64/generic{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
x86_64/intel/haswell{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
intelhaswellxxxx86_64/intel/skylake_avx512{{ eessi_202306_n }} {{ eessi_202506_n }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
skylake_avx512xxxx86_64/intel/cascadelake{{ eessi_202306_n }} {{ eessi_202506_n }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
cascadelakeNxxx86_64/intel/icelake{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_n }} {{ eessi_202506_n }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
icelakexNxx86_64/intel/sapphirerapids{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
sapphirerapidsxxxx86_64/amd/zen2{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
amdzen2xNxx86_64/amd/zen3{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_n }} {{ eessi_202506_n }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}
zen3xNxx86_64/amd/zen4{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_x }} {{ eessi_202506_x }}{{ eessi_202306_n }} {{ eessi_202506_n }}{{ eessi_202506_x }}{{ eessi_202506_x }}
zen4xxNx86_64/amd/zen5{{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_x }}{{ eessi_202506_n }}
-!!! info "No NIVIDIA GPU support for A64FX" +!!! info "No NVIDIA GPU support for A64FX" Note that there is no NVIDIA GPU support for A64FX at the moment, as we are not aware of any systems with A64FX CPUs and NVIDIA GPUs. ## AMD diff --git a/docs/systems.md b/docs/systems.md index c2993a7268..d00c08b433 100644 --- a/docs/systems.md +++ b/docs/systems.md @@ -83,6 +83,10 @@ MUSICA is currently (Jan’26) in an open test phase. * Hydra: [General documentation](https://hpc.vub.be/docs/) | [EESSI @ Hydra](https://hpc.vub.be/docs/software/modules/#european-environment-for-scientific-software-installations) +#### KU Leuven/UHasselt + +* VSC Tier-2 clusters: [General documentation](https://docs.vscentrum.be//) | [EESSI @ KU Leuven/UHasselt](https://docs.vscentrum.be/leuven/leuven_module_system.html#using-modules-from-eessi) + ### Cyprus #### The Cyprus Institute @@ -197,3 +201,9 @@ This is a RISC-V cluster that uses [`riscv.eessi.io`](https://www.eessi.io/docs/ ### LEXIS * LEXIS Platform: [General documentation](https://docs.lexis.tech/architecture/architecture.html) | [EESSI @ LEXIS](https://docs.lexis.tech/user_interfaces/howto.html#custom-hpc-jobs) + +### CANFAR Science Platform + +The Canadian Advanced Network for Astronomy Research (CANFAR) Science Platform is a scalable, cloud-native workspace for astronomy research that can run on Kubernetes clusters. CANFAR provides integrations so that CVMFS repositories available on the underlying Kubernetes client nodes are exposed to the end-user. The following CANFAR instances are known to have EESSI available: + +* OpenCADC, operated by the Canadian Astronomy Data Centre (CADC) & Digital Research Alliance of Canada: [General documentation](https://www.opencadc.org/canfar/latest/) | [EESSI @ OpenCADC](https://www.opencadc.org/canfar/latest/platform/cvmfs/#pointers-for-advanced-readers) diff --git a/docs/test-suite/ReFrame-configuration-file.md b/docs/test-suite/ReFrame-configuration-file.md index 2f5d38f5e8..2c72ce14ec 100644 --- a/docs/test-suite/ReFrame-configuration-file.md +++ b/docs/test-suite/ReFrame-configuration-file.md @@ -73,7 +73,7 @@ site_configuration = { 'general': [ { # Enable automatic detection of CPU architecture for each partition - # See https://reframe-hpc.readthedocs.io/en/stable/configure.html#auto-detecting-processor-information + # See https://reframe-hpc.readthedocs.io/en/stable/config_reference.html#config.systems.partitions.processor 'remote_detect': True, } ], @@ -407,7 +407,7 @@ in the standard ReFrame prefix (by default the current directory, unless otherwi ### Auto-detection of processor information { #cpu-auto-detection } -You can let ReFrame [auto-detect the processor information](https://reframe-hpc.readthedocs.io/en/stable/configure.html#proc-autodetection) for your system. +You can let ReFrame [auto-detect the processor information](https://reframe-hpc.readthedocs.io/en/stable/config_reference.html#config.systems.partitions.processor) for your system. #### Creation of topology file by ReFrame diff --git a/docs/training-events/2026/EESSI-happyhour-2026-006-Portable-CVMFS-Repositories.pdf b/docs/training-events/2026/EESSI-happyhour-2026-006-Portable-CVMFS-Repositories.pdf new file mode 100644 index 0000000000..8622551c99 Binary files /dev/null and b/docs/training-events/2026/EESSI-happyhour-2026-006-Portable-CVMFS-Repositories.pdf differ diff --git a/docs/training-events/2026/EESSI-happyhour-2026-007-EESSI-CLI.pdf b/docs/training-events/2026/EESSI-happyhour-2026-007-EESSI-CLI.pdf new file mode 100644 index 0000000000..93e1dc0713 Binary files /dev/null and b/docs/training-events/2026/EESSI-happyhour-2026-007-EESSI-CLI.pdf differ diff --git a/docs/training-events/2026/EESSI-happyhour-2026-008-EESSI-on-macOS.pdf b/docs/training-events/2026/EESSI-happyhour-2026-008-EESSI-on-macOS.pdf new file mode 100644 index 0000000000..4186c14675 Binary files /dev/null and b/docs/training-events/2026/EESSI-happyhour-2026-008-EESSI-on-macOS.pdf differ diff --git a/docs/training-events/2026/EESSI-happyhour-2026-009-EESSI-Docker-extensions.pdf b/docs/training-events/2026/EESSI-happyhour-2026-009-EESSI-Docker-extensions.pdf new file mode 100644 index 0000000000..76f8a649a2 Binary files /dev/null and b/docs/training-events/2026/EESSI-happyhour-2026-009-EESSI-Docker-extensions.pdf differ diff --git a/docs/training-events/2026/EESSI-happyhour-2026-010-EESSI-on-RISC-V.pdf b/docs/training-events/2026/EESSI-happyhour-2026-010-EESSI-on-RISC-V.pdf new file mode 100644 index 0000000000..12a98e3ca4 Binary files /dev/null and b/docs/training-events/2026/EESSI-happyhour-2026-010-EESSI-on-RISC-V.pdf differ diff --git a/docs/training-events/2026/EESSI-happyhour-2026-011-EESSI-2025.06.pdf b/docs/training-events/2026/EESSI-happyhour-2026-011-EESSI-2025.06.pdf new file mode 100644 index 0000000000..163c1c164b Binary files /dev/null and b/docs/training-events/2026/EESSI-happyhour-2026-011-EESSI-2025.06.pdf differ diff --git a/docs/training-events/2026/EESSI-happyhour-2026-012-Local-Builds&Contributions.pdf b/docs/training-events/2026/EESSI-happyhour-2026-012-Local-Builds&Contributions.pdf new file mode 100644 index 0000000000..5eb1cad80b Binary files /dev/null and b/docs/training-events/2026/EESSI-happyhour-2026-012-Local-Builds&Contributions.pdf differ diff --git a/docs/training-events/2026/EESSI-happyhour-2026-013-Software-Contributions.pdf b/docs/training-events/2026/EESSI-happyhour-2026-013-Software-Contributions.pdf new file mode 100644 index 0000000000..f37ec6beed Binary files /dev/null and b/docs/training-events/2026/EESSI-happyhour-2026-013-Software-Contributions.pdf differ diff --git a/docs/training-events/2026/EESSI-happyhour-2026-014-Workflows.pdf b/docs/training-events/2026/EESSI-happyhour-2026-014-Workflows.pdf new file mode 100644 index 0000000000..58eca3ca42 Binary files /dev/null and b/docs/training-events/2026/EESSI-happyhour-2026-014-Workflows.pdf differ diff --git a/docs/training-events/2026/EESSI-webinars-spring-2026-EESSI-CI-CD-2026-05-11.pdf b/docs/training-events/2026/EESSI-webinars-spring-2026-EESSI-CI-CD-2026-05-11.pdf new file mode 100644 index 0000000000..3f660b0074 Binary files /dev/null and b/docs/training-events/2026/EESSI-webinars-spring-2026-EESSI-CI-CD-2026-05-11.pdf differ diff --git a/docs/training-events/2026/EESSI-webinars-spring-2026-EESSI-CVMFS-2026-05-18.pdf b/docs/training-events/2026/EESSI-webinars-spring-2026-EESSI-CVMFS-2026-05-18.pdf new file mode 100644 index 0000000000..7a934799a9 Binary files /dev/null and b/docs/training-events/2026/EESSI-webinars-spring-2026-EESSI-CVMFS-2026-05-18.pdf differ diff --git a/docs/training-events/2026/EESSI-webinars-spring-2026-building-contributing-2026-05-04.pdf b/docs/training-events/2026/EESSI-webinars-spring-2026-building-contributing-2026-05-04.pdf new file mode 100644 index 0000000000..a5b2e091c6 Binary files /dev/null and b/docs/training-events/2026/EESSI-webinars-spring-2026-building-contributing-2026-05-04.pdf differ diff --git a/docs/training-events/2026/EESSI-webinars-spring-2026-introduction-to-EESSI-2026-04-27.pdf b/docs/training-events/2026/EESSI-webinars-spring-2026-introduction-to-EESSI-2026-04-27.pdf new file mode 100644 index 0000000000..69fca807e9 Binary files /dev/null and b/docs/training-events/2026/EESSI-webinars-spring-2026-introduction-to-EESSI-2026-04-27.pdf differ diff --git a/docs/training-events/2026/happy-hours-previous-sessions.md b/docs/training-events/2026/happy-hours-previous-sessions.md index 51c012e782..da086e0ca6 100644 --- a/docs/training-events/2026/happy-hours-previous-sessions.md +++ b/docs/training-events/2026/happy-hours-previous-sessions.md @@ -4,8 +4,83 @@ Find slides, and video recordings of earlier sessions below. --- +# Topic series: CI/CD Workflows with EESSI + +### Monday 20 April 2026 + +**Outline:** CI/CD Workflows with EESSI +([Slides (PDF)](EESSI-happyhour-2026-014-Workflows.pdf), [Recording (YouTube)](https://youtu.be/1kcLQLHt21k)) + + + +--- + +# Topic series: Revisiting Ways to Add Software to EESSI + +### Monday 13 April 2026 + +**Outline:** Local Builds and Contributions to EESSI`(part2)` +([Slides (PDF)](EESSI-happyhour-2026-013-Software-Contributions.pdf), [Recording (YouTube)](https://youtu.be/iYU4l0JmcTQ)) + + + +### Monday 30 March 2026 + +**Outline:** Local Builds and Contributions to EESSI`(part1)` +([Slides (PDF)](EESSI-happyhour-2026-012-Local-Builds&Contributions.pdf), [Recording (YouTube)](https://youtu.be/wUKuphSadis)) + + + +--- + +# Topic series: What’s New in EESSI 2025.06 ? + +### Monday 23 March 2026 + +**Outline:** Exploring EESSI 2025.06 +([Slides (PDF)](EESSI-happyhour-2026-011-EESSI-2025.06.pdf), [Recording (YouTube)](https://youtu.be/TftmYLkN5GI)) + + + +--- + # Topic series: EESSI Fundamentals Refresher +### Monday 16 March 2026 + +**Outline:** From x86 to RISC-V: Expanding EESSI’s Reach +([Slides (PDF)](EESSI-happyhour-2026-010-EESSI-on-RISC-V.pdf), [Recording (YouTube)](https://youtu.be/B0GgFpBpAnc)) + + + +### Monday 09 March 2026 + +**Outline:** Yet another way to run EESSI: Docker Extensions +([Slides (PDF)](EESSI-happyhour-2026-009-EESSI-Docker-extensions.pdf), [Recording (YouTube)](https://youtu.be/jC_clb7bLhM)) + + + +### Monday 02 March 2026 + +**Outline:** EESSI on macOS: Bringing HPC Software to Your Mac +([Slides (PDF)](EESSI-happyhour-2026-008-EESSI-on-macOS.pdf), [Recording (YouTube)](https://youtu.be/lt_Prcp2D0A)) + + + +### Monday 23 February 2026 + +**Outline:** Have You Met the EESSI Command-Line Interface (CLI)? +([Slides (PDF)](EESSI-happyhour-2026-007-EESSI-CLI.pdf), [Recording (YouTube)](https://youtu.be/4QpXe3JK0zI)) + + + +### Monday 16 February 2026 + +**Outline:** EESSI Offline: Portable CVMFS Repositories +([Slides (PDF)](EESSI-happyhour-2026-006-Portable-CVMFS-Repositories.pdf), [Recording (YouTube)](https://youtu.be/vhTdU3MyIAw)) + + + ### Monday 09 February 2026 **Outline:** EESSI Without Native CVMFS? Meet `cvmfsexec`! diff --git a/docs/training-events/2026/webinar-series-2026Q2.md b/docs/training-events/2026/webinar-series-2026Q2.md new file mode 100644 index 0000000000..32f0e84585 --- /dev/null +++ b/docs/training-events/2026/webinar-series-2026Q2.md @@ -0,0 +1,185 @@ +# EESSI webinar series (April-May 2026) + +_provided by [EuroHPC CoE MultiXscale](https://www.multixscale.eu)_ + +!!! tip + Attending these sessions is free, but you must be registered to get an invitation to join the Zoom webinar sessions! + + See also [Registration](#registration). + +**What if you no longer have to install a broad range of scientific software from +scratch on every laptop, HPC cluster, or cloud instance you use or maintain, +without compromising on performance?** + +The European Environment for Scientific Software Installations (EESSI, [https://eessi.io](https://eessi.io)) comes to the rescue! + +In this webinar series we will provide a comprehensive overview of EESSI: why we started it, how it works, how you can use it, ... + +You can register for the sessions listed below (either all of them, or selected ones). + +All sessions will be recorded. Recordings, slides, and materials used will be made publicly available shortly after each session via this page. + +**If you have any questions regarding these webinars, please send an email to `support@eessi.io`.** + +## Sessions + +- Monday 27 April 2026 (14:00-16:00 CEST): **Introduction to EESSI** +- Monday 4 May 2026 (14:00-16:00 CEST): **Building software on top of EESSI + contributing to EESSI** +- Monday 11 May 2026 (14:00-16:00 CEST): **Using EESSI for Continuous Integration** +- Monday 18 May 2026 (14:00-16:00 CEST): **Introduction to CernVM-FS** +- Monday 1 June 2026 (14:00-16:00 CEST): **Using EESSI as a base for a central software stack** + +[YouTube playlist with recordings](https://www.youtube.com/watch?v=I-KUy023I2Q&list=PL6_PkP_6pUtZu-Er2Xi2W2eJ-KugM-Btr) + +## Format + +- Online webinars (via Zoom) +- Mix of presentation & hands-on demos: ~1.5h of content, ~30min for Q&A + +## Registration {: #registration } + +Attendance is free of cost, but registration is required. + +**Register via [https://event.ugent.be/registration/eessiwebinarsspring2026](https://event.ugent.be/registration/eessiwebinarsspring2026)** + +## Q&A via Slack + +For posting questions or comments during the webinar, we strongly prefer that you post them +in the **`#webinar-series-2026q2` channel in the EESSI Slack** ([direct link to that channel](https://eessi-hpc.slack.com/archives/C0AP84QKU05)). + +If you haven't joined the EESSI Slack yet, first use the "`Slack channel`" link on the [EESSI website (https://eessi.io)](https://eessi.io). + +There will also be an opportunity at the end of the webinar to ask questions directly to the speakers, should you wish to do so. + +## Useful links + +- EESSI website: [https://eessi.io](https://eessi.io) +- EESSI documentation: [https://eessi.io/docs](https://eessi.io/docs) +- CernVM-FS website: [https://cernvm.cern.ch/fs](https://cernvm.cern.ch/fs) +- CernVM-FS documentation: [https://cvmfs.readthedocs.io](https://cvmfs.readthedocs.io) +- EasyBuild website: [https://easybuild.io](https://easybuild.io) +- EasyBuild documentation: [https://docs.easybuild.io](https://docs.easybuild.io) +- MultiXscale website: [https://www.multixscale.eu](https://www.multixscale.eu) + +--- + +## Session details + +### Introduction to EESSI + +- Monday 27 April 2026, 14:00-16:00 CEST (Zoom webinar) +- speaker: Helena Vela (Do IT Now) +- [slides (PDF)](EESSI-webinars-spring-2026-introduction-to-EESSI-2026-04-27.pdf) +- [recording (YouTube)](https://www.youtube.com/watch?v=I-KUy023I2Q) + +
+ +
+ +#### Outline + +The European Environment for Scientific Software Installation (EESSI) is a collaborative initiative aimed at streamlining how scientific software is deployed and shared across diverse infrastructures, from high-performance computing (HPC) clusters and cloud platforms to local workstations. By providing a fully pre-built, modular software environment, EESSI addresses the challenges of performance and reproducibility, allowing users to access the same optimized software regardless of their specific hardware. + +This session will provide an overview of the current status of EESSI and the progress made in expanding its capabilities. We will highlight broader support for modern computing technologies, including the addition of new CPU and GPU targets, as well as a significantly grown software ecosystem that now features over 750 unique software projects—or over 3,000 when including individual Python packages and R libraries. + +The presentation will cover EESSI's architecture, its integration with established tools like Spack and Open OnDemand, and how it has evolved into a key service for managing software across varied infrastructures. Through a live hands-on demo, we will showcase how EESSI is utilized in real-world HPC and cloud environments. Finally, we will discuss the future direction of the platform, outlining upcoming features and improvements designed to support scientific software management in Europe and beyond. + +--- + +### Building software on top of EESSI + contributing to EESSI + +- Monday 4 May 2026, 14:00-16:00 CEST (Zoom webinar) +- speakers: + - Lara Peeters (Ghent University) + - Kenneth Hoste (Ghent University) +- [slides (PDF)](EESSI-webinars-spring-2026-building-contributing-2026-05-04.pdf) +- [recording (YouTube)](https://youtu.be/ZDzxDujSg0w) + +
+ +
+ +#### Outline + +- A detailed look at the EESSI software layer +- Building software on top of EESSI + - Using EasyBuild, via `EESSI-extend` + - Manually, with the help of `buildenv` + - Using Spack on top of EESSI +- Contributing software to EESSI + +--- + +### Using EESSI for Continuous Integration (CI) + +- Monday 11 May 2026, 14:00-16:00 CEST (Zoom webinar) +- speaker: Alan O'Cais (freelancer w/ Ghent University) +- [slides (PDF)](EESSI-webinars-spring-2026-EESSI-CI-CD-2026-05-11.pdf) +- [recording (YouTube)](https://youtu.be/Tcjubkc43Hg) + +
+ +
+ +#### Outline + +- Introducing Continuous Integration (CI) +- Navigating EESSI to build my project +- Building my project with the EESSI GitHub Action +- Navigating EasyBuild to build with EESSI-extend +- Building with EESSI-extend and the EESSI GitHub Action +- Building my project with the EESSI GitLab Component +- CI with EESSI + Spack +- Continuous Deployment and what EESSI can offer there + +--- + + +### Introduction to CernVM-FS + +- Monday 18 May 2026, 14:00-16:00 CEST (Zoom webinar) +- speaker: Valentin Volkl (CERN) +- [slides (PDF)](EESSI-webinars-spring-2026-EESSI-CVMFS-2026-05-18.pdf) +- [recording (YouTube)](https://youtu.be/jsnGDWkASnI) + +
+ +
+ +#### Outline + +- What is CernVM-FS? +- Quick introduction to EESSI (example CernVM-FS repository) +- CernVM-FS client installation + configuration +- CernVM-FS on large-scale systems: proxy, Stratum 1 +- Alternative access mechanisms for CernVM-FS repos +- Monitoring CernVM-FS +- Troubleshooting CernVM-FS +- Creating your own CernVM-FS repository +- Software startup performance + +--- + + +### Using EESSI as a base for a central software stack + +- Monday 1 June 2026, 14:00-16:00 CEST (Zoom webinar) +- speakers: + - Caspar van Leeuwen (SURF) + - Bob Dröge (University of Groningen) + +#### Outline + +Coming soon! + +#### Materials {: #materials-cvmfs } + +- slides (PDF) coming soon! +- recording (YouTube) coming soon! + +--- + +!!! tip + Attending these sessions is free, but you must be registered to get an invitation to join the Zoom webinar sessions! + + See also [Registration](#registration). diff --git a/docs/training-events/happy-hours-sessions.md b/docs/training-events/happy-hours-sessions.md index 4bc49e0471..48411ab317 100644 --- a/docs/training-events/happy-hours-sessions.md +++ b/docs/training-events/happy-hours-sessions.md @@ -31,19 +31,17 @@ If you haven't joined the EESSI Slack yet, [click here to join]({{ config.extra. --- -### 💡 **Next session**: EESSI Offline: Portable CVMFS Repositories -### Topic Series: EESSI Fundamentals Refresher -🗓️ Schedule -#### Monday 16 February 2026, 14:00-15:00 CE(S)T - ---- +!!! note "Schedule update! :rotating_light:" + [Mondays between **April–June 2026** will be dedicated to the **EESSI webinar series**.](https://www.eessi.io/docs/training-events/2026/webinar-series-2026Q2/) -### Upcoming topic series: EESSI Fundamentals Refresher -###### Outline +

+ EESSI Webinar 2026 +

-- 16 February 2026 - EESSI Offline: Portable CVMFS Repositories - -- 23 February 2026 - Have You Met the EESSI Command-Line Interface (CLI)? +### 💡 **Next session**: TBD +### Topic Series: TBD +🗓️ Schedule +#### Monday 8 June 2026, 14:00-15:00 CE(S)T --- @@ -53,8 +51,32 @@ If you haven't joined the EESSI Slack yet, [click here to join]({{ config.extra. See the full Recordings, slides, and materials here: [Previous Sessions & Videos](2026/happy-hours-previous-sessions.md) +*Topic series: CI/CD Workflows with EESSI* + +- 20 April 2026 - [CI/CD Workflows with EESSI](https://youtu.be/1kcLQLHt21k) + +*Topic series: Revisiting Ways to Add Software to EESSI* + +- 13 April 2026 - [Local Builds and Contributions to EESSI`(part2)`](https://youtu.be/iYU4l0JmcTQ) + +- 30 March 2026 - [Local Builds and Contributions to EESSI`(part1)`](https://youtu.be/wUKuphSadis) + +*Topic series: What’s New in EESSI 2025.06 ?* + +- 23 March 2026 - [What’s New in EESSI 2025.06 ?](https://youtu.be/TftmYLkN5GI) + *Topic series: EESSI Fundamentals Refresher* +- 16 March 2026 - [From x86 to RISC-V: Expanding EESSI’s Reach](https://youtu.be/B0GgFpBpAnc) + +- 09 March 2026 - [Yet another way to run EESSI: Docker Extensions](https://youtu.be/jC_clb7bLhM) + +- 02 March 2026 - [EESSI on macOS: Bringing HPC Software to Your Mac](https://youtu.be/lt_Prcp2D0A) + +- 23 February 2026 - [Have You Met the EESSI Command-Line Interface (CLI)?](https://youtu.be/4QpXe3JK0zI) + +- 16 February 2026 - [EESSI Offline: Portable CVMFS Repositories](https://youtu.be/vhTdU3MyIAw) + - 09 February 2026 - [EESSI Without Native CVMFS? Meet `cvmfsexec`!](https://youtu.be/KJ3UhKFo5fs) - 02 February 2026 - [Revisit `eessi_container.sh`](https://youtu.be/On27r07aQug) diff --git a/docs/training-events/index.md b/docs/training-events/index.md index aa37703fa5..007125d5fe 100644 --- a/docs/training-events/index.md +++ b/docs/training-events/index.md @@ -3,6 +3,12 @@ ## Upcoming events (2026) * [*EESSI happy hour sessions 2026*](./happy-hours-sessions.md) (online sessions **every** Monday, starting 12 January 2026) +* [*EESSI webinar series (April-May 2026)*](2026/webinar-series-2026Q2.md) (online tutorials) + * [**Introduction to EESSI** *(27 April 2026)*](2026/webinar-series-2026Q2.md#introduction-to-eessi) + * [**Building software on top of EESSI + contributing to EESSI** *(4 May 2026)*](2026/webinar-series-2026Q2.md#building-software-on-top-of-eessi-contributing-to-eessi) + * [**Using EESSI for Continuous Integration** *(11 May 2026)*](2026/webinar-series-2026Q2.md#using-eessi-for-continuous-integration-ci) + * [**Introduction to CernVM-FS** *(18 May 2026)*](2026/webinar-series-2026Q2.md#introduction-to-cernvm-fs) + * [**Using EESSI as a base for a central software stack** (1 June 2026)](2026/webinar-series-2026Q2.md#using-eessi-as-a-base-for-a-central-software-stack) ### Past events (2025) diff --git a/docs/using_eessi/building_on_eessi.md b/docs/using_eessi/building_on_eessi.md index 21ba72cc43..96a616cb77 100644 --- a/docs/using_eessi/building_on_eessi.md +++ b/docs/using_eessi/building_on_eessi.md @@ -22,7 +22,7 @@ module help EESSI-extend/2023.06-easybuild The installation prefix is determined by `EESSI-extend` through the following logic: 1. If `$EESSI_CVMFS_INSTALL` is set, software is installed in `$EESSI_SOFTWARE_PATH`. This variable shouldn't be used by users and would only be used by CVMFS administrators of the EESSI repository. -2. If `$EESSI_SITE_INSTALL` is set, the EESSI site installation prefix (`$EESSI_SITE_SOFTWARE_PATH`) will be used. This is typically where sites hosting a system that has EESSI deployed would install additional software on top of EESSI and make it available to all their users. +2. If `$EESSI_SITE_INSTALL` is set, the EESSI site installation prefix (`$EESSI_SITE_SOFTWARE_PATH`) will be used. This is typically where sites hosting a system that has EESSI deployed would install additional software on top of EESSI and make it available to all their users. Note that `$EESSI_SITE_SOFTWARE_PATH` is set by the `EESSI` module. The location it points to can be changed by setting the `$EESSI_SITE_SOFTWARE_PREFIX` _before_ loading the `EESSI` module. 3. If `$EESSI_PROJECT_INSTALL` is set (and `$EESSI_USER_INSTALL` is not set), this prefix will be used. You should use this if you want to install additional software on top of EESSI that should also be usable by your project partners on the same system. For example, if you have a project space at `/project/my_project` that all your project partners can access, you could set `export EESSI_PROJECT_INSTALL=/project/my_project/eessi`. Make sure that this directory has the SGID permission set (`chmod g+s $EESSI_PROJECT_INSTALL`). This way, all the additional installations done with `EESSI-extend` will be put in that prefix, and will get the correct UNIX file permissions so that all your project partners can access it. 4. If `$EESSI_USER_INSTALL` is set, this prefix will be used. You should use this if you want to install additional software on top of EESSI just for your own user. For example, you could set `export EESSI_USER_INSTALL=$HOME/my/eessi/extend/prefix`, and `EESSI-extend` will install all software in this prefix. Unix file permissions will be set such that these installations will be readable only to the user. diff --git a/mkdocs.yml b/mkdocs.yml index e517b3b0e1..53a27507eb 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -23,14 +23,13 @@ nav: - Software layer: software_layer.md - Supported CPU targets: software_layer/cpu_targets.md - Supported GPU targets: software_layer/gpu_targets.md - - Available software and repositories: - - Software: available_software/overview.md - - Repositories: - - Production: - - Software: repositories/software.eessi.io.md - - Versions: repositories/versions.md - - RISC-V: repositories/riscv.eessi.io.md - - Development repository: repositories/dev.eessi.io.md + - Available software: available_software/index.md + - Repositories: + - Production: + - Software: repositories/software.eessi.io.md + - Versions: repositories/versions.md + - RISC-V: repositories/dev.eessi.io-riscv.md + - Development repository: repositories/dev.eessi.io.md - Installation and configuration: - Is EESSI already installed?: getting_access/is_eessi_accessible.md - Native: getting_access/native_installation.md @@ -38,6 +37,7 @@ nav: - Windows and macOS: - Windows with WSL: getting_access/eessi_wsl.md - macOS with Lima: getting_access/eessi_limactl.md + - macOS with container tool: getting_access/eessi_Apple_container_tool.md - Configuring EESSI: - How to configure EESSI: site_specific_config/host_injections.md - GPU support: site_specific_config/gpu.md @@ -62,7 +62,7 @@ nav: # - Dashboard: test-suite/dashboard.md - Known issues and workarounds: - v2023.06: known_issues/eessi-2023.06.md - - Adding software to EESSI: + - Adding software to EESSI: - Overview: adding_software/overview.md - For contributors: - Contribution policy: adding_software/contribution_policy.md @@ -79,10 +79,11 @@ nav: - Meetings: meetings.md - Talks: talks.md # - Community meeting (Sept'22): meetings/2022-09-amsterdam.md + - Mailing list: mailing_list.md - Contact info: contact.md - Training & events: training-events/index.md - Systems where EESSI is available: systems.md - - Roadmap (short-term): roadmap/short-term.md + - Roadmap: roadmap.md - Governance: - Overview: governance/index.md - Charter: governance/charter.md @@ -99,10 +100,16 @@ plugins: - git-revision-date-localized # necessary for search to work - search - # Enable macros so we can use global variables - - macros + # Enable macros so we can use global variables, and use Jinja2 templates + # see also https://mkdocs-macros-plugin.readthedocs.io/en/latest/macros/ + - macros: + module_name: docs/available_software/macros - redirects: redirect_maps: + # useful easy-to-remember short URLs, don't remove these! + gpu.md: site_specific_config/gpu.md + rocm.md: site_specific_config/rocm.md + # redirects for pages that were moved at some point adding_software.md: adding_software/overview.md contributing_sw/building_software.md: adding_software/building_software.md contributing_sw/contribution_policy.md: adding_software/contribution_policy.md @@ -112,8 +119,7 @@ plugins: contributing_sw/overview.md: adding_software/overview.md software_layer/adding_software.md: adding_software/overview.md pilot.md: repositories/pilot.md # https://www.eessi.io/docs/pilot is mentioned in the EESSI open access paper - gpu.md: site_specific_config/gpu.md - rocm.md: site_specific_config/rocm.md + available_software/overview.md: available_software/index.md # training/ was renamed to training-events/ + subdirectory was removed for Happy Hour sessions training/index.md: training-events/index.md training/happy-hours-sessions.md: training-events/happy-hours-sessions.md @@ -151,12 +157,12 @@ plugins: - inject_ld_json # link to any Markdown heading - autorefs - # api automatics documentation + # api automatics documentation - mkdocstrings: default_handler: python handlers: python: - paths: [test-suite/test-suite] + paths: [test-suite/test-suite] options: docstring_style: sphinx docstring_section_style: spacy @@ -207,18 +213,15 @@ extra: - icon: fontawesome/brands/twitter link: https://twitter.com/eessi_hpc # this gets auto-updated via update_generated_time.sh script run in update_available_software.yml action - generated_time: "Wed, 11 Feb 2026 at 13:39:38 UTC" + generated_time: "Fri, 22 May 2026 at 14:46:54 UTC" slack_invite_url: "https://join.slack.com/t/eessi-hpc/shared_invite/zt-2wg10p26d-m_CnRB89xQq3zk9qxf1k3g" extra_javascript: # mermaid diagram - https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs - # javascript which generates overview of available software - - https://code.jquery.com/jquery-3.7.0.min.js - - https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js - - available_software/javascripts/populate_overview.js - - https://cdn.datatables.net/plug-ins/2.2.2/pagination/bootstrap_input.js + # javascript used in overview of available software + - available_software/javascripts/software-filter.js extra_css: # CSS for popultate_overview - https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css - - available_software/css/style_table.css - - https://cdn.datatables.net/2.2.2/css/dataTables.semanticui.css + - available_software/css/software.css + - https://cdn.datatables.net/2.2.2/css/dataTables.semanticui.cssoftwares diff --git a/requirements.txt b/requirements.txt index 2bda7fc5b2..ef19cc0466 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,7 @@ -mkdocs +# stick to click < 8.3.0 to ensure live reload works, +# see https://github.com/squidfunk/mkdocs-material/issues/8478 +click<8.3.0 +mkdocs<2.0 mkdocs-material mkdocs-redirects mkdocs-git-revision-date-localized-plugin diff --git a/scripts/available_software/available_software.py b/scripts/available_software/available_software.py index 7c28845e41..dba2eaa7a8 100644 --- a/scripts/available_software/available_software.py +++ b/scripts/available_software/available_software.py @@ -11,374 +11,42 @@ @author: Michiel Lachaert (Ghent University) @author: Lara Peeters (Ghent University) """ + import copy import json import os -import re -import subprocess -import sys -import time import yaml -from typing import Union, Tuple +from easybuild.tools import LooseVersion +from mdutils.tools.Table import Table from string import Template -import numpy as np -from mdutils.mdutils import MdUtils -from natsort import natsorted -from functools import cmp_to_key - -EESSI_TOPDIR = "/cvmfs/software.eessi.io/versions/2023.06" -# some CPU targets are excluded for now, because software layer is too incomplete currently -EXCLUDE_CPU_TARGETS = [] +AARCH64 = "aarch64" +AMD = "amd" +GENERIC = "generic" +INTEL = "intel" +NVIDIA = "nvidia" +X86_64 = "x86_64" # -------------------------------------------------------------------------------------------------------- # MAIN # -------------------------------------------------------------------------------------------------------- + def main(): os.environ["SHELL"] = "/bin/bash" root_dir = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) - path_data_dir = os.path.join(root_dir, "docs/available_software/data") - - # Generate the JSON overviews - modules = modules_eessi() - print(modules) - print("Generate JSON overview... ", end="", flush=True) - generate_json_overview(modules, path_data_dir) - print("Done!") - - # Generate the JSON detail - json_data = generate_json_detailed_data(modules) - json_data = get_extra_info_eessi(json_data) - print("Generate JSON detailed... ", end="", flush=True) - json_path = generate_json_detailed(json_data, path_data_dir) - print("Done!") - - # Generate detail markdown pages - print("Generate detailed pages... ", end="", flush=True) - generate_detail_pages(json_path, os.path.join(root_dir, "docs/available_software/detail")) - print("Done!") - - -# -------------------------------------------------------------------------------------------------------- -# Functions to run bash commands -# -------------------------------------------------------------------------------------------------------- - -def bash_command(cmd: str) -> np.ndarray: - bash = os.getenv("SHELL") - proc = subprocess.run( - [bash, '-c', cmd], - encoding="utf-8", - stdout=subprocess.PIPE, - stderr=subprocess.PIPE - ) - - return np.array(proc.stdout.split()) - - -# -------------------------------------------------------------------------------------------------------- -# Functions to run "module" commands -# -------------------------------------------------------------------------------------------------------- - -def module(*args, filter_fn=lambda x: x) -> np.ndarray: - """ - Function to run "module" commands. - - @param args: Extra arguments for the module command. - @param filter_fn: Filter function on the output. - @return: Array with the output of the module command. - """ - lmod = os.getenv('LMOD_CMD') - if lmod is None: - sys.stderr.write("Lmod not found (via $LMOD_CMD)!\n") - sys.exit(1) - - proc = subprocess.run( - [lmod, "python", "--terse"] + list(args), - encoding="utf-8", - stderr=subprocess.PIPE, - stdout=subprocess.PIPE - ) - exec(proc.stdout) - return filter_fn(np.array(proc.stderr.strip().split("\n"))) - - -def module_avail(name: str = "", filter_fn=lambda x: x) -> np.ndarray: - """ - Function to run "module avail" commands. - - @param name: Module name, or empty string to return all available modules. - @param filter_fn: Filter on the output. - @return: List of all available modules of name, or all if name is not given. - """ - return module("avail", name, filter_fn=filter_fn) - - -def module_swap(name: str) -> None: - """ - Function to run "module swap" commands. - - @param name: Name of module you want to swap to. - """ - module("swap", name) - - -def module_use(path: str) -> None: - """ - Function to run "module use" commands. - - @param path: Path to the directory with all the modules you want to use. - """ - module("use", path) - - -def module_unuse(path: str) -> None: - """ - Function to run "module unuse" commands. - - @param path: Path to the directory with all the modules you want to unuse. - """ - module("unuse", path) - - -def module_whatis(name: str) -> dict: - """ - Function to run "module whatis" commands. - - @param name: Name of module you want the whatis info for. - """ - whatis = {} - data = module("show", name) - for line in data[np.char.startswith(data, "whatis")]: - content = re.sub(pattern=r'whatis\((.*)\)', repl='\\1', string=line).strip('"') - key, value = tuple(content.split(":", maxsplit=1)) - whatis[key.strip()] = value.strip() - return whatis - - -def module_info(info: str) -> dict: - """ - Function to parse through lua file. - - @param info: String with the contents of the lua file. - """ - whatis = {} - data = np.array(info.split("\n")) - # index of start description to handle multi lined description - i = np.flatnonzero(np.char.startswith(data, "whatis([==[Description"))[0] - if np.char.endswith(data[i], "]==])"): - content = re.sub(pattern=r'whatis\(\[==\[(.*)\]==\]\)', repl='\\1', string=data[i]).strip('"') - else: - description = re.sub(pattern=r'whatis\(\[==\[(.*)', repl='\\1', string=data[i]).strip('"') - while not np.char.endswith(data[i], "]==])"): - i += 1 - description += data[i] - content = re.sub(pattern=r'(.*)\]==\]\)', repl='\\1', string=description).strip('"') - key, value = tuple(content.split(":", maxsplit=1)) - whatis[key.strip()] = value.strip() - - for line in data[np.char.startswith(data, "whatis")]: - if not np.char.startswith(line, "whatis([==[Description"): - content = re.sub(pattern=r'whatis\(\[==\[(.*)\]==\]\)', repl='\\1', string=line).strip('"') - key, value = tuple(content.split(":", maxsplit=1)) - whatis[key.strip()] = value.strip() - return whatis - - -# -------------------------------------------------------------------------------------------------------- -# Fetch data EESSI -# -------------------------------------------------------------------------------------------------------- - -def filter_fn_eessi_modules(data: np.ndarray) -> np.ndarray: - """ - Filter function for the output of all software modules for EESSI (excl. 'target'). - @param data: Output - @return: Filtered output - """ - return data[~np.char.endswith(data, ":")] - - -def targets_eessi() -> np.ndarray: - """ - Returns all the target names of EESSI. - @return: target names - """ - if not os.path.exists(EESSI_TOPDIR): - sys.stderr.write(f"ERROR: {EESSI_TOPDIR} does not exist!\n") - sys.exit(1) - - commands = [ - f"find {EESSI_TOPDIR}/software/linux/*/* -maxdepth 0 \\( ! -name 'intel' -a ! " - "-name 'amd' -a ! -name 'nvidia' \\) -type d", - f'find {EESSI_TOPDIR}/software/linux/*/{{amd,intel,nvidia}}/* -maxdepth 0 -type d' - ] - targets = np.array([]) - - for command in commands: - targets = np.concatenate([targets, bash_command(command)]) - - return targets - - -def eessi_target_compare(a, b): - """ - A comparison function to compare the EESSI targets and order them. - First the main architecture is ordered alphabetically, then within them - the CPU targets are again ordered alphabetically, except for the - generic target, which always comes first. Targets that include an extra - vendor subdir always after those without a vendor subdir. - @return: 0, 1, -1 - """ - if a == b: - return 0 - - a_split = a.rsplit('/') - b_split = b.rsplit('/') - - # We first compare the main architecture (aarch64, x86_64, ...), which is the 7th field - if a_split[7] == b_split[7]: - # Check if one item is for generic builds (last field), These should always be listed first - if a_split[-1] == 'generic': - return -1 - if b_split[-1] == 'generic': - return 1 - # If the number of fields are not equal, one has an extra vendor subdirectory (e.g. amd, intel, nvidia). - # These should always come after the ones without this extra level. - if len(a_split) != len(b_split): - return 1 if len(a_split) > len(b_split) else -1 - - # In all other cases we just do an alphabetical sort of the strings. - return 1 if a > b else -1 - - -def modules_eessi() -> dict: - """ - Returns names of all software module that are installed on EESSI. - They are grouped by target. - @return: Dictionary with all the modules per target - """ - print("Start collecting modules:") - data = {} - - modulepath = os.getenv('MODULEPATH') - if modulepath: - module_unuse(modulepath) - - targets = targets_eessi() - - # Order targets - eessi_target_compare_key = cmp_to_key(eessi_target_compare) - ordered_targets = sorted(targets, key=eessi_target_compare_key) - - targets = [t for t in ordered_targets if not any(t.endswith(x) for x in EXCLUDE_CPU_TARGETS)] - - for target in targets: - print(f"\t Collecting available modules for {target}... ", end="", flush=True) - module_use(target + "/modules/all/") - data[target] = module_avail(filter_fn=filter_fn_eessi_modules) - print(f"found {len(data[target])} modules!") - module_unuse(os.getenv('MODULEPATH')) - - print("All data collected!\n") - return data - - -def get_extra_info_eessi(json_data) -> dict: - """ - add Description, homepage and a list of extensions (only for software with extensions) - @return: Dictionary with all the modules and their site_packages - """ - modules = json_data['software'] - for software in modules: - for mod in modules[software]['versions']: - if software == "Java": - # TODO handle specific naming schema for Java - # code cannot handle "Java/11(@Java/11.0.20)" - continue - base_path = modules[software]['versions'][mod]['targets'][0] + '/modules/all/' - path = base_path + mod + ".lua" - f = open(path, 'r') - info = f.read() - if info != "": - whatis = module_info(info) - json_data['software'][software]['description'] = whatis['Description'] - if "Homepage" in whatis.keys(): - json_data['software'][software]['homepage'] = whatis['Homepage'] - if "Extensions" in whatis.keys(): - json_data["software"][software]["versions"][mod]["extensions"] = whatis['Extensions'] - return json_data - - -# -------------------------------------------------------------------------------------------------------- -# Util functions -# -------------------------------------------------------------------------------------------------------- - -def analyze_module(mod: str) -> Tuple: - return ( - mod.split("/", 1)[0], - mod.split("/", 1)[1] if "/" in mod else "" + # Allow for test data and target + target_directory = os.environ.get("AVAIL_SOFTWARE_TEST_DIRECTORY") or os.path.join( + root_dir, "docs", "available_software" ) + path_data_dir = os.path.join(target_directory, "data") - -def mod_names_to_software_names(mod_list: np.ndarray) -> np.ndarray: - """ - Convert a list of module names to a list of the software names. - - @param mod_list: List of the module names - @return: List of the corresponding software names - """ - return np.unique([analyze_module(mod)[0] for mod in mod_list]) - - -def get_unique_software_names(data: Union[dict, list, np.ndarray]) -> Union[dict, list, np.ndarray]: - """ - Simplify list of modules by removing versions and duplicates. - - @param data: List of modules - @return: List of software names. - """ - - if isinstance(data, dict): - simplified_data = {target: mod_names_to_software_names(data[target]) for target in data} - else: - simplified_data = mod_names_to_software_names(data) - - return simplified_data - - -def dict_sort(dictionary: dict) -> dict: - """ - Sort a dictionary by key. - - @param dictionary: A dictionary - @return: Sorted dictionary - """ - return dict(natsorted(dictionary.items())) - - -# -------------------------------------------------------------------------------------------------------- -# Generate detailed markdown -# -------------------------------------------------------------------------------------------------------- - -def generate_software_table_data(software_data: dict, targets: list) -> list: - """ - Construct the data for the detailed software table. - - @param software_data: Software specific data. - @param targets: List with all the target names - @return: 1D list with all the data for the table - """ - table_data = [" "] + [target[57:] for target in targets] - - for module_name, available in list(software_data.items())[::-1]: - row = [module_name] - - for target in targets: - row += ("x" if target in available["targets"] else "-") - table_data += row - - return table_data + # Generate software-specific pages using data from https://eessi.io/api_data/data/eessi_api_metadata_software.json + print("Generating software-specific pages... ", end="", flush=True) + api_data_software_json = os.path.join(path_data_dir, "eessi_api_metadata_software.json") + generate_software_pages(api_data_software_json, os.path.join(target_directory, "detail")) + print("Done!") # LD+JSON Template with placeholders @@ -416,13 +84,58 @@ def generate_software_table_data(software_data: dict, targets: list) -> list: """) -def generate_software_detail_page( - software_name: str, - software_data: dict, - generated_time: str, - targets: list, - path: str -) -> None: +def format_cpu_arch_list(cpu_archs): + + res = [] + + # generic CPU targets + gen_cpu_targets = [c for c in cpu_archs if c.endswith("/" + GENERIC)] + res.append("`generic`: " + ", ".join(["`" + x.split("/", maxsplit=1)[0] + "`" for x in gen_cpu_targets]) + "
") + + # Arm CPU targets + arm_cpu_targets = [c for c in cpu_archs if c.startswith(AARCH64) and not c.endswith("/" + GENERIC)] + label = 'Arm' + res.append(label + ": " + ", ".join(["`" + x.split("/", maxsplit=1)[1] + "`" for x in arm_cpu_targets]) + "
") + + # x86_64 AMD CPU targets + amd_cpu_targets = [c for c in cpu_archs if c.startswith(X86_64 + "/" + AMD)] + label = 'AMD' + res.append(label + ": " + ", ".join(["`" + x.split("/", maxsplit=2)[2] + "`" for x in amd_cpu_targets]) + "
") + + # x86_64 Intel CPU targets + intel_cpu_targets = [c for c in cpu_archs if c.startswith(X86_64 + "/" + INTEL)] + label = 'Intel' + res.append(label + ": " + ", ".join(["`" + x.split("/", maxsplit=2)[2] + "`" for x in intel_cpu_targets]) + "
") + + return res + + +def format_gpu_arch_list(gpu_archs): + + res = [] + + all_gpu_archs = set([y for x in gpu_archs.values() for y in x]) + + # AMD GPU targets + amd_gpu_targets = sorted([g for g in all_gpu_archs if g.startswith(AMD + "/")]) + if amd_gpu_targets: + label = 'AMD' + res.append( + label + ": " + ", ".join(["`" + x.split("/", maxsplit=1)[1] + "`" for x in amd_gpu_targets]) + "
" + ) + + # NVIDIA GPU targets + nvidia_gpu_targets = sorted([g for g in all_gpu_archs if g.startswith(NVIDIA + "/")]) + if nvidia_gpu_targets: + label = 'NVIDIA' + res.append( + label + ": " + ", ".join(["`" + x.split("/", maxsplit=1)[1] + "`" for x in nvidia_gpu_targets]) + "
" + ) + + return res + + +def generate_software_page(software_name: str, software_data: dict, path: str) -> None: """ Generate one software specific detail page. @@ -432,285 +145,160 @@ def generate_software_detail_page( @param targets: List with all the target names @param path: Path of the directory where the detailed page will be created. """ - sorted_versions = dict_sort(software_data["versions"]) - newest_version = list(sorted_versions.keys())[-1] - ldjson_software_data = copy.deepcopy(software_data) + filename = os.path.join(path, f"{software_name}.md") - filename = f"{path}/{software_name}.md" - md_file = MdUtils(file_name=filename, title=f"{software_name}") - if 'description' in software_data.keys(): - description = software_data['description'] - md_file.new_paragraph(f"{description}") - else: - ldjson_software_data['description'] = '' - if 'homepage' in software_data.keys(): - homepage = software_data['homepage'] - md_file.new_paragraph(f"{homepage}") - else: - ldjson_software_data["homepage"] = '' - - md_file.new_header(level=1, title="Available modules") - - md_file.new_paragraph(f"The overview below shows which {software_name} installations are available per " - f"target architecture in EESSI, ordered based on software version (new to old).") - md_file.new_paragraph(f"To start using {software_name}, load one of these modules using a `module load` command " - f"like:") - md_file.insert_code(f"module load {newest_version}", language="shell") - md_file.new_paragraph(f"(This data was automatically generated on {generated_time})", bold_italics_code="i") - md_file.new_line() - - md_file.new_table( - columns=len(targets) + 1, - rows=len(sorted_versions) + 1, - text=generate_software_table_data(sorted_versions, targets) + md_lines = [ + f"# {software_name}", + "", + ] + if "description" in software_data.keys(): + description = software_data["description"] + md_lines.extend( + [ + "", + f"{description}", + "", + ] + ) + + if "homepage" in software_data.keys(): + homepage = software_data["homepage"] + md_lines.append(f'homepage: [{homepage}]({homepage})') + + md_lines.extend( + [ + "", + "## Available installations", + "", + ] ) - for version, details in list(sorted_versions.items())[::-1]: - if 'extensions' in details: - md_file.new_paragraph(f"### {version}") - md_file.new_paragraph("This is a list of extensions included in the module:") - packages = details['extensions'] - md_file.new_paragraph(f"{packages}") - - md_file.create_md_file() - + table_data = [ + f"{software_name} version", + "Supported CPU targets", + "Supported GPU targets", + "EESSI version", + "Module", + ] + n_cols = len(table_data) + + n_rows = 1 + for version in sorted( + software_data["versions"], key=lambda x: LooseVersion(x["module"]["module_version"]), reverse=True + ): + cpu_targets = format_cpu_arch_list(version["cpu_arch"]) + gpu_targets = format_gpu_arch_list(version["gpu_arch"]) + + req_mods = version["required_modules"] + if req_mods and req_mods[0].get("module_name") == "EESSI": + eessi_version = req_mods[0]["module_version"] + eessi_version_no_dots = eessi_version.replace(".", "") + eessi_version_label = f'{eessi_version}' + else: + eessi_version_label = "*???*" + + table_data.extend( + [ + version["version"], + "".join(cpu_targets), + "".join(gpu_targets) or "*(none)*", + eessi_version_label, + "`" + version["module"]["full_module_name"] + "`", + ] + ) + n_rows += 1 + + table = Table().create_table(columns=n_cols, rows=n_rows, text=table_data) + md_lines.extend(table.splitlines()) + + exts = {} + for version in software_data["versions"]: + for ext_data in version["extensions"]: + ext_details = exts.setdefault(ext_data["name"], {}) + ext_version = ext_details.setdefault(ext_data["version"], set()) + ext_version.add(version["module"]["full_module_name"]) + + if exts: + md_lines.extend( + [ + "", + "## Extensions", + "", + f"Overview of extensions included in {software_name} installations", + "", + ] + ) + + table_header = ["`%s` version", f"{software_name} modules that include it"] + n_cols = len(table_header) + + for ext_name, ext_details in sorted(exts.items(), key=lambda x: x[0].lower()): + + md_lines.extend( + [ + "", + f"### {ext_name}", + "", + ] + ) + + table_data = table_header[:] + table_data[0] = table_data[0] % ext_name + + n_rows = 1 + for ext_version, ext_version_mods in sorted( + ext_details.items(), key=lambda x: LooseVersion(x[0]), reverse=True + ): + n_rows += 1 + table_data.extend( + [ + ext_version, + "
".join("`" + m + "`" for m in sorted(ext_version_mods, key=LooseVersion, reverse=True)), + ] + ) + + table = Table().create_table(columns=n_cols, rows=n_rows, text=table_data) + md_lines.extend(table.splitlines()) + + md_txt = "\n".join(md_lines) + + with open(filename, "w") as fp: + fp.write(md_txt) + + # Add ldjson data topmatter with open(filename) as f: read_data = f.read() - with open(filename, 'w') as f: + ldjson_software_data = copy.deepcopy(software_data) + if "description" not in software_data.keys(): + ldjson_software_data["description"] = "" + if "homepage" not in software_data.keys(): + ldjson_software_data["homepage"] = "" + with open(filename, "w") as f: # Add the software name - ldjson_software_data['name'] = software_name - # Just output the supported versions (with toolchains) - ldjson_software_data["version"] = list(sorted_versions.keys()) + ldjson_software_data["name"] = software_name + # Just output the supported versions + ldjson_software_data["version"] = sorted( + list(set([version["version"] for version in software_data["versions"]])), key=LooseVersion, reverse=True + ) # Make the description safe for json (and remove surrounding quotes) - ldjson_software_data['description'] = json.dumps(ldjson_software_data['description'])[1:-1] + ldjson_software_data["description"] = json.dumps(ldjson_software_data["description"])[1:-1] json_str = ldjson_template.substitute(ldjson_software_data) # Replace placeholders json_topmatter = json.loads(json_str) - # Remove the TOC - json_topmatter["hide"] = ["toc"] yaml_topmatter = yaml.dump(json_topmatter) f.write("---\n" + yaml_topmatter + "---\n" + read_data) -def generate_detail_pages(json_path, dest_path) -> None: +def generate_software_pages(json_path, dest_path) -> None: """ - Generate all the detailed pages for all the software that is available. + Generate software-specific pages """ with open(json_path) as json_data: data = json.load(json_data) - all_targets = data["targets"] - - time_generated_template = os.environ.get('TIME_GENERATED_TEMPLATE') - for software, content in data["software"].items(): - if time_generated_template: - time_generated = time_generated_template - else: - time_generated = data["time_generated"] - generate_software_detail_page(software, content, time_generated, all_targets, dest_path) - - -# -------------------------------------------------------------------------------------------------------- -# Generate overview markdown -# -------------------------------------------------------------------------------------------------------- - -def generate_table_data(avail_mods: dict) -> Tuple[np.ndarray, int, int]: - """ - Generate data that can be used to construct a MarkDown table. - - @param avail_mods: Available modules - @return: Returns tuple (Table data, #col, #row) - """ - avail_mods = get_unique_software_names(avail_mods) - all_modules = get_unique_software_names(np.concatenate(list(avail_mods.values()))) - - final = np.array([" "]) - final = np.append(final, list(avail_mods.keys())) - - for package in all_modules: - final = np.append(final, package) - - for target in avail_mods: - final = np.append(final, "X" if package in avail_mods[target] else " ") - - return final, len(avail_mods.keys()) + 1, len(all_modules) + 1 - - -def generate_module_table(data: dict, md_file: MdUtils) -> None: - """ - Generate the general table of the overview. - - @param data: Dict with all the data. Keys are the target names. - @param md_file: MdUtils object. - """ - print("Generating markdown table... ", end="", flush=True) - structured, col, row = generate_table_data(data) - md_file.new_table(columns=col, rows=row, text=list(structured), text_align='center') - print("Done!") - - -def generate_markdown_overview(modules: dict) -> None: - """ - Generate the general overview in a markdown file. - It generates a list of all the available software and indicates for which target it is available. - """ - md_fn = 'module_overview.md' - md_file = MdUtils(file_name=md_fn, title='Overview of available modules per target architecture in EESSI') - generate_module_table(modules, md_file) - md_file.create_md_file() - print(f"Module overview created at {md_fn}") - - -# -------------------------------------------------------------------------------------------------------- -# Generate JSON -# -------------------------------------------------------------------------------------------------------- -# ----------- -# OVERVIEW -# ----------- - -# FORMAT OVERVIEW JSON -# { -# "targets": [ -# "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", -# "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2" -# ], -# "modules": { -# "Markov": [1, 0], -# "cfd": [1, 1], -# "llm": [0, 1], -# "science": [1, 1] -# } -# } -def generate_json_overview_data(modules: dict) -> dict: - """ - Generate the data for the json overview in the above format. - - @param modules: Dictionary with all the modules per target. Keys are the target names. - @return: Dictionary with the required JSON structure. - - """ - json_data = { - "targets": list(modules.keys()), - "modules": {}, - "time_generated": time.strftime("%a, %d %b %Y at %H:%M:%S %Z") - } - avail_software = get_unique_software_names(modules) - all_software = get_unique_software_names(np.concatenate(list(modules.values()))) - - # creates a list of booleans for each software that indicates - # if the software is available for the corresponding target. - for soft in all_software: - available = [] - for target in json_data["targets"]: - available.append(int(soft in avail_software[target])) - json_data["modules"][soft] = available - return json_data - - -def generate_json_overview(modules: dict, path_data_dir: str) -> str: - """ - Generate the overview in a JSON format. - - @param modules: Dictionary with all the modules per target. Keys are the target names. - @param path_data_dir: Path to the directory where the JSON will be placed. - @return: Absolute path to the json file. - """ - - # get data - json_data = generate_json_overview_data(modules) - - filepath = os.path.join(path_data_dir, "json_data.json") - # write it to a file - with open(filepath, 'w') as outfile: - json.dump(json_data, outfile) - - return filepath - - -# ----------- -# DETAILED -# ----------- - -# FORMAT DETAILED JSON: -# -# { -# "targets": [ -# "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", -# "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2" -# ], -# "software": { -# "cfd": { -# "targets": [ -# "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", -# "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2" -# ], -# "versions": { -# "2.3.1": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic"], -# "2.3.2": [ -# "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", -# "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2" -# ] -# } -# } -# } -# } - -def generate_json_detailed_data(modules: dict) -> dict: - """ - Generate the data for the detailed JSON in the above format. - - @param modules: Dictionary with all the modules per target. Keys are the target names. - @return: Dictionary with the required JSON structure. - """ - json_data = { - "targets": list(modules.keys()), - "software": {}, - "time_generated": time.strftime("%a, %d %b %Y at %H:%M:%S %Z") - } - - # Loop over every module in every target - for target in modules: - for mod in modules[target]: - software, version = analyze_module(mod) - - # Exclude modules with no version - if version != "": - # If the software is not yet present, add it. - if software not in json_data["software"]: - json_data["software"][software] = { - "targets": [], - "versions": {} - } - - # If the version is not yet present, add it. - if mod not in json_data["software"][software]["versions"]: - json_data["software"][software]["versions"][mod] = {'targets': []} - - # If the target is not yet present, add it. - if target not in json_data["software"][software]["targets"]: - json_data["software"][software]["targets"].append(target) - - # If the target is not yet present, add it. - if target not in json_data["software"][software]["versions"][mod]["targets"]: - json_data["software"][software]["versions"][mod]["targets"].append(target) - - return json_data - - -def generate_json_detailed(json_data: dict, path_data_dir: str) -> str: - """ - Generate the detailed JSON. - - @param modules: Dictionary with all the modules per target. Keys are the target names. - @param path_data_dir: Path to the directory where the JSON will be placed. - @return: Absolute path to the json file. - """ - filepath = os.path.join(path_data_dir, "json_data_detail.json") - with open(filepath, 'w') as outfile: - json.dump(json_data, outfile) - - return filepath + for name in data["software"]: + generate_software_page(name, data["software"][name], dest_path) -if __name__ == '__main__': +if __name__ == "__main__": main() diff --git a/scripts/available_software/check_json_updates.py b/scripts/available_software/check_json_updates.py deleted file mode 100755 index 16cc1058e6..0000000000 --- a/scripts/available_software/check_json_updates.py +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2023-2023 Ghent University -# -# SPDX license identifier: GPL-3.0-or-later -# -""" -Python script to check for differences between provided JSON files -that contain data on available software. - -@author: Kenneth Hoste (Ghent University) -""" -import json -import sys - -if len(sys.argv) != 3: - sys.stderr.write(f"Usage: {sys.argv[0]} \n") - sys.exit(1) - -json1_path = sys.argv[1] -json2_path = sys.argv[2] - -with open(json1_path) as json1: - json1_data = json.load(json1) -with open(json2_path) as json2: - json2_data = json.load(json2) - -json1_data_filtered = {k: v for (k, v) in json1_data.items() if k != 'time_generated'} -json2_data_filtered = {k: v for (k, v) in json2_data.items() if k != 'time_generated'} - -if json1_data_filtered == json2_data_filtered: - print("no changes") -else: - print("differences found") diff --git a/scripts/available_software/requirements.txt b/scripts/available_software/requirements.txt index 389a40b377..44b9377a8a 100644 --- a/scripts/available_software/requirements.txt +++ b/scripts/available_software/requirements.txt @@ -1,4 +1,3 @@ +easybuild-framework mdutils -numpy -natsort pyyaml diff --git a/scripts/available_software/tests/data/bash_mock.sh b/scripts/available_software/tests/data/bash_mock.sh deleted file mode 100755 index 5f0e1090f1..0000000000 --- a/scripts/available_software/tests/data/bash_mock.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -# Return an error when a variable is not set. -set -u - - -# example: /bin/bash -c "echo hello" -bash="$0" -cflag="$1" -cmd="$2" - -# Emulate find command. -if echo "$cmd" | grep -q -E "find"; then - if echo "$cmd" | grep -q -E "amd,intel"; then - cat "${MOCK_FILE_AVAIL_TARGET_AMD_INTEL}" >&1 - else - cat "${MOCK_FILE_AVAIL_TARGET}" >&1 - fi -fi diff --git a/scripts/available_software/tests/data/data_avail_simple_generic.txt b/scripts/available_software/tests/data/data_avail_simple_generic.txt deleted file mode 100644 index de988a5679..0000000000 --- a/scripts/available_software/tests/data/data_avail_simple_generic.txt +++ /dev/null @@ -1,14 +0,0 @@ -/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/generic/modules/all: -cfd/1.0 -cfd/2.0 -cfd/24 -cfd/5.0 -cfd/2.0afqsdf -Markov/hidden-1.0.5 -Markov/hidden-1.0.10 -Markov/ -science/ -science/5.3.0 -science/5.3.0 -science/5.3.0 -science/7.2.0 diff --git a/scripts/available_software/tests/data/data_avail_simple_zen2.txt b/scripts/available_software/tests/data/data_avail_simple_zen2.txt deleted file mode 100644 index 482528b56d..0000000000 --- a/scripts/available_software/tests/data/data_avail_simple_zen2.txt +++ /dev/null @@ -1,16 +0,0 @@ -/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2/modules/all: -cfd/1.0 -cfd/2.0 -cfd/3.0 -cfd/24 -cfd/ -cfd/5.0 -cfd/2.0afqsdf -llm/20230627 -llm/20230627 -llm/20230627 -science/ -science/5.3.0 -science/5.3.0 -science/5.3.0 -science/7.2.0 diff --git a/scripts/available_software/tests/data/data_avail_target_amd_intel.txt b/scripts/available_software/tests/data/data_avail_target_amd_intel.txt deleted file mode 100644 index adf051fdf0..0000000000 --- a/scripts/available_software/tests/data/data_avail_target_amd_intel.txt +++ /dev/null @@ -1 +0,0 @@ -/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2 diff --git a/scripts/available_software/tests/data/data_avail_target_simple.txt b/scripts/available_software/tests/data/data_avail_target_simple.txt deleted file mode 100644 index e622f8c27e..0000000000 --- a/scripts/available_software/tests/data/data_avail_target_simple.txt +++ /dev/null @@ -1 +0,0 @@ -/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic diff --git a/scripts/available_software/tests/data/data_show_science.txt b/scripts/available_software/tests/data/data_show_science.txt deleted file mode 100644 index e009c98580..0000000000 --- a/scripts/available_software/tests/data/data_show_science.txt +++ /dev/null @@ -1,34 +0,0 @@ -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- - /apps/gent/RHEL8/zen2-ib/modules/all/SciPy-bundle/2022.05-foss-2022a.lua: -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -help([[ -Description -=========== -Bundle for scientific software - - -More information -================ - - Homepage: https://science.com/ - - -Included extensions -=================== -beniget-0.4.1, Bottleneck-1.3.4 -]]) -whatis("Description: Bundle for scientific software") -whatis("Homepage: https://science.com/") -whatis("URL: https://science.com/") -whatis("Extensions: ext-1.2.3, ext-2.3.4") -conflict("SciPy-bundle") -prepend_path("CMAKE_PREFIX_PATH","/apps/gent/RHEL8/zen2-ib/software/SciPy-bundle/2022.05-foss-2022a") -prepend_path("LIBRARY_PATH","/apps/gent/RHEL8/zen2-ib/software/SciPy-bundle/2022.05-foss-2022a/lib") -prepend_path("PATH","/apps/gent/RHEL8/zen2-ib/software/SciPy-bundle/2022.05-foss-2022a/bin") -setenv("EBROOTSCIPYMINBUNDLE","/apps/gent/RHEL8/zen2-ib/software/SciPy-bundle/2022.05-foss-2022a") -setenv("EBVERSIONSCIPYMINBUNDLE","2022.05") -setenv("EBDEVELSCIPYMINBUNDLE","/apps/gent/RHEL8/zen2-ib/software/SciPy-bundle/2022.05-foss-2022a/easybuild/SciPy-bundle-2022.05-foss-2022a-easybuild-devel") -prepend_path("PYTHONPATH","/apps/gent/RHEL8/zen2-ib/software/SciPy-bundle/2022.05-foss-2022a/lib/python3.10/site-packages") -prepend_path("CPATH","/apps/gent/RHEL8/zen2-ib/software/SciPy-bundle/2022.05-foss-2022a/lib/python3.10/site-packages/numpy/core/include") -prepend_path("LD_LIBRARY_PATH","/apps/gent/RHEL8/zen2-ib/software/SciPy-bundle/2022.05-foss-2022a/lib/python3.10/site-packages/numpy/core/lib") -prepend_path("LIBRARY_PATH","/apps/gent/RHEL8/zen2-ib/software/SciPy-bundle/2022.05-foss-2022a/lib/python3.10/site-packages/numpy/core/lib") -setenv("EBEXTSLISTSCIPYMINBUNDLE","numpy-1.22.3,ply-3.11,gast-0.5.3,beniget-0.4.1,pythran-0.11.0,scipy-1.8.1,mpi4py-3.1.3,numexpr-2.8.1,Bottleneck-1.3.4,pandas-1.4.2,mpmath-1.2.1,deap-1.3.1") diff --git a/scripts/available_software/tests/data/data_swap_generic.txt b/scripts/available_software/tests/data/data_swap_generic.txt deleted file mode 100644 index 6fc8f8348a..0000000000 --- a/scripts/available_software/tests/data/data_swap_generic.txt +++ /dev/null @@ -1 +0,0 @@ -os.environ["MOCK_FILE_AVAIL"] = os.getenv('TESTS_PATH') + "/data/data_avail_simple_generic.txt" diff --git a/scripts/available_software/tests/data/data_swap_zen2.txt b/scripts/available_software/tests/data/data_swap_zen2.txt deleted file mode 100644 index 99f9e4ef6f..0000000000 --- a/scripts/available_software/tests/data/data_swap_zen2.txt +++ /dev/null @@ -1 +0,0 @@ -os.environ["MOCK_FILE_AVAIL"] = os.getenv('TESTS_PATH') + "/data/data_avail_simple_zen2.txt" diff --git a/scripts/available_software/tests/data/eessi_api_metadata_software.json b/scripts/available_software/tests/data/eessi_api_metadata_software.json new file mode 100644 index 0000000000..6864a24939 --- /dev/null +++ b/scripts/available_software/tests/data/eessi_api_metadata_software.json @@ -0,0 +1,3082 @@ +{ + "timestamp": "2026-03-18T02:15:12.970204Z", + "architectures_map": { + "2023.06": { + "aarch64/generic": "aarch64/generic", + "aarch64/a64fx": "aarch64/a64fx", + "aarch64/neoverse_n1": "aarch64/neoverse_n1", + "aarch64/neoverse_v1": "aarch64/neoverse_v1", + "aarch64/nvidia/grace": "aarch64/nvidia/grace", + "x86_64/generic": "x86_64/generic", + "x86_64/amd/zen2": "x86_64/amd/zen2", + "x86_64/amd/zen3": "x86_64/amd/zen3", + "x86_64/amd/zen4": "x86_64/amd/zen4", + "x86_64/intel/haswell": "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512": "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids": "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake": "x86_64/intel/icelake", + "x86_64/intel/cascadelake": "x86_64/intel/cascadelake" + }, + "2025.06": { + "aarch64/generic": "aarch64/generic", + "aarch64/a64fx": "aarch64/a64fx", + "aarch64/neoverse_n1": "aarch64/neoverse_n1", + "aarch64/neoverse_v1": "aarch64/neoverse_v1", + "aarch64/nvidia/grace": "aarch64/nvidia/grace", + "x86_64/generic": "x86_64/generic", + "x86_64/amd/zen2": "x86_64/amd/zen2", + "x86_64/amd/zen3": "x86_64/amd/zen3", + "x86_64/amd/zen4": "x86_64/amd/zen4", + "x86_64/intel/haswell": "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512": "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids": "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake": "x86_64/intel/icelake", + "x86_64/intel/cascadelake": "x86_64/intel/cascadelake" + } + }, + "gpu_architectures_map": {}, + "category_details": {}, + "software": { + "CUDA-Samples": { + "versions": [ + { + "homepage": "https://github.com/NVIDIA/cuda-samples", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCC", + "version": "12.3.0" + }, + "toolchain_families_compatibility": [ + "2023a_foss" + ], + "module": { + "full_module_name": "CUDA-Samples/12.1-GCC-12.3.0-CUDA-12.1.1", + "module_name": "CUDA-Samples", + "module_version": "12.1-GCC-12.3.0-CUDA-12.1.1" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/12.3.0", + "module_name": "GCCcore", + "module_version": "12.3.0" + }, + { + "full_module_name": "GCC/12.3.0", + "module_name": "GCC", + "module_version": "12.3.0" + }, + { + "full_module_name": "CUDA-Samples/12.1-GCC-12.3.0-CUDA-12.1.1", + "module_name": "CUDA-Samples", + "module_version": "12.1-GCC-12.3.0-CUDA-12.1.1" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": { + "aarch64/generic": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "aarch64/neoverse_n1": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "aarch64/neoverse_v1": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "aarch64/nvidia/grace": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/generic": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/amd/zen2": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/amd/zen3": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/amd/zen4": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/intel/haswell": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/intel/skylake_avx512": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/intel/sapphirerapids": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/intel/icelake": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/intel/cascadelake": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ] + }, + "description": "Samples for CUDA Developers which demonstrates features in CUDA Toolkit", + "version": "12.1", + "versionsuffix": "-CUDA-12.1.1", + "extensions": [] + } + ], + "homepage": "https://github.com/NVIDIA/cuda-samples", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "description": "Samples for CUDA Developers which demonstrates features in CUDA Toolkit" + }, + "ESPResSo": { + "versions": [ + { + "homepage": "https://espressomd.org/wordpress", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "foss", + "version": "2023a" + }, + "toolchain_families_compatibility": [ + "2023a_foss" + ], + "module": { + "full_module_name": "ESPResSo/4.2.2-foss-2023a-CUDA-12.1.1", + "module_name": "ESPResSo", + "module_version": "4.2.2-foss-2023a-CUDA-12.1.1" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/12.3.0", + "module_name": "GCCcore", + "module_version": "12.3.0" + }, + { + "full_module_name": "GCC/12.3.0", + "module_name": "GCC", + "module_version": "12.3.0" + }, + { + "full_module_name": "numactl/2.0.16-GCCcore-12.3.0", + "module_name": "numactl", + "module_version": "2.0.16-GCCcore-12.3.0" + }, + { + "full_module_name": "libxml2/2.11.4-GCCcore-12.3.0", + "module_name": "libxml2", + "module_version": "2.11.4-GCCcore-12.3.0" + }, + { + "full_module_name": "libpciaccess/0.17-GCCcore-12.3.0", + "module_name": "libpciaccess", + "module_version": "0.17-GCCcore-12.3.0" + }, + { + "full_module_name": "hwloc/2.9.1-GCCcore-12.3.0", + "module_name": "hwloc", + "module_version": "2.9.1-GCCcore-12.3.0" + }, + { + "full_module_name": "OpenSSL/1.1", + "module_name": "OpenSSL", + "module_version": "1.1" + }, + { + "full_module_name": "libevent/2.1.12-GCCcore-12.3.0", + "module_name": "libevent", + "module_version": "2.1.12-GCCcore-12.3.0" + }, + { + "full_module_name": "UCX/1.14.1-GCCcore-12.3.0", + "module_name": "UCX", + "module_version": "1.14.1-GCCcore-12.3.0" + }, + { + "full_module_name": "libfabric/1.18.0-GCCcore-12.3.0", + "module_name": "libfabric", + "module_version": "1.18.0-GCCcore-12.3.0" + }, + { + "full_module_name": "PMIx/4.2.4-GCCcore-12.3.0", + "module_name": "PMIx", + "module_version": "4.2.4-GCCcore-12.3.0" + }, + { + "full_module_name": "UCC/1.2.0-GCCcore-12.3.0", + "module_name": "UCC", + "module_version": "1.2.0-GCCcore-12.3.0" + }, + { + "full_module_name": "OpenMPI/4.1.5-GCC-12.3.0", + "module_name": "OpenMPI", + "module_version": "4.1.5-GCC-12.3.0" + }, + { + "full_module_name": "OpenBLAS/0.3.23-GCC-12.3.0", + "module_name": "OpenBLAS", + "module_version": "0.3.23-GCC-12.3.0" + }, + { + "full_module_name": "FlexiBLAS/3.3.1-GCC-12.3.0", + "module_name": "FlexiBLAS", + "module_version": "3.3.1-GCC-12.3.0" + }, + { + "full_module_name": "FFTW/3.3.10-GCC-12.3.0", + "module_name": "FFTW", + "module_version": "3.3.10-GCC-12.3.0" + }, + { + "full_module_name": "gompi/2023a", + "module_name": "gompi", + "module_version": "2023a" + }, + { + "full_module_name": "FFTW.MPI/3.3.10-gompi-2023a", + "module_name": "FFTW.MPI", + "module_version": "3.3.10-gompi-2023a" + }, + { + "full_module_name": "ScaLAPACK/2.2.0-gompi-2023a-fb", + "module_name": "ScaLAPACK", + "module_version": "2.2.0-gompi-2023a-fb" + }, + { + "full_module_name": "foss/2023a", + "module_name": "foss", + "module_version": "2023a" + }, + { + "full_module_name": "Tcl/8.6.13-GCCcore-12.3.0", + "module_name": "Tcl", + "module_version": "8.6.13-GCCcore-12.3.0" + }, + { + "full_module_name": "SQLite/3.42.0-GCCcore-12.3.0", + "module_name": "SQLite", + "module_version": "3.42.0-GCCcore-12.3.0" + }, + { + "full_module_name": "libffi/3.4.4-GCCcore-12.3.0", + "module_name": "libffi", + "module_version": "3.4.4-GCCcore-12.3.0" + }, + { + "full_module_name": "Python/3.11.3-GCCcore-12.3.0", + "module_name": "Python", + "module_version": "3.11.3-GCCcore-12.3.0" + }, + { + "full_module_name": "gfbf/2023a", + "module_name": "gfbf", + "module_version": "2023a" + }, + { + "full_module_name": "cffi/1.15.1-GCCcore-12.3.0", + "module_name": "cffi", + "module_version": "1.15.1-GCCcore-12.3.0" + }, + { + "full_module_name": "cryptography/41.0.1-GCCcore-12.3.0", + "module_name": "cryptography", + "module_version": "41.0.1-GCCcore-12.3.0" + }, + { + "full_module_name": "virtualenv/20.23.1-GCCcore-12.3.0", + "module_name": "virtualenv", + "module_version": "20.23.1-GCCcore-12.3.0" + }, + { + "full_module_name": "Python-bundle-PyPI/2023.06-GCCcore-12.3.0", + "module_name": "Python-bundle-PyPI", + "module_version": "2023.06-GCCcore-12.3.0" + }, + { + "full_module_name": "pybind11/2.11.1-GCCcore-12.3.0", + "module_name": "pybind11", + "module_version": "2.11.1-GCCcore-12.3.0" + }, + { + "full_module_name": "SciPy-bundle/2023.07-gfbf-2023a", + "module_name": "SciPy-bundle", + "module_version": "2023.07-gfbf-2023a" + }, + { + "full_module_name": "gzip/1.12-GCCcore-12.3.0", + "module_name": "gzip", + "module_version": "1.12-GCCcore-12.3.0" + }, + { + "full_module_name": "lz4/1.9.4-GCCcore-12.3.0", + "module_name": "lz4", + "module_version": "1.9.4-GCCcore-12.3.0" + }, + { + "full_module_name": "zstd/1.5.5-GCCcore-12.3.0", + "module_name": "zstd", + "module_version": "1.5.5-GCCcore-12.3.0" + }, + { + "full_module_name": "ICU/73.2-GCCcore-12.3.0", + "module_name": "ICU", + "module_version": "73.2-GCCcore-12.3.0" + }, + { + "full_module_name": "Boost.MPI/1.82.0-gompi-2023a", + "module_name": "Boost.MPI", + "module_version": "1.82.0-gompi-2023a" + }, + { + "full_module_name": "Szip/2.1.1-GCCcore-12.3.0", + "module_name": "Szip", + "module_version": "2.1.1-GCCcore-12.3.0" + }, + { + "full_module_name": "HDF5/1.14.0-gompi-2023a", + "module_name": "HDF5", + "module_version": "1.14.0-gompi-2023a" + }, + { + "full_module_name": "expat/2.5.0-GCCcore-12.3.0", + "module_name": "expat", + "module_version": "2.5.0-GCCcore-12.3.0" + }, + { + "full_module_name": "libpng/1.6.39-GCCcore-12.3.0", + "module_name": "libpng", + "module_version": "1.6.39-GCCcore-12.3.0" + }, + { + "full_module_name": "Brotli/1.0.9-GCCcore-12.3.0", + "module_name": "Brotli", + "module_version": "1.0.9-GCCcore-12.3.0" + }, + { + "full_module_name": "freetype/2.13.0-GCCcore-12.3.0", + "module_name": "freetype", + "module_version": "2.13.0-GCCcore-12.3.0" + }, + { + "full_module_name": "fontconfig/2.14.2-GCCcore-12.3.0", + "module_name": "fontconfig", + "module_version": "2.14.2-GCCcore-12.3.0" + }, + { + "full_module_name": "xorg-macros/1.20.0-GCCcore-12.3.0", + "module_name": "xorg-macros", + "module_version": "1.20.0-GCCcore-12.3.0" + }, + { + "full_module_name": "X11/20230603-GCCcore-12.3.0", + "module_name": "X11", + "module_version": "20230603-GCCcore-12.3.0" + }, + { + "full_module_name": "libdrm/2.4.115-GCCcore-12.3.0", + "module_name": "libdrm", + "module_version": "2.4.115-GCCcore-12.3.0" + }, + { + "full_module_name": "libglvnd/1.6.0-GCCcore-12.3.0", + "module_name": "libglvnd", + "module_version": "1.6.0-GCCcore-12.3.0" + }, + { + "full_module_name": "libunwind/1.6.2-GCCcore-12.3.0", + "module_name": "libunwind", + "module_version": "1.6.2-GCCcore-12.3.0" + }, + { + "full_module_name": "LLVM/16.0.6-GCCcore-12.3.0", + "module_name": "LLVM", + "module_version": "16.0.6-GCCcore-12.3.0" + }, + { + "full_module_name": "Mesa/23.1.4-GCCcore-12.3.0", + "module_name": "Mesa", + "module_version": "23.1.4-GCCcore-12.3.0" + }, + { + "full_module_name": "GSL/2.7-GCC-12.3.0", + "module_name": "GSL", + "module_version": "2.7-GCC-12.3.0" + }, + { + "full_module_name": "OpenPGM/5.2.122-GCCcore-12.3.0", + "module_name": "OpenPGM", + "module_version": "5.2.122-GCCcore-12.3.0" + }, + { + "full_module_name": "libsodium/1.0.18-GCCcore-12.3.0", + "module_name": "libsodium", + "module_version": "1.0.18-GCCcore-12.3.0" + }, + { + "full_module_name": "ZeroMQ/4.3.4-GCCcore-12.3.0", + "module_name": "ZeroMQ", + "module_version": "4.3.4-GCCcore-12.3.0" + }, + { + "full_module_name": "libxslt/1.1.38-GCCcore-12.3.0", + "module_name": "libxslt", + "module_version": "1.1.38-GCCcore-12.3.0" + }, + { + "full_module_name": "lxml/4.9.2-GCCcore-12.3.0", + "module_name": "lxml", + "module_version": "4.9.2-GCCcore-12.3.0" + }, + { + "full_module_name": "hatchling/1.18.0-GCCcore-12.3.0", + "module_name": "hatchling", + "module_version": "1.18.0-GCCcore-12.3.0" + }, + { + "full_module_name": "BeautifulSoup/4.12.2-GCCcore-12.3.0", + "module_name": "BeautifulSoup", + "module_version": "4.12.2-GCCcore-12.3.0" + }, + { + "full_module_name": "IPython/8.14.0-GCCcore-12.3.0", + "module_name": "IPython", + "module_version": "8.14.0-GCCcore-12.3.0" + }, + { + "full_module_name": "typing-extensions/4.9.0-GCCcore-12.3.0", + "module_name": "typing-extensions", + "module_version": "4.9.0-GCCcore-12.3.0" + }, + { + "full_module_name": "Pint/0.23-GCCcore-12.3.0", + "module_name": "Pint", + "module_version": "0.23-GCCcore-12.3.0" + }, + { + "full_module_name": "ESPResSo/4.2.2-foss-2023a-CUDA-12.1.1", + "module_name": "ESPResSo", + "module_version": "4.2.2-foss-2023a-CUDA-12.1.1" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": { + "aarch64/generic": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "aarch64/neoverse_n1": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "aarch64/neoverse_v1": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "aarch64/nvidia/grace": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/generic": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/amd/zen2": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/amd/zen3": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/amd/zen4": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/intel/haswell": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/intel/skylake_avx512": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/intel/sapphirerapids": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/intel/icelake": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ], + "x86_64/intel/cascadelake": [ + "nvidia/cc70", + "nvidia/cc80", + "nvidia/cc90" + ] + }, + "description": "A software package for performing and analyzing scientific Molecular Dynamics simulations.", + "version": "4.2.2", + "versionsuffix": "-CUDA-12.1.1", + "extensions": [] + }, + { + "homepage": "https://espressomd.org/wordpress", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "foss", + "version": "2023a" + }, + "toolchain_families_compatibility": [ + "2023a_foss" + ], + "module": { + "full_module_name": "ESPResSo/4.2.1-foss-2023a", + "module_name": "ESPResSo", + "module_version": "4.2.1-foss-2023a" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/12.3.0", + "module_name": "GCCcore", + "module_version": "12.3.0" + }, + { + "full_module_name": "GCC/12.3.0", + "module_name": "GCC", + "module_version": "12.3.0" + }, + { + "full_module_name": "numactl/2.0.16-GCCcore-12.3.0", + "module_name": "numactl", + "module_version": "2.0.16-GCCcore-12.3.0" + }, + { + "full_module_name": "libxml2/2.11.4-GCCcore-12.3.0", + "module_name": "libxml2", + "module_version": "2.11.4-GCCcore-12.3.0" + }, + { + "full_module_name": "libpciaccess/0.17-GCCcore-12.3.0", + "module_name": "libpciaccess", + "module_version": "0.17-GCCcore-12.3.0" + }, + { + "full_module_name": "hwloc/2.9.1-GCCcore-12.3.0", + "module_name": "hwloc", + "module_version": "2.9.1-GCCcore-12.3.0" + }, + { + "full_module_name": "OpenSSL/1.1", + "module_name": "OpenSSL", + "module_version": "1.1" + }, + { + "full_module_name": "libevent/2.1.12-GCCcore-12.3.0", + "module_name": "libevent", + "module_version": "2.1.12-GCCcore-12.3.0" + }, + { + "full_module_name": "UCX/1.14.1-GCCcore-12.3.0", + "module_name": "UCX", + "module_version": "1.14.1-GCCcore-12.3.0" + }, + { + "full_module_name": "libfabric/1.18.0-GCCcore-12.3.0", + "module_name": "libfabric", + "module_version": "1.18.0-GCCcore-12.3.0" + }, + { + "full_module_name": "PMIx/4.2.4-GCCcore-12.3.0", + "module_name": "PMIx", + "module_version": "4.2.4-GCCcore-12.3.0" + }, + { + "full_module_name": "UCC/1.2.0-GCCcore-12.3.0", + "module_name": "UCC", + "module_version": "1.2.0-GCCcore-12.3.0" + }, + { + "full_module_name": "OpenMPI/4.1.5-GCC-12.3.0", + "module_name": "OpenMPI", + "module_version": "4.1.5-GCC-12.3.0" + }, + { + "full_module_name": "OpenBLAS/0.3.23-GCC-12.3.0", + "module_name": "OpenBLAS", + "module_version": "0.3.23-GCC-12.3.0" + }, + { + "full_module_name": "FlexiBLAS/3.3.1-GCC-12.3.0", + "module_name": "FlexiBLAS", + "module_version": "3.3.1-GCC-12.3.0" + }, + { + "full_module_name": "FFTW/3.3.10-GCC-12.3.0", + "module_name": "FFTW", + "module_version": "3.3.10-GCC-12.3.0" + }, + { + "full_module_name": "gompi/2023a", + "module_name": "gompi", + "module_version": "2023a" + }, + { + "full_module_name": "FFTW.MPI/3.3.10-gompi-2023a", + "module_name": "FFTW.MPI", + "module_version": "3.3.10-gompi-2023a" + }, + { + "full_module_name": "ScaLAPACK/2.2.0-gompi-2023a-fb", + "module_name": "ScaLAPACK", + "module_version": "2.2.0-gompi-2023a-fb" + }, + { + "full_module_name": "foss/2023a", + "module_name": "foss", + "module_version": "2023a" + }, + { + "full_module_name": "Tcl/8.6.13-GCCcore-12.3.0", + "module_name": "Tcl", + "module_version": "8.6.13-GCCcore-12.3.0" + }, + { + "full_module_name": "SQLite/3.42.0-GCCcore-12.3.0", + "module_name": "SQLite", + "module_version": "3.42.0-GCCcore-12.3.0" + }, + { + "full_module_name": "libffi/3.4.4-GCCcore-12.3.0", + "module_name": "libffi", + "module_version": "3.4.4-GCCcore-12.3.0" + }, + { + "full_module_name": "Python/3.11.3-GCCcore-12.3.0", + "module_name": "Python", + "module_version": "3.11.3-GCCcore-12.3.0" + }, + { + "full_module_name": "gfbf/2023a", + "module_name": "gfbf", + "module_version": "2023a" + }, + { + "full_module_name": "cffi/1.15.1-GCCcore-12.3.0", + "module_name": "cffi", + "module_version": "1.15.1-GCCcore-12.3.0" + }, + { + "full_module_name": "cryptography/41.0.1-GCCcore-12.3.0", + "module_name": "cryptography", + "module_version": "41.0.1-GCCcore-12.3.0" + }, + { + "full_module_name": "virtualenv/20.23.1-GCCcore-12.3.0", + "module_name": "virtualenv", + "module_version": "20.23.1-GCCcore-12.3.0" + }, + { + "full_module_name": "Python-bundle-PyPI/2023.06-GCCcore-12.3.0", + "module_name": "Python-bundle-PyPI", + "module_version": "2023.06-GCCcore-12.3.0" + }, + { + "full_module_name": "pybind11/2.11.1-GCCcore-12.3.0", + "module_name": "pybind11", + "module_version": "2.11.1-GCCcore-12.3.0" + }, + { + "full_module_name": "SciPy-bundle/2023.07-gfbf-2023a", + "module_name": "SciPy-bundle", + "module_version": "2023.07-gfbf-2023a" + }, + { + "full_module_name": "gzip/1.12-GCCcore-12.3.0", + "module_name": "gzip", + "module_version": "1.12-GCCcore-12.3.0" + }, + { + "full_module_name": "lz4/1.9.4-GCCcore-12.3.0", + "module_name": "lz4", + "module_version": "1.9.4-GCCcore-12.3.0" + }, + { + "full_module_name": "zstd/1.5.5-GCCcore-12.3.0", + "module_name": "zstd", + "module_version": "1.5.5-GCCcore-12.3.0" + }, + { + "full_module_name": "ICU/73.2-GCCcore-12.3.0", + "module_name": "ICU", + "module_version": "73.2-GCCcore-12.3.0" + }, + { + "full_module_name": "Boost.MPI/1.82.0-gompi-2023a", + "module_name": "Boost.MPI", + "module_version": "1.82.0-gompi-2023a" + }, + { + "full_module_name": "Szip/2.1.1-GCCcore-12.3.0", + "module_name": "Szip", + "module_version": "2.1.1-GCCcore-12.3.0" + }, + { + "full_module_name": "HDF5/1.14.0-gompi-2023a", + "module_name": "HDF5", + "module_version": "1.14.0-gompi-2023a" + }, + { + "full_module_name": "expat/2.5.0-GCCcore-12.3.0", + "module_name": "expat", + "module_version": "2.5.0-GCCcore-12.3.0" + }, + { + "full_module_name": "libpng/1.6.39-GCCcore-12.3.0", + "module_name": "libpng", + "module_version": "1.6.39-GCCcore-12.3.0" + }, + { + "full_module_name": "Brotli/1.0.9-GCCcore-12.3.0", + "module_name": "Brotli", + "module_version": "1.0.9-GCCcore-12.3.0" + }, + { + "full_module_name": "freetype/2.13.0-GCCcore-12.3.0", + "module_name": "freetype", + "module_version": "2.13.0-GCCcore-12.3.0" + }, + { + "full_module_name": "fontconfig/2.14.2-GCCcore-12.3.0", + "module_name": "fontconfig", + "module_version": "2.14.2-GCCcore-12.3.0" + }, + { + "full_module_name": "xorg-macros/1.20.0-GCCcore-12.3.0", + "module_name": "xorg-macros", + "module_version": "1.20.0-GCCcore-12.3.0" + }, + { + "full_module_name": "X11/20230603-GCCcore-12.3.0", + "module_name": "X11", + "module_version": "20230603-GCCcore-12.3.0" + }, + { + "full_module_name": "libdrm/2.4.115-GCCcore-12.3.0", + "module_name": "libdrm", + "module_version": "2.4.115-GCCcore-12.3.0" + }, + { + "full_module_name": "libglvnd/1.6.0-GCCcore-12.3.0", + "module_name": "libglvnd", + "module_version": "1.6.0-GCCcore-12.3.0" + }, + { + "full_module_name": "libunwind/1.6.2-GCCcore-12.3.0", + "module_name": "libunwind", + "module_version": "1.6.2-GCCcore-12.3.0" + }, + { + "full_module_name": "LLVM/16.0.6-GCCcore-12.3.0", + "module_name": "LLVM", + "module_version": "16.0.6-GCCcore-12.3.0" + }, + { + "full_module_name": "Mesa/23.1.4-GCCcore-12.3.0", + "module_name": "Mesa", + "module_version": "23.1.4-GCCcore-12.3.0" + }, + { + "full_module_name": "GSL/2.7-GCC-12.3.0", + "module_name": "GSL", + "module_version": "2.7-GCC-12.3.0" + }, + { + "full_module_name": "OpenPGM/5.2.122-GCCcore-12.3.0", + "module_name": "OpenPGM", + "module_version": "5.2.122-GCCcore-12.3.0" + }, + { + "full_module_name": "libsodium/1.0.18-GCCcore-12.3.0", + "module_name": "libsodium", + "module_version": "1.0.18-GCCcore-12.3.0" + }, + { + "full_module_name": "ZeroMQ/4.3.4-GCCcore-12.3.0", + "module_name": "ZeroMQ", + "module_version": "4.3.4-GCCcore-12.3.0" + }, + { + "full_module_name": "libxslt/1.1.38-GCCcore-12.3.0", + "module_name": "libxslt", + "module_version": "1.1.38-GCCcore-12.3.0" + }, + { + "full_module_name": "lxml/4.9.2-GCCcore-12.3.0", + "module_name": "lxml", + "module_version": "4.9.2-GCCcore-12.3.0" + }, + { + "full_module_name": "hatchling/1.18.0-GCCcore-12.3.0", + "module_name": "hatchling", + "module_version": "1.18.0-GCCcore-12.3.0" + }, + { + "full_module_name": "BeautifulSoup/4.12.2-GCCcore-12.3.0", + "module_name": "BeautifulSoup", + "module_version": "4.12.2-GCCcore-12.3.0" + }, + { + "full_module_name": "IPython/8.14.0-GCCcore-12.3.0", + "module_name": "IPython", + "module_version": "8.14.0-GCCcore-12.3.0" + }, + { + "full_module_name": "typing-extensions/4.9.0-GCCcore-12.3.0", + "module_name": "typing-extensions", + "module_version": "4.9.0-GCCcore-12.3.0" + }, + { + "full_module_name": "Pint/0.23-GCCcore-12.3.0", + "module_name": "Pint", + "module_version": "0.23-GCCcore-12.3.0" + }, + { + "full_module_name": "ESPResSo/4.2.1-foss-2023a", + "module_name": "ESPResSo", + "module_version": "4.2.1-foss-2023a" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "A software package for performing and analyzing scientific Molecular Dynamics simulations.", + "version": "4.2.1", + "versionsuffix": "", + "extensions": [] + }, + { + "homepage": "https://espressomd.org/wordpress", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "foss", + "version": "2023a" + }, + "toolchain_families_compatibility": [ + "2023a_foss" + ], + "module": { + "full_module_name": "ESPResSo/4.2.2-foss-2023a", + "module_name": "ESPResSo", + "module_version": "4.2.2-foss-2023a" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/12.3.0", + "module_name": "GCCcore", + "module_version": "12.3.0" + }, + { + "full_module_name": "GCC/12.3.0", + "module_name": "GCC", + "module_version": "12.3.0" + }, + { + "full_module_name": "numactl/2.0.16-GCCcore-12.3.0", + "module_name": "numactl", + "module_version": "2.0.16-GCCcore-12.3.0" + }, + { + "full_module_name": "libxml2/2.11.4-GCCcore-12.3.0", + "module_name": "libxml2", + "module_version": "2.11.4-GCCcore-12.3.0" + }, + { + "full_module_name": "libpciaccess/0.17-GCCcore-12.3.0", + "module_name": "libpciaccess", + "module_version": "0.17-GCCcore-12.3.0" + }, + { + "full_module_name": "hwloc/2.9.1-GCCcore-12.3.0", + "module_name": "hwloc", + "module_version": "2.9.1-GCCcore-12.3.0" + }, + { + "full_module_name": "OpenSSL/1.1", + "module_name": "OpenSSL", + "module_version": "1.1" + }, + { + "full_module_name": "libevent/2.1.12-GCCcore-12.3.0", + "module_name": "libevent", + "module_version": "2.1.12-GCCcore-12.3.0" + }, + { + "full_module_name": "UCX/1.14.1-GCCcore-12.3.0", + "module_name": "UCX", + "module_version": "1.14.1-GCCcore-12.3.0" + }, + { + "full_module_name": "libfabric/1.18.0-GCCcore-12.3.0", + "module_name": "libfabric", + "module_version": "1.18.0-GCCcore-12.3.0" + }, + { + "full_module_name": "PMIx/4.2.4-GCCcore-12.3.0", + "module_name": "PMIx", + "module_version": "4.2.4-GCCcore-12.3.0" + }, + { + "full_module_name": "UCC/1.2.0-GCCcore-12.3.0", + "module_name": "UCC", + "module_version": "1.2.0-GCCcore-12.3.0" + }, + { + "full_module_name": "OpenMPI/4.1.5-GCC-12.3.0", + "module_name": "OpenMPI", + "module_version": "4.1.5-GCC-12.3.0" + }, + { + "full_module_name": "OpenBLAS/0.3.23-GCC-12.3.0", + "module_name": "OpenBLAS", + "module_version": "0.3.23-GCC-12.3.0" + }, + { + "full_module_name": "FlexiBLAS/3.3.1-GCC-12.3.0", + "module_name": "FlexiBLAS", + "module_version": "3.3.1-GCC-12.3.0" + }, + { + "full_module_name": "FFTW/3.3.10-GCC-12.3.0", + "module_name": "FFTW", + "module_version": "3.3.10-GCC-12.3.0" + }, + { + "full_module_name": "gompi/2023a", + "module_name": "gompi", + "module_version": "2023a" + }, + { + "full_module_name": "FFTW.MPI/3.3.10-gompi-2023a", + "module_name": "FFTW.MPI", + "module_version": "3.3.10-gompi-2023a" + }, + { + "full_module_name": "ScaLAPACK/2.2.0-gompi-2023a-fb", + "module_name": "ScaLAPACK", + "module_version": "2.2.0-gompi-2023a-fb" + }, + { + "full_module_name": "foss/2023a", + "module_name": "foss", + "module_version": "2023a" + }, + { + "full_module_name": "Tcl/8.6.13-GCCcore-12.3.0", + "module_name": "Tcl", + "module_version": "8.6.13-GCCcore-12.3.0" + }, + { + "full_module_name": "SQLite/3.42.0-GCCcore-12.3.0", + "module_name": "SQLite", + "module_version": "3.42.0-GCCcore-12.3.0" + }, + { + "full_module_name": "libffi/3.4.4-GCCcore-12.3.0", + "module_name": "libffi", + "module_version": "3.4.4-GCCcore-12.3.0" + }, + { + "full_module_name": "Python/3.11.3-GCCcore-12.3.0", + "module_name": "Python", + "module_version": "3.11.3-GCCcore-12.3.0" + }, + { + "full_module_name": "gfbf/2023a", + "module_name": "gfbf", + "module_version": "2023a" + }, + { + "full_module_name": "cffi/1.15.1-GCCcore-12.3.0", + "module_name": "cffi", + "module_version": "1.15.1-GCCcore-12.3.0" + }, + { + "full_module_name": "cryptography/41.0.1-GCCcore-12.3.0", + "module_name": "cryptography", + "module_version": "41.0.1-GCCcore-12.3.0" + }, + { + "full_module_name": "virtualenv/20.23.1-GCCcore-12.3.0", + "module_name": "virtualenv", + "module_version": "20.23.1-GCCcore-12.3.0" + }, + { + "full_module_name": "Python-bundle-PyPI/2023.06-GCCcore-12.3.0", + "module_name": "Python-bundle-PyPI", + "module_version": "2023.06-GCCcore-12.3.0" + }, + { + "full_module_name": "pybind11/2.11.1-GCCcore-12.3.0", + "module_name": "pybind11", + "module_version": "2.11.1-GCCcore-12.3.0" + }, + { + "full_module_name": "SciPy-bundle/2023.07-gfbf-2023a", + "module_name": "SciPy-bundle", + "module_version": "2023.07-gfbf-2023a" + }, + { + "full_module_name": "gzip/1.12-GCCcore-12.3.0", + "module_name": "gzip", + "module_version": "1.12-GCCcore-12.3.0" + }, + { + "full_module_name": "lz4/1.9.4-GCCcore-12.3.0", + "module_name": "lz4", + "module_version": "1.9.4-GCCcore-12.3.0" + }, + { + "full_module_name": "zstd/1.5.5-GCCcore-12.3.0", + "module_name": "zstd", + "module_version": "1.5.5-GCCcore-12.3.0" + }, + { + "full_module_name": "ICU/73.2-GCCcore-12.3.0", + "module_name": "ICU", + "module_version": "73.2-GCCcore-12.3.0" + }, + { + "full_module_name": "Boost.MPI/1.82.0-gompi-2023a", + "module_name": "Boost.MPI", + "module_version": "1.82.0-gompi-2023a" + }, + { + "full_module_name": "Szip/2.1.1-GCCcore-12.3.0", + "module_name": "Szip", + "module_version": "2.1.1-GCCcore-12.3.0" + }, + { + "full_module_name": "HDF5/1.14.0-gompi-2023a", + "module_name": "HDF5", + "module_version": "1.14.0-gompi-2023a" + }, + { + "full_module_name": "expat/2.5.0-GCCcore-12.3.0", + "module_name": "expat", + "module_version": "2.5.0-GCCcore-12.3.0" + }, + { + "full_module_name": "libpng/1.6.39-GCCcore-12.3.0", + "module_name": "libpng", + "module_version": "1.6.39-GCCcore-12.3.0" + }, + { + "full_module_name": "Brotli/1.0.9-GCCcore-12.3.0", + "module_name": "Brotli", + "module_version": "1.0.9-GCCcore-12.3.0" + }, + { + "full_module_name": "freetype/2.13.0-GCCcore-12.3.0", + "module_name": "freetype", + "module_version": "2.13.0-GCCcore-12.3.0" + }, + { + "full_module_name": "fontconfig/2.14.2-GCCcore-12.3.0", + "module_name": "fontconfig", + "module_version": "2.14.2-GCCcore-12.3.0" + }, + { + "full_module_name": "xorg-macros/1.20.0-GCCcore-12.3.0", + "module_name": "xorg-macros", + "module_version": "1.20.0-GCCcore-12.3.0" + }, + { + "full_module_name": "X11/20230603-GCCcore-12.3.0", + "module_name": "X11", + "module_version": "20230603-GCCcore-12.3.0" + }, + { + "full_module_name": "libdrm/2.4.115-GCCcore-12.3.0", + "module_name": "libdrm", + "module_version": "2.4.115-GCCcore-12.3.0" + }, + { + "full_module_name": "libglvnd/1.6.0-GCCcore-12.3.0", + "module_name": "libglvnd", + "module_version": "1.6.0-GCCcore-12.3.0" + }, + { + "full_module_name": "libunwind/1.6.2-GCCcore-12.3.0", + "module_name": "libunwind", + "module_version": "1.6.2-GCCcore-12.3.0" + }, + { + "full_module_name": "LLVM/16.0.6-GCCcore-12.3.0", + "module_name": "LLVM", + "module_version": "16.0.6-GCCcore-12.3.0" + }, + { + "full_module_name": "Mesa/23.1.4-GCCcore-12.3.0", + "module_name": "Mesa", + "module_version": "23.1.4-GCCcore-12.3.0" + }, + { + "full_module_name": "GSL/2.7-GCC-12.3.0", + "module_name": "GSL", + "module_version": "2.7-GCC-12.3.0" + }, + { + "full_module_name": "OpenPGM/5.2.122-GCCcore-12.3.0", + "module_name": "OpenPGM", + "module_version": "5.2.122-GCCcore-12.3.0" + }, + { + "full_module_name": "libsodium/1.0.18-GCCcore-12.3.0", + "module_name": "libsodium", + "module_version": "1.0.18-GCCcore-12.3.0" + }, + { + "full_module_name": "ZeroMQ/4.3.4-GCCcore-12.3.0", + "module_name": "ZeroMQ", + "module_version": "4.3.4-GCCcore-12.3.0" + }, + { + "full_module_name": "libxslt/1.1.38-GCCcore-12.3.0", + "module_name": "libxslt", + "module_version": "1.1.38-GCCcore-12.3.0" + }, + { + "full_module_name": "lxml/4.9.2-GCCcore-12.3.0", + "module_name": "lxml", + "module_version": "4.9.2-GCCcore-12.3.0" + }, + { + "full_module_name": "hatchling/1.18.0-GCCcore-12.3.0", + "module_name": "hatchling", + "module_version": "1.18.0-GCCcore-12.3.0" + }, + { + "full_module_name": "BeautifulSoup/4.12.2-GCCcore-12.3.0", + "module_name": "BeautifulSoup", + "module_version": "4.12.2-GCCcore-12.3.0" + }, + { + "full_module_name": "IPython/8.14.0-GCCcore-12.3.0", + "module_name": "IPython", + "module_version": "8.14.0-GCCcore-12.3.0" + }, + { + "full_module_name": "typing-extensions/4.9.0-GCCcore-12.3.0", + "module_name": "typing-extensions", + "module_version": "4.9.0-GCCcore-12.3.0" + }, + { + "full_module_name": "Pint/0.23-GCCcore-12.3.0", + "module_name": "Pint", + "module_version": "0.23-GCCcore-12.3.0" + }, + { + "full_module_name": "ESPResSo/4.2.2-foss-2023a", + "module_name": "ESPResSo", + "module_version": "4.2.2-foss-2023a" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "A software package for performing and analyzing scientific Molecular Dynamics simulations.", + "version": "4.2.2", + "versionsuffix": "", + "extensions": [] + }, + { + "homepage": "https://espressomd.org/wordpress", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "foss", + "version": "2023b" + }, + "toolchain_families_compatibility": [ + "2023b_foss" + ], + "module": { + "full_module_name": "ESPResSo/4.2.2-foss-2023b", + "module_name": "ESPResSo", + "module_version": "4.2.2-foss-2023b" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/13.2.0", + "module_name": "GCCcore", + "module_version": "13.2.0" + }, + { + "full_module_name": "GCC/13.2.0", + "module_name": "GCC", + "module_version": "13.2.0" + }, + { + "full_module_name": "numactl/2.0.16-GCCcore-13.2.0", + "module_name": "numactl", + "module_version": "2.0.16-GCCcore-13.2.0" + }, + { + "full_module_name": "libxml2/2.11.5-GCCcore-13.2.0", + "module_name": "libxml2", + "module_version": "2.11.5-GCCcore-13.2.0" + }, + { + "full_module_name": "libpciaccess/0.17-GCCcore-13.2.0", + "module_name": "libpciaccess", + "module_version": "0.17-GCCcore-13.2.0" + }, + { + "full_module_name": "hwloc/2.9.2-GCCcore-13.2.0", + "module_name": "hwloc", + "module_version": "2.9.2-GCCcore-13.2.0" + }, + { + "full_module_name": "OpenSSL/1.1", + "module_name": "OpenSSL", + "module_version": "1.1" + }, + { + "full_module_name": "libevent/2.1.12-GCCcore-13.2.0", + "module_name": "libevent", + "module_version": "2.1.12-GCCcore-13.2.0" + }, + { + "full_module_name": "UCX/1.15.0-GCCcore-13.2.0", + "module_name": "UCX", + "module_version": "1.15.0-GCCcore-13.2.0" + }, + { + "full_module_name": "libfabric/1.19.0-GCCcore-13.2.0", + "module_name": "libfabric", + "module_version": "1.19.0-GCCcore-13.2.0" + }, + { + "full_module_name": "PMIx/4.2.6-GCCcore-13.2.0", + "module_name": "PMIx", + "module_version": "4.2.6-GCCcore-13.2.0" + }, + { + "full_module_name": "UCC/1.2.0-GCCcore-13.2.0", + "module_name": "UCC", + "module_version": "1.2.0-GCCcore-13.2.0" + }, + { + "full_module_name": "OpenMPI/4.1.6-GCC-13.2.0", + "module_name": "OpenMPI", + "module_version": "4.1.6-GCC-13.2.0" + }, + { + "full_module_name": "OpenBLAS/0.3.24-GCC-13.2.0", + "module_name": "OpenBLAS", + "module_version": "0.3.24-GCC-13.2.0" + }, + { + "full_module_name": "FlexiBLAS/3.3.1-GCC-13.2.0", + "module_name": "FlexiBLAS", + "module_version": "3.3.1-GCC-13.2.0" + }, + { + "full_module_name": "FFTW/3.3.10-GCC-13.2.0", + "module_name": "FFTW", + "module_version": "3.3.10-GCC-13.2.0" + }, + { + "full_module_name": "gompi/2023b", + "module_name": "gompi", + "module_version": "2023b" + }, + { + "full_module_name": "FFTW.MPI/3.3.10-gompi-2023b", + "module_name": "FFTW.MPI", + "module_version": "3.3.10-gompi-2023b" + }, + { + "full_module_name": "ScaLAPACK/2.2.0-gompi-2023b-fb", + "module_name": "ScaLAPACK", + "module_version": "2.2.0-gompi-2023b-fb" + }, + { + "full_module_name": "foss/2023b", + "module_name": "foss", + "module_version": "2023b" + }, + { + "full_module_name": "Tcl/8.6.13-GCCcore-13.2.0", + "module_name": "Tcl", + "module_version": "8.6.13-GCCcore-13.2.0" + }, + { + "full_module_name": "SQLite/3.43.1-GCCcore-13.2.0", + "module_name": "SQLite", + "module_version": "3.43.1-GCCcore-13.2.0" + }, + { + "full_module_name": "libffi/3.4.4-GCCcore-13.2.0", + "module_name": "libffi", + "module_version": "3.4.4-GCCcore-13.2.0" + }, + { + "full_module_name": "Python/3.11.5-GCCcore-13.2.0", + "module_name": "Python", + "module_version": "3.11.5-GCCcore-13.2.0" + }, + { + "full_module_name": "gfbf/2023b", + "module_name": "gfbf", + "module_version": "2023b" + }, + { + "full_module_name": "cffi/1.15.1-GCCcore-13.2.0", + "module_name": "cffi", + "module_version": "1.15.1-GCCcore-13.2.0" + }, + { + "full_module_name": "cryptography/41.0.5-GCCcore-13.2.0", + "module_name": "cryptography", + "module_version": "41.0.5-GCCcore-13.2.0" + }, + { + "full_module_name": "virtualenv/20.24.6-GCCcore-13.2.0", + "module_name": "virtualenv", + "module_version": "20.24.6-GCCcore-13.2.0" + }, + { + "full_module_name": "Python-bundle-PyPI/2023.10-GCCcore-13.2.0", + "module_name": "Python-bundle-PyPI", + "module_version": "2023.10-GCCcore-13.2.0" + }, + { + "full_module_name": "pybind11/2.11.1-GCCcore-13.2.0", + "module_name": "pybind11", + "module_version": "2.11.1-GCCcore-13.2.0" + }, + { + "full_module_name": "SciPy-bundle/2023.11-gfbf-2023b", + "module_name": "SciPy-bundle", + "module_version": "2023.11-gfbf-2023b" + }, + { + "full_module_name": "gzip/1.13-GCCcore-13.2.0", + "module_name": "gzip", + "module_version": "1.13-GCCcore-13.2.0" + }, + { + "full_module_name": "lz4/1.9.4-GCCcore-13.2.0", + "module_name": "lz4", + "module_version": "1.9.4-GCCcore-13.2.0" + }, + { + "full_module_name": "zstd/1.5.5-GCCcore-13.2.0", + "module_name": "zstd", + "module_version": "1.5.5-GCCcore-13.2.0" + }, + { + "full_module_name": "ICU/74.1-GCCcore-13.2.0", + "module_name": "ICU", + "module_version": "74.1-GCCcore-13.2.0" + }, + { + "full_module_name": "Boost.MPI/1.83.0-gompi-2023b", + "module_name": "Boost.MPI", + "module_version": "1.83.0-gompi-2023b" + }, + { + "full_module_name": "Szip/2.1.1-GCCcore-13.2.0", + "module_name": "Szip", + "module_version": "2.1.1-GCCcore-13.2.0" + }, + { + "full_module_name": "HDF5/1.14.3-gompi-2023b", + "module_name": "HDF5", + "module_version": "1.14.3-gompi-2023b" + }, + { + "full_module_name": "expat/2.5.0-GCCcore-13.2.0", + "module_name": "expat", + "module_version": "2.5.0-GCCcore-13.2.0" + }, + { + "full_module_name": "libpng/1.6.40-GCCcore-13.2.0", + "module_name": "libpng", + "module_version": "1.6.40-GCCcore-13.2.0" + }, + { + "full_module_name": "Brotli/1.1.0-GCCcore-13.2.0", + "module_name": "Brotli", + "module_version": "1.1.0-GCCcore-13.2.0" + }, + { + "full_module_name": "freetype/2.13.2-GCCcore-13.2.0", + "module_name": "freetype", + "module_version": "2.13.2-GCCcore-13.2.0" + }, + { + "full_module_name": "fontconfig/2.14.2-GCCcore-13.2.0", + "module_name": "fontconfig", + "module_version": "2.14.2-GCCcore-13.2.0" + }, + { + "full_module_name": "xorg-macros/1.20.0-GCCcore-13.2.0", + "module_name": "xorg-macros", + "module_version": "1.20.0-GCCcore-13.2.0" + }, + { + "full_module_name": "X11/20231019-GCCcore-13.2.0", + "module_name": "X11", + "module_version": "20231019-GCCcore-13.2.0" + }, + { + "full_module_name": "libdrm/2.4.117-GCCcore-13.2.0", + "module_name": "libdrm", + "module_version": "2.4.117-GCCcore-13.2.0" + }, + { + "full_module_name": "libglvnd/1.7.0-GCCcore-13.2.0", + "module_name": "libglvnd", + "module_version": "1.7.0-GCCcore-13.2.0" + }, + { + "full_module_name": "libunwind/1.6.2-GCCcore-13.2.0", + "module_name": "libunwind", + "module_version": "1.6.2-GCCcore-13.2.0" + }, + { + "full_module_name": "LLVM/16.0.6-GCCcore-13.2.0", + "module_name": "LLVM", + "module_version": "16.0.6-GCCcore-13.2.0" + }, + { + "full_module_name": "Mesa/23.1.9-GCCcore-13.2.0", + "module_name": "Mesa", + "module_version": "23.1.9-GCCcore-13.2.0" + }, + { + "full_module_name": "GSL/2.7-GCC-13.2.0", + "module_name": "GSL", + "module_version": "2.7-GCC-13.2.0" + }, + { + "full_module_name": "OpenPGM/5.2.122-GCCcore-13.2.0", + "module_name": "OpenPGM", + "module_version": "5.2.122-GCCcore-13.2.0" + }, + { + "full_module_name": "libsodium/1.0.19-GCCcore-13.2.0", + "module_name": "libsodium", + "module_version": "1.0.19-GCCcore-13.2.0" + }, + { + "full_module_name": "ZeroMQ/4.3.5-GCCcore-13.2.0", + "module_name": "ZeroMQ", + "module_version": "4.3.5-GCCcore-13.2.0" + }, + { + "full_module_name": "libxslt/1.1.38-GCCcore-13.2.0", + "module_name": "libxslt", + "module_version": "1.1.38-GCCcore-13.2.0" + }, + { + "full_module_name": "lxml/4.9.3-GCCcore-13.2.0", + "module_name": "lxml", + "module_version": "4.9.3-GCCcore-13.2.0" + }, + { + "full_module_name": "jedi/0.19.1-GCCcore-13.2.0", + "module_name": "jedi", + "module_version": "0.19.1-GCCcore-13.2.0" + }, + { + "full_module_name": "IPython/8.17.2-GCCcore-13.2.0", + "module_name": "IPython", + "module_version": "8.17.2-GCCcore-13.2.0" + }, + { + "full_module_name": "Pint/0.24-GCCcore-13.2.0", + "module_name": "Pint", + "module_version": "0.24-GCCcore-13.2.0" + }, + { + "full_module_name": "ESPResSo/4.2.2-foss-2023b", + "module_name": "ESPResSo", + "module_version": "4.2.2-foss-2023b" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "A software package for performing and analyzing scientific Molecular Dynamics simulations.", + "version": "4.2.2", + "versionsuffix": "", + "extensions": [] + } + ], + "homepage": "https://espressomd.org/wordpress", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "description": "A software package for performing and analyzing scientific Molecular Dynamics simulations." + }, + "PMIx": { + "versions": [ + { + "homepage": "https://pmix.org/", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "12.2.0" + }, + "toolchain_families_compatibility": [ + "2022b_foss" + ], + "module": { + "full_module_name": "PMIx/4.2.2-GCCcore-12.2.0", + "module_name": "PMIx", + "module_version": "4.2.2-GCCcore-12.2.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/12.2.0", + "module_name": "GCCcore", + "module_version": "12.2.0" + }, + { + "full_module_name": "OpenSSL/1.1", + "module_name": "OpenSSL", + "module_version": "1.1" + }, + { + "full_module_name": "libevent/2.1.12-GCCcore-12.2.0", + "module_name": "libevent", + "module_version": "2.1.12-GCCcore-12.2.0" + }, + { + "full_module_name": "numactl/2.0.16-GCCcore-12.2.0", + "module_name": "numactl", + "module_version": "2.0.16-GCCcore-12.2.0" + }, + { + "full_module_name": "libxml2/2.10.3-GCCcore-12.2.0", + "module_name": "libxml2", + "module_version": "2.10.3-GCCcore-12.2.0" + }, + { + "full_module_name": "libpciaccess/0.17-GCCcore-12.2.0", + "module_name": "libpciaccess", + "module_version": "0.17-GCCcore-12.2.0" + }, + { + "full_module_name": "hwloc/2.8.0-GCCcore-12.2.0", + "module_name": "hwloc", + "module_version": "2.8.0-GCCcore-12.2.0" + }, + { + "full_module_name": "PMIx/4.2.2-GCCcore-12.2.0", + "module_name": "PMIx", + "module_version": "4.2.2-GCCcore-12.2.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Process Management for Exascale Environments\nPMI Exascale (PMIx) represents an attempt to\nprovide an extended version of the PMI standard specifically designed\nto support clusters up to and including exascale sizes. The overall\nobjective of the project is not to branch the existing pseudo-standard\ndefinitions - in fact, PMIx fully supports both of the existing PMI-1\nand PMI-2 APIs - but rather to (a) augment and extend those APIs to\neliminate some current restrictions that impact scalability, and (b)\nprovide a reference implementation of the PMI-server that demonstrates\nthe desired level of scalability.\n", + "version": "4.2.2", + "versionsuffix": "", + "extensions": [] + }, + { + "homepage": "https://pmix.org/", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "12.3.0" + }, + "toolchain_families_compatibility": [ + "2023a_foss" + ], + "module": { + "full_module_name": "PMIx/4.2.4-GCCcore-12.3.0", + "module_name": "PMIx", + "module_version": "4.2.4-GCCcore-12.3.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/12.3.0", + "module_name": "GCCcore", + "module_version": "12.3.0" + }, + { + "full_module_name": "OpenSSL/1.1", + "module_name": "OpenSSL", + "module_version": "1.1" + }, + { + "full_module_name": "libevent/2.1.12-GCCcore-12.3.0", + "module_name": "libevent", + "module_version": "2.1.12-GCCcore-12.3.0" + }, + { + "full_module_name": "numactl/2.0.16-GCCcore-12.3.0", + "module_name": "numactl", + "module_version": "2.0.16-GCCcore-12.3.0" + }, + { + "full_module_name": "libxml2/2.11.4-GCCcore-12.3.0", + "module_name": "libxml2", + "module_version": "2.11.4-GCCcore-12.3.0" + }, + { + "full_module_name": "libpciaccess/0.17-GCCcore-12.3.0", + "module_name": "libpciaccess", + "module_version": "0.17-GCCcore-12.3.0" + }, + { + "full_module_name": "hwloc/2.9.1-GCCcore-12.3.0", + "module_name": "hwloc", + "module_version": "2.9.1-GCCcore-12.3.0" + }, + { + "full_module_name": "PMIx/4.2.4-GCCcore-12.3.0", + "module_name": "PMIx", + "module_version": "4.2.4-GCCcore-12.3.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Process Management for Exascale Environments\nPMI Exascale (PMIx) represents an attempt to\nprovide an extended version of the PMI standard specifically designed\nto support clusters up to and including exascale sizes. The overall\nobjective of the project is not to branch the existing pseudo-standard\ndefinitions - in fact, PMIx fully supports both of the existing PMI-1\nand PMI-2 APIs - but rather to (a) augment and extend those APIs to\neliminate some current restrictions that impact scalability, and (b)\nprovide a reference implementation of the PMI-server that demonstrates\nthe desired level of scalability.\n", + "version": "4.2.4", + "versionsuffix": "", + "extensions": [] + }, + { + "homepage": "https://pmix.org/", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "13.2.0" + }, + "toolchain_families_compatibility": [ + "2023b_foss" + ], + "module": { + "full_module_name": "PMIx/4.2.6-GCCcore-13.2.0", + "module_name": "PMIx", + "module_version": "4.2.6-GCCcore-13.2.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/13.2.0", + "module_name": "GCCcore", + "module_version": "13.2.0" + }, + { + "full_module_name": "OpenSSL/1.1", + "module_name": "OpenSSL", + "module_version": "1.1" + }, + { + "full_module_name": "libevent/2.1.12-GCCcore-13.2.0", + "module_name": "libevent", + "module_version": "2.1.12-GCCcore-13.2.0" + }, + { + "full_module_name": "numactl/2.0.16-GCCcore-13.2.0", + "module_name": "numactl", + "module_version": "2.0.16-GCCcore-13.2.0" + }, + { + "full_module_name": "libxml2/2.11.5-GCCcore-13.2.0", + "module_name": "libxml2", + "module_version": "2.11.5-GCCcore-13.2.0" + }, + { + "full_module_name": "libpciaccess/0.17-GCCcore-13.2.0", + "module_name": "libpciaccess", + "module_version": "0.17-GCCcore-13.2.0" + }, + { + "full_module_name": "hwloc/2.9.2-GCCcore-13.2.0", + "module_name": "hwloc", + "module_version": "2.9.2-GCCcore-13.2.0" + }, + { + "full_module_name": "PMIx/4.2.6-GCCcore-13.2.0", + "module_name": "PMIx", + "module_version": "4.2.6-GCCcore-13.2.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Process Management for Exascale Environments\nPMI Exascale (PMIx) represents an attempt to\nprovide an extended version of the PMI standard specifically designed\nto support clusters up to and including exascale sizes. The overall\nobjective of the project is not to branch the existing pseudo-standard\ndefinitions - in fact, PMIx fully supports both of the existing PMI-1\nand PMI-2 APIs - but rather to (a) augment and extend those APIs to\neliminate some current restrictions that impact scalability, and (b)\nprovide a reference implementation of the PMI-server that demonstrates\nthe desired level of scalability.\n", + "version": "4.2.6", + "versionsuffix": "", + "extensions": [] + }, + { + "homepage": "https://pmix.org/", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "13.3.0" + }, + "toolchain_families_compatibility": [ + "2024a_foss" + ], + "module": { + "full_module_name": "PMIx/5.0.2-GCCcore-13.3.0", + "module_name": "PMIx", + "module_version": "5.0.2-GCCcore-13.3.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2025.06", + "module_name": "EESSI", + "module_version": "2025.06" + }, + { + "full_module_name": "GCCcore/13.3.0", + "module_name": "GCCcore", + "module_version": "13.3.0" + }, + { + "full_module_name": "OpenSSL/3", + "module_name": "OpenSSL", + "module_version": "3" + }, + { + "full_module_name": "libevent/2.1.12-GCCcore-13.3.0", + "module_name": "libevent", + "module_version": "2.1.12-GCCcore-13.3.0" + }, + { + "full_module_name": "numactl/2.0.18-GCCcore-13.3.0", + "module_name": "numactl", + "module_version": "2.0.18-GCCcore-13.3.0" + }, + { + "full_module_name": "libxml2/2.12.7-GCCcore-13.3.0", + "module_name": "libxml2", + "module_version": "2.12.7-GCCcore-13.3.0" + }, + { + "full_module_name": "libpciaccess/0.18.1-GCCcore-13.3.0", + "module_name": "libpciaccess", + "module_version": "0.18.1-GCCcore-13.3.0" + }, + { + "full_module_name": "hwloc/2.10.0-GCCcore-13.3.0", + "module_name": "hwloc", + "module_version": "2.10.0-GCCcore-13.3.0" + }, + { + "full_module_name": "PMIx/5.0.2-GCCcore-13.3.0", + "module_name": "PMIx", + "module_version": "5.0.2-GCCcore-13.3.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Process Management for Exascale Environments\nPMI Exascale (PMIx) represents an attempt to\nprovide an extended version of the PMI standard specifically designed\nto support clusters up to and including exascale sizes. The overall\nobjective of the project is not to branch the existing pseudo-standard\ndefinitions - in fact, PMIx fully supports both of the existing PMI-1\nand PMI-2 APIs - but rather to (a) augment and extend those APIs to\neliminate some current restrictions that impact scalability, and (b)\nprovide a reference implementation of the PMI-server that demonstrates\nthe desired level of scalability.\n", + "version": "5.0.2", + "versionsuffix": "", + "extensions": [] + }, + { + "homepage": "https://pmix.org/", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "14.2.0" + }, + "toolchain_families_compatibility": [ + "2025a_foss" + ], + "module": { + "full_module_name": "PMIx/5.0.6-GCCcore-14.2.0", + "module_name": "PMIx", + "module_version": "5.0.6-GCCcore-14.2.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2025.06", + "module_name": "EESSI", + "module_version": "2025.06" + }, + { + "full_module_name": "GCCcore/14.2.0", + "module_name": "GCCcore", + "module_version": "14.2.0" + }, + { + "full_module_name": "OpenSSL/3", + "module_name": "OpenSSL", + "module_version": "3" + }, + { + "full_module_name": "libevent/2.1.12-GCCcore-14.2.0", + "module_name": "libevent", + "module_version": "2.1.12-GCCcore-14.2.0" + }, + { + "full_module_name": "numactl/2.0.19-GCCcore-14.2.0", + "module_name": "numactl", + "module_version": "2.0.19-GCCcore-14.2.0" + }, + { + "full_module_name": "libxml2/2.13.4-GCCcore-14.2.0", + "module_name": "libxml2", + "module_version": "2.13.4-GCCcore-14.2.0" + }, + { + "full_module_name": "libpciaccess/0.18.1-GCCcore-14.2.0", + "module_name": "libpciaccess", + "module_version": "0.18.1-GCCcore-14.2.0" + }, + { + "full_module_name": "hwloc/2.11.2-GCCcore-14.2.0", + "module_name": "hwloc", + "module_version": "2.11.2-GCCcore-14.2.0" + }, + { + "full_module_name": "PMIx/5.0.6-GCCcore-14.2.0", + "module_name": "PMIx", + "module_version": "5.0.6-GCCcore-14.2.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Process Management for Exascale Environments\nPMI Exascale (PMIx) represents an attempt to\nprovide an extended version of the PMI standard specifically designed\nto support clusters up to and including exascale sizes. The overall\nobjective of the project is not to branch the existing pseudo-standard\ndefinitions - in fact, PMIx fully supports both of the existing PMI-1\nand PMI-2 APIs - but rather to (a) augment and extend those APIs to\neliminate some current restrictions that impact scalability, and (b)\nprovide a reference implementation of the PMI-server that demonstrates\nthe desired level of scalability.\n", + "version": "5.0.6", + "versionsuffix": "", + "extensions": [] + }, + { + "homepage": "https://pmix.org/", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "14.3.0" + }, + "toolchain_families_compatibility": [ + "2025b_foss" + ], + "module": { + "full_module_name": "PMIx/5.0.8-GCCcore-14.3.0", + "module_name": "PMIx", + "module_version": "5.0.8-GCCcore-14.3.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2025.06", + "module_name": "EESSI", + "module_version": "2025.06" + }, + { + "full_module_name": "GCCcore/14.3.0", + "module_name": "GCCcore", + "module_version": "14.3.0" + }, + { + "full_module_name": "OpenSSL/3", + "module_name": "OpenSSL", + "module_version": "3" + }, + { + "full_module_name": "libevent/2.1.12-GCCcore-14.3.0", + "module_name": "libevent", + "module_version": "2.1.12-GCCcore-14.3.0" + }, + { + "full_module_name": "numactl/2.0.19-GCCcore-14.3.0", + "module_name": "numactl", + "module_version": "2.0.19-GCCcore-14.3.0" + }, + { + "full_module_name": "libxml2/2.14.3-GCCcore-14.3.0", + "module_name": "libxml2", + "module_version": "2.14.3-GCCcore-14.3.0" + }, + { + "full_module_name": "libpciaccess/0.18.1-GCCcore-14.3.0", + "module_name": "libpciaccess", + "module_version": "0.18.1-GCCcore-14.3.0" + }, + { + "full_module_name": "hwloc/2.12.1-GCCcore-14.3.0", + "module_name": "hwloc", + "module_version": "2.12.1-GCCcore-14.3.0" + }, + { + "full_module_name": "PMIx/5.0.8-GCCcore-14.3.0", + "module_name": "PMIx", + "module_version": "5.0.8-GCCcore-14.3.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Process Management for Exascale Environments\nPMI Exascale (PMIx) represents an attempt to\nprovide an extended version of the PMI standard specifically designed\nto support clusters up to and including exascale sizes. The overall\nobjective of the project is not to branch the existing pseudo-standard\ndefinitions - in fact, PMIx fully supports both of the existing PMI-1\nand PMI-2 APIs - but rather to (a) augment and extend those APIs to\neliminate some current restrictions that impact scalability, and (b)\nprovide a reference implementation of the PMI-server that demonstrates\nthe desired level of scalability.\n", + "version": "5.0.8", + "versionsuffix": "", + "extensions": [] + } + ], + "homepage": "https://pmix.org/", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "description": "Process Management for Exascale Environments\nPMI Exascale (PMIx) represents an attempt to\nprovide an extended version of the PMI standard specifically designed\nto support clusters up to and including exascale sizes. The overall\nobjective of the project is not to branch the existing pseudo-standard\ndefinitions - in fact, PMIx fully supports both of the existing PMI-1\nand PMI-2 APIs - but rather to (a) augment and extend those APIs to\neliminate some current restrictions that impact scalability, and (b)\nprovide a reference implementation of the PMI-server that demonstrates\nthe desired level of scalability.\n" + }, + "Salmon": { + "versions": [ + { + "homepage": "https://github.com/COMBINE-lab/salmon", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCC", + "version": "12.3.0" + }, + "toolchain_families_compatibility": [ + "2023a_foss" + ], + "module": { + "full_module_name": "Salmon/1.10.3-GCC-12.3.0", + "module_name": "Salmon", + "module_version": "1.10.3-GCC-12.3.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/12.3.0", + "module_name": "GCCcore", + "module_version": "12.3.0" + }, + { + "full_module_name": "GCC/12.3.0", + "module_name": "GCC", + "module_version": "12.3.0" + }, + { + "full_module_name": "gzip/1.12-GCCcore-12.3.0", + "module_name": "gzip", + "module_version": "1.12-GCCcore-12.3.0" + }, + { + "full_module_name": "lz4/1.9.4-GCCcore-12.3.0", + "module_name": "lz4", + "module_version": "1.9.4-GCCcore-12.3.0" + }, + { + "full_module_name": "zstd/1.5.5-GCCcore-12.3.0", + "module_name": "zstd", + "module_version": "1.5.5-GCCcore-12.3.0" + }, + { + "full_module_name": "ICU/73.2-GCCcore-12.3.0", + "module_name": "ICU", + "module_version": "73.2-GCCcore-12.3.0" + }, + { + "full_module_name": "Boost/1.82.0-GCC-12.3.0", + "module_name": "Boost", + "module_version": "1.82.0-GCC-12.3.0" + }, + { + "full_module_name": "numactl/2.0.16-GCCcore-12.3.0", + "module_name": "numactl", + "module_version": "2.0.16-GCCcore-12.3.0" + }, + { + "full_module_name": "libxml2/2.11.4-GCCcore-12.3.0", + "module_name": "libxml2", + "module_version": "2.11.4-GCCcore-12.3.0" + }, + { + "full_module_name": "libpciaccess/0.17-GCCcore-12.3.0", + "module_name": "libpciaccess", + "module_version": "0.17-GCCcore-12.3.0" + }, + { + "full_module_name": "hwloc/2.9.1-GCCcore-12.3.0", + "module_name": "hwloc", + "module_version": "2.9.1-GCCcore-12.3.0" + }, + { + "full_module_name": "tbb/2021.11.0-GCCcore-12.3.0", + "module_name": "tbb", + "module_version": "2021.11.0-GCCcore-12.3.0" + }, + { + "full_module_name": "OpenSSL/1.1", + "module_name": "OpenSSL", + "module_version": "1.1" + }, + { + "full_module_name": "cURL/8.0.1-GCCcore-12.3.0", + "module_name": "cURL", + "module_version": "8.0.1-GCCcore-12.3.0" + }, + { + "full_module_name": "libiconv/1.17-GCCcore-12.3.0", + "module_name": "libiconv", + "module_version": "1.17-GCCcore-12.3.0" + }, + { + "full_module_name": "Salmon/1.10.3-GCC-12.3.0", + "module_name": "Salmon", + "module_version": "1.10.3-GCC-12.3.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Salmon is a wicked-fast program to produce a highly-accurate,\n transcript-level quantification estimate from RNA-seq data.", + "version": "1.10.3", + "versionsuffix": "", + "extensions": [] + } + ], + "homepage": "https://github.com/COMBINE-lab/salmon", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "description": "Salmon is a wicked-fast program to produce a highly-accurate,\n transcript-level quantification estimate from RNA-seq data." + }, + "hatchling": { + "versions": [ + { + "homepage": "https://hatch.pypa.io", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "12.3.0" + }, + "toolchain_families_compatibility": [ + "2023a_foss" + ], + "module": { + "full_module_name": "hatchling/1.18.0-GCCcore-12.3.0", + "module_name": "hatchling", + "module_version": "1.18.0-GCCcore-12.3.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/12.3.0", + "module_name": "GCCcore", + "module_version": "12.3.0" + }, + { + "full_module_name": "Tcl/8.6.13-GCCcore-12.3.0", + "module_name": "Tcl", + "module_version": "8.6.13-GCCcore-12.3.0" + }, + { + "full_module_name": "SQLite/3.42.0-GCCcore-12.3.0", + "module_name": "SQLite", + "module_version": "3.42.0-GCCcore-12.3.0" + }, + { + "full_module_name": "libffi/3.4.4-GCCcore-12.3.0", + "module_name": "libffi", + "module_version": "3.4.4-GCCcore-12.3.0" + }, + { + "full_module_name": "OpenSSL/1.1", + "module_name": "OpenSSL", + "module_version": "1.1" + }, + { + "full_module_name": "Python/3.11.3-GCCcore-12.3.0", + "module_name": "Python", + "module_version": "3.11.3-GCCcore-12.3.0" + }, + { + "full_module_name": "hatchling/1.18.0-GCCcore-12.3.0", + "module_name": "hatchling", + "module_version": "1.18.0-GCCcore-12.3.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Extensible, standards compliant build backend used by Hatch,\na modern, extensible Python project manager.", + "version": "1.18.0", + "versionsuffix": "", + "extensions": [ + { + "type": "python", + "name": "pathspec", + "version": "0.11.1" + }, + { + "type": "python", + "name": "pluggy", + "version": "1.2.0" + }, + { + "type": "python", + "name": "editables", + "version": "0.3" + }, + { + "type": "python", + "name": "trove_classifiers", + "version": "2023.5.24" + }, + { + "type": "python", + "name": "hatchling", + "version": "1.18.0" + }, + { + "type": "python", + "name": "hatch_vcs", + "version": "0.3.0" + }, + { + "type": "python", + "name": "hatch_fancy_pypi_readme", + "version": "23.1.0" + }, + { + "type": "python", + "name": "hatch-requirements-txt", + "version": "0.4.1" + } + ] + }, + { + "homepage": "https://hatch.pypa.io", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "13.2.0" + }, + "toolchain_families_compatibility": [ + "2023b_foss" + ], + "module": { + "full_module_name": "hatchling/1.18.0-GCCcore-13.2.0", + "module_name": "hatchling", + "module_version": "1.18.0-GCCcore-13.2.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2023.06", + "module_name": "EESSI", + "module_version": "2023.06" + }, + { + "full_module_name": "GCCcore/13.2.0", + "module_name": "GCCcore", + "module_version": "13.2.0" + }, + { + "full_module_name": "Tcl/8.6.13-GCCcore-13.2.0", + "module_name": "Tcl", + "module_version": "8.6.13-GCCcore-13.2.0" + }, + { + "full_module_name": "SQLite/3.43.1-GCCcore-13.2.0", + "module_name": "SQLite", + "module_version": "3.43.1-GCCcore-13.2.0" + }, + { + "full_module_name": "libffi/3.4.4-GCCcore-13.2.0", + "module_name": "libffi", + "module_version": "3.4.4-GCCcore-13.2.0" + }, + { + "full_module_name": "OpenSSL/1.1", + "module_name": "OpenSSL", + "module_version": "1.1" + }, + { + "full_module_name": "Python/3.11.5-GCCcore-13.2.0", + "module_name": "Python", + "module_version": "3.11.5-GCCcore-13.2.0" + }, + { + "full_module_name": "hatchling/1.18.0-GCCcore-13.2.0", + "module_name": "hatchling", + "module_version": "1.18.0-GCCcore-13.2.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Extensible, standards compliant build backend used by Hatch,\na modern, extensible Python project manager.", + "version": "1.18.0", + "versionsuffix": "", + "extensions": [ + { + "type": "python", + "name": "pathspec", + "version": "0.11.2" + }, + { + "type": "python", + "name": "pluggy", + "version": "1.3.0" + }, + { + "type": "python", + "name": "editables", + "version": "0.5" + }, + { + "type": "python", + "name": "trove_classifiers", + "version": "2023.10.18" + }, + { + "type": "python", + "name": "hatchling", + "version": "1.18.0" + }, + { + "type": "python", + "name": "hatch_vcs", + "version": "0.3.0" + }, + { + "type": "python", + "name": "hatch_fancy_pypi_readme", + "version": "23.1.0" + }, + { + "type": "python", + "name": "hatch-requirements-txt", + "version": "0.4.1" + } + ] + }, + { + "homepage": "https://hatch.pypa.io", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "13.3.0" + }, + "toolchain_families_compatibility": [ + "2024a_foss" + ], + "module": { + "full_module_name": "hatchling/1.24.2-GCCcore-13.3.0", + "module_name": "hatchling", + "module_version": "1.24.2-GCCcore-13.3.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2025.06", + "module_name": "EESSI", + "module_version": "2025.06" + }, + { + "full_module_name": "GCCcore/13.3.0", + "module_name": "GCCcore", + "module_version": "13.3.0" + }, + { + "full_module_name": "Tcl/8.6.14-GCCcore-13.3.0", + "module_name": "Tcl", + "module_version": "8.6.14-GCCcore-13.3.0" + }, + { + "full_module_name": "SQLite/3.45.3-GCCcore-13.3.0", + "module_name": "SQLite", + "module_version": "3.45.3-GCCcore-13.3.0" + }, + { + "full_module_name": "libffi/3.4.5-GCCcore-13.3.0", + "module_name": "libffi", + "module_version": "3.4.5-GCCcore-13.3.0" + }, + { + "full_module_name": "OpenSSL/3", + "module_name": "OpenSSL", + "module_version": "3" + }, + { + "full_module_name": "Python/3.12.3-GCCcore-13.3.0", + "module_name": "Python", + "module_version": "3.12.3-GCCcore-13.3.0" + }, + { + "full_module_name": "hatchling/1.24.2-GCCcore-13.3.0", + "module_name": "hatchling", + "module_version": "1.24.2-GCCcore-13.3.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Extensible, standards compliant build backend used by Hatch,\na modern, extensible Python project manager.", + "version": "1.24.2", + "versionsuffix": "", + "extensions": [ + { + "type": "python", + "name": "pathspec", + "version": "0.12.1" + }, + { + "type": "python", + "name": "pluggy", + "version": "1.5.0" + }, + { + "type": "python", + "name": "editables", + "version": "0.5" + }, + { + "type": "python", + "name": "trove-classifiers", + "version": "2024.5.22" + }, + { + "type": "python", + "name": "hatchling", + "version": "1.24.2" + }, + { + "type": "python", + "name": "hatch-vcs", + "version": "0.4.0" + }, + { + "type": "python", + "name": "hatch-fancy-pypi-readme", + "version": "24.1.0" + }, + { + "type": "python", + "name": "hatch-requirements-txt", + "version": "0.4.1" + } + ] + }, + { + "homepage": "https://hatch.pypa.io", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "14.2.0" + }, + "toolchain_families_compatibility": [ + "2025a_foss" + ], + "module": { + "full_module_name": "hatchling/1.27.0-GCCcore-14.2.0", + "module_name": "hatchling", + "module_version": "1.27.0-GCCcore-14.2.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2025.06", + "module_name": "EESSI", + "module_version": "2025.06" + }, + { + "full_module_name": "GCCcore/14.2.0", + "module_name": "GCCcore", + "module_version": "14.2.0" + }, + { + "full_module_name": "Tcl/8.6.16-GCCcore-14.2.0", + "module_name": "Tcl", + "module_version": "8.6.16-GCCcore-14.2.0" + }, + { + "full_module_name": "SQLite/3.47.2-GCCcore-14.2.0", + "module_name": "SQLite", + "module_version": "3.47.2-GCCcore-14.2.0" + }, + { + "full_module_name": "libffi/3.4.5-GCCcore-14.2.0", + "module_name": "libffi", + "module_version": "3.4.5-GCCcore-14.2.0" + }, + { + "full_module_name": "OpenSSL/3", + "module_name": "OpenSSL", + "module_version": "3" + }, + { + "full_module_name": "Python/3.13.1-GCCcore-14.2.0", + "module_name": "Python", + "module_version": "3.13.1-GCCcore-14.2.0" + }, + { + "full_module_name": "hatchling/1.27.0-GCCcore-14.2.0", + "module_name": "hatchling", + "module_version": "1.27.0-GCCcore-14.2.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Extensible, standards compliant build backend used by Hatch,\na modern, extensible Python project manager.", + "version": "1.27.0", + "versionsuffix": "", + "extensions": [ + { + "type": "python", + "name": "pathspec", + "version": "0.12.1" + }, + { + "type": "python", + "name": "pluggy", + "version": "1.5.0" + }, + { + "type": "python", + "name": "editables", + "version": "0.5" + }, + { + "type": "python", + "name": "trove-classifiers", + "version": "2025.2.18.16" + }, + { + "type": "python", + "name": "hatchling", + "version": "1.27.0" + }, + { + "type": "python", + "name": "hatch-vcs", + "version": "0.4.0" + }, + { + "type": "python", + "name": "hatch-fancy-pypi-readme", + "version": "24.1.0" + }, + { + "type": "python", + "name": "hatch-requirements-txt", + "version": "0.4.1" + } + ] + }, + { + "homepage": "https://hatch.pypa.io", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "14.3.0" + }, + "toolchain_families_compatibility": [ + "2025b_foss" + ], + "module": { + "full_module_name": "hatchling/1.27.0-GCCcore-14.3.0", + "module_name": "hatchling", + "module_version": "1.27.0-GCCcore-14.3.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2025.06", + "module_name": "EESSI", + "module_version": "2025.06" + }, + { + "full_module_name": "GCCcore/14.3.0", + "module_name": "GCCcore", + "module_version": "14.3.0" + }, + { + "full_module_name": "libtommath/1.3.0-GCCcore-14.3.0", + "module_name": "libtommath", + "module_version": "1.3.0-GCCcore-14.3.0" + }, + { + "full_module_name": "Tcl/9.0.1-GCCcore-14.3.0", + "module_name": "Tcl", + "module_version": "9.0.1-GCCcore-14.3.0" + }, + { + "full_module_name": "SQLite/3.50.1-GCCcore-14.3.0", + "module_name": "SQLite", + "module_version": "3.50.1-GCCcore-14.3.0" + }, + { + "full_module_name": "libffi/3.5.1-GCCcore-14.3.0", + "module_name": "libffi", + "module_version": "3.5.1-GCCcore-14.3.0" + }, + { + "full_module_name": "OpenSSL/3", + "module_name": "OpenSSL", + "module_version": "3" + }, + { + "full_module_name": "Python/3.13.5-GCCcore-14.3.0", + "module_name": "Python", + "module_version": "3.13.5-GCCcore-14.3.0" + }, + { + "full_module_name": "hatchling/1.27.0-GCCcore-14.3.0", + "module_name": "hatchling", + "module_version": "1.27.0-GCCcore-14.3.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "Extensible, standards compliant build backend used by Hatch,\na modern, extensible Python project manager.", + "version": "1.27.0", + "versionsuffix": "", + "extensions": [ + { + "type": "python", + "name": "pathspec", + "version": "0.12.1" + }, + { + "type": "python", + "name": "pluggy", + "version": "1.6.0" + }, + { + "type": "python", + "name": "editables", + "version": "0.5" + }, + { + "type": "python", + "name": "trove-classifiers", + "version": "2025.5.9.12" + }, + { + "type": "python", + "name": "hatchling", + "version": "1.27.0" + }, + { + "type": "python", + "name": "hatch-vcs", + "version": "0.5.0" + }, + { + "type": "python", + "name": "hatch-fancy-pypi-readme", + "version": "25.1.0" + }, + { + "type": "python", + "name": "hatch-requirements-txt", + "version": "0.4.1" + }, + { + "type": "python", + "name": "hatch-docstring-description", + "version": "1.1.1" + } + ] + } + ], + "homepage": "https://hatch.pypa.io", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "description": "Extensible, standards compliant build backend used by Hatch,\na modern, extensible Python project manager." + }, + "xterm": { + "versions": [ + { + "homepage": "https://xterm.dev/", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "toolchain": { + "name": "GCCcore", + "version": "13.3.0" + }, + "toolchain_families_compatibility": [ + "2024a_foss" + ], + "module": { + "full_module_name": "xterm/402-GCCcore-13.3.0", + "module_name": "xterm", + "module_version": "402-GCCcore-13.3.0" + }, + "required_modules": [ + { + "full_module_name": "EESSI/2025.06", + "module_name": "EESSI", + "module_version": "2025.06" + }, + { + "full_module_name": "GCCcore/13.3.0", + "module_name": "GCCcore", + "module_version": "13.3.0" + }, + { + "full_module_name": "expat/2.6.2-GCCcore-13.3.0", + "module_name": "expat", + "module_version": "2.6.2-GCCcore-13.3.0" + }, + { + "full_module_name": "libpng/1.6.43-GCCcore-13.3.0", + "module_name": "libpng", + "module_version": "1.6.43-GCCcore-13.3.0" + }, + { + "full_module_name": "Brotli/1.1.0-GCCcore-13.3.0", + "module_name": "Brotli", + "module_version": "1.1.0-GCCcore-13.3.0" + }, + { + "full_module_name": "freetype/2.13.2-GCCcore-13.3.0", + "module_name": "freetype", + "module_version": "2.13.2-GCCcore-13.3.0" + }, + { + "full_module_name": "fontconfig/2.15.0-GCCcore-13.3.0", + "module_name": "fontconfig", + "module_version": "2.15.0-GCCcore-13.3.0" + }, + { + "full_module_name": "xorg-macros/1.20.1-GCCcore-13.3.0", + "module_name": "xorg-macros", + "module_version": "1.20.1-GCCcore-13.3.0" + }, + { + "full_module_name": "libpciaccess/0.18.1-GCCcore-13.3.0", + "module_name": "libpciaccess", + "module_version": "0.18.1-GCCcore-13.3.0" + }, + { + "full_module_name": "X11/20240607-GCCcore-13.3.0", + "module_name": "X11", + "module_version": "20240607-GCCcore-13.3.0" + }, + { + "full_module_name": "xterm/402-GCCcore-13.3.0", + "module_name": "xterm", + "module_version": "402-GCCcore-13.3.0" + } + ], + "cpu_arch": [ + "aarch64/generic", + "aarch64/a64fx", + "aarch64/neoverse_n1", + "aarch64/neoverse_v1", + "aarch64/nvidia/grace", + "x86_64/generic", + "x86_64/amd/zen2", + "x86_64/amd/zen3", + "x86_64/amd/zen4", + "x86_64/intel/haswell", + "x86_64/intel/skylake_avx512", + "x86_64/intel/sapphirerapids", + "x86_64/intel/icelake", + "x86_64/intel/cascadelake" + ], + "gpu_arch": {}, + "description": "X11 terminal emulator for the X Window System", + "version": "402", + "versionsuffix": "", + "extensions": [] + } + ], + "homepage": "https://xterm.dev/", + "license": [], + "image": "", + "categories": [], + "identifier": "", + "description": "X11 terminal emulator for the X Window System" + } + } +} \ No newline at end of file diff --git a/scripts/available_software/tests/data/lmod_mock.sh b/scripts/available_software/tests/data/lmod_mock.sh deleted file mode 100755 index 8fecc18b37..0000000000 --- a/scripts/available_software/tests/data/lmod_mock.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/bash - -# Return an error when a variable is not set. -set -u - - -# example: $LMOD_CMD python --terse avail cluster/ -python="$1" -terse="$2" -mod_cmd="$3" -mod_args="${4:-}" - -# Emulated avail command. -if [ "$mod_cmd" = "avail" ]; then - cat "${MOCK_FILE_AVAIL}" >&2 - -# Emulated swap command. -elif [ "$mod_cmd" = "swap" ]; then - # extract the target name from the 4th argument - target=$(echo "$mod_args" | cut -d "/" -f 1) - target_name=$(echo "$mod_args" | cut -d "/" -f 2) - - if [ "$target" = "target" ]; then - # Substitute TARGET by the target_name - cat ${MOCK_FILE_SWAP/TARGET/${target_name}} >&1 - else - echo "${mod_args} is not a target." >&2 - exit 1 - fi - - -# Emulate show command -elif [ "$mod_cmd" = "show" ]; then - cat "${MOCK_FILE_SHOW}" >&2 - - -elif [ "$mod_cmd" = "use" ]; then - cvmfs=$(echo "$mod_args" | cut -d "/" -f 2) - repo=$(echo "$mod_args" | cut -d "/" -f 3) - if [ "cvmfs" = "cvmfs" ]; then - if echo "$mod_args" | grep -q -E "amd"; then - target_name=$(echo "$mod_args" | cut -d "/" -f 10) - # Substitute TARGET by the target_name - cat ${MOCK_FILE_SWAP/TARGET/${target_name}} >&1 - elif echo "$mod_args" | grep -q -E "intel"; then - target_name=$(echo "$mod_args" | cut -d "/" -f 10) - # Substitute TARGET by the target_name - cat ${MOCK_FILE_SWAP/TARGET/${target_name}} >&1 - else - target_name=$(echo "$mod_args" | cut -d "/" -f 9) - # Substitute TARGET by the target_name - cat ${MOCK_FILE_SWAP/TARGET/${target_name}} >&1 - fi - else - echo "${mod_arg} in not a cvmfs repo" - exit 1 - fi - - -else - echo "Module subcommand '${mod_cmd}' not supported yet in $0" >&2 - exit 1 -fi diff --git a/scripts/available_software/tests/data/test_json_simple_sol.json b/scripts/available_software/tests/data/test_json_simple_sol.json deleted file mode 100644 index 5d14435a70..0000000000 --- a/scripts/available_software/tests/data/test_json_simple_sol.json +++ /dev/null @@ -1 +0,0 @@ -{"time_generated":"dummy", "targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"], "modules": {"Markov": [1, 0], "cfd": [1, 1], "llm": [0, 1], "science": [1, 1]}} diff --git a/scripts/available_software/tests/data/test_json_simple_sol_detail.json b/scripts/available_software/tests/data/test_json_simple_sol_detail.json deleted file mode 100644 index e5df36b947..0000000000 --- a/scripts/available_software/tests/data/test_json_simple_sol_detail.json +++ /dev/null @@ -1 +0,0 @@ -{"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"], "software": {"cfd": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"], "versions": {"cfd/1.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"]}, "cfd/2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"]}, "cfd/24": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"]}, "cfd/5.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"]}, "cfd/2.0afqsdf": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"]}, "cfd/3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"]}}}, "Markov": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic"], "versions": {"Markov/hidden-1.0.5": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic"]}, "Markov/hidden-1.0.10": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic"]}}}, "science": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"], "versions": {"science/5.3.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"]}, "science/7.2.0": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic", "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"]}}}, "llm": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"], "versions": {"llm/20230627": {"targets": ["/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2"]}}}}, "time_generated": "Thu, 31 Aug 2023 at 14:00:22 CEST"} diff --git a/scripts/available_software/tests/data/test_md_simple_sol.md b/scripts/available_software/tests/data/test_md_simple_sol.md deleted file mode 100644 index 88812fe34e..0000000000 --- a/scripts/available_software/tests/data/test_md_simple_sol.md +++ /dev/null @@ -1,10 +0,0 @@ - -Overview Modules -================ - -| |/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic|/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2| -| :---: | :---: | :---: | -|Markov|X| | -|cfd|X|X| -|llm| |X| -|science|X|X| diff --git a/scripts/available_software/tests/data/test_md_template_detailed_science_sol.md b/scripts/available_software/tests/data/test_md_template_detailed_science_sol.md deleted file mode 100644 index b63029196b..0000000000 --- a/scripts/available_software/tests/data/test_md_template_detailed_science_sol.md +++ /dev/null @@ -1,50 +0,0 @@ ---- -hide: -- toc -json_ld: - '@context': https://schema.org - '@type': SoftwareApplication - applicationCategory: DeveloperApplication - description: '' - license: Not confirmed - name: science - offers: - '@type': Offer - price: 0 - operatingSystem: LINUX - review: - '@type': Review - author: - '@type': Organization - name: EESSI - reviewBody: Application has been successfully made available on all architectures - supported by EESSI - reviewRating: - '@type': Rating - ratingValue: 5 - softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available - on your system - softwareVersion: '[''science/5.3.0'', ''science/7.2.0'']' - url: '' ---- - -science -======= - -# Available modules - - -The overview below shows which science installations are available per target architecture in EESSI, ordered based on software version (new to old). - -To start using science, load one of these modules using a `module load` command like: - -```shell -module load science/7.2.0 -``` - -*(This data was automatically generated on {{ generated_date }})* - -| |aarch64/generic|x86_64/amd/zen2| -| :---: | :---: | :---: | -|science/7.2.0|x|x| -|science/5.3.0|x|x| diff --git a/scripts/available_software/tests/detail/.gitkeep b/scripts/available_software/tests/detail/.gitkeep new file mode 100644 index 0000000000..e69de29bb2 diff --git a/scripts/available_software/tests/reference_detail/CUDA-Samples.md b/scripts/available_software/tests/reference_detail/CUDA-Samples.md new file mode 100644 index 0000000000..35072a2c72 --- /dev/null +++ b/scripts/available_software/tests/reference_detail/CUDA-Samples.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: Samples for CUDA Developers which demonstrates features in CUDA Toolkit + license: Not confirmed + name: CUDA-Samples + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''12.1'']' + url: https://github.com/NVIDIA/cuda-samples +--- +# CUDA-Samples + + +Samples for CUDA Developers which demonstrates features in CUDA Toolkit + +homepage: [https://github.com/NVIDIA/cuda-samples](https://github.com/NVIDIA/cuda-samples) + +## Available installations + + +|CUDA-Samples version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|12.1|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`CUDA-Samples/12.1-GCC-12.3.0-CUDA-12.1.1`| \ No newline at end of file diff --git a/scripts/available_software/tests/reference_detail/ESPResSo.md b/scripts/available_software/tests/reference_detail/ESPResSo.md new file mode 100644 index 0000000000..969348cdfc --- /dev/null +++ b/scripts/available_software/tests/reference_detail/ESPResSo.md @@ -0,0 +1,44 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: A software package for performing and analyzing scientific Molecular + Dynamics simulations. + license: Not confirmed + name: ESPResSo + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''4.2.2'', ''4.2.1'']' + url: https://espressomd.org/wordpress +--- +# ESPResSo + + +A software package for performing and analyzing scientific Molecular Dynamics simulations. + +homepage: [https://espressomd.org/wordpress](https://espressomd.org/wordpress) + +## Available installations + + +|ESPResSo version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ESPResSo/4.2.2-foss-2023b`| +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|NVIDIA: `cc70`, `cc80`, `cc90`
|2023.06|`ESPResSo/4.2.2-foss-2023a-CUDA-12.1.1`| +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ESPResSo/4.2.2-foss-2023a`| +|4.2.1|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`ESPResSo/4.2.1-foss-2023a`| \ No newline at end of file diff --git a/scripts/available_software/tests/reference_detail/PMIx.md b/scripts/available_software/tests/reference_detail/PMIx.md new file mode 100644 index 0000000000..05d283e673 --- /dev/null +++ b/scripts/available_software/tests/reference_detail/PMIx.md @@ -0,0 +1,75 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Process Management for Exascale Environments + + PMI Exascale (PMIx) represents an attempt to + + provide an extended version of the PMI standard specifically designed + + to support clusters up to and including exascale sizes. The overall + + objective of the project is not to branch the existing pseudo-standard + + definitions - in fact, PMIx fully supports both of the existing PMI-1 + + and PMI-2 APIs - but rather to (a) augment and extend those APIs to + + eliminate some current restrictions that impact scalability, and (b) + + provide a reference implementation of the PMI-server that demonstrates + + the desired level of scalability. + + ' + license: Not confirmed + name: PMIx + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''5.0.8'', ''5.0.6'', ''5.0.2'', ''4.2.6'', ''4.2.4'', ''4.2.2'']' + url: https://pmix.org/ +--- +# PMIx + + +Process Management for Exascale Environments +PMI Exascale (PMIx) represents an attempt to +provide an extended version of the PMI standard specifically designed +to support clusters up to and including exascale sizes. The overall +objective of the project is not to branch the existing pseudo-standard +definitions - in fact, PMIx fully supports both of the existing PMI-1 +and PMI-2 APIs - but rather to (a) augment and extend those APIs to +eliminate some current restrictions that impact scalability, and (b) +provide a reference implementation of the PMI-server that demonstrates +the desired level of scalability. + + +homepage: [https://pmix.org/](https://pmix.org/) + +## Available installations + + +|PMIx version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|5.0.8|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PMIx/5.0.8-GCCcore-14.3.0`| +|5.0.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PMIx/5.0.6-GCCcore-14.2.0`| +|5.0.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`PMIx/5.0.2-GCCcore-13.3.0`| +|4.2.6|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PMIx/4.2.6-GCCcore-13.2.0`| +|4.2.4|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PMIx/4.2.4-GCCcore-12.3.0`| +|4.2.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`PMIx/4.2.2-GCCcore-12.2.0`| \ No newline at end of file diff --git a/scripts/available_software/tests/reference_detail/Salmon.md b/scripts/available_software/tests/reference_detail/Salmon.md new file mode 100644 index 0000000000..997718ee1a --- /dev/null +++ b/scripts/available_software/tests/reference_detail/Salmon.md @@ -0,0 +1,42 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: "Salmon is a wicked-fast program to produce a highly-accurate,\n transcript-level\ + \ quantification estimate from RNA-seq data." + license: Not confirmed + name: Salmon + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.10.3'']' + url: https://github.com/COMBINE-lab/salmon +--- +# Salmon + + +Salmon is a wicked-fast program to produce a highly-accurate, + transcript-level quantification estimate from RNA-seq data. + +homepage: [https://github.com/COMBINE-lab/salmon](https://github.com/COMBINE-lab/salmon) + +## Available installations + + +|Salmon version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.10.3|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`Salmon/1.10.3-GCC-12.3.0`| \ No newline at end of file diff --git a/scripts/available_software/tests/reference_detail/hatchling.md b/scripts/available_software/tests/reference_detail/hatchling.md new file mode 100644 index 0000000000..3615679a5b --- /dev/null +++ b/scripts/available_software/tests/reference_detail/hatchling.md @@ -0,0 +1,149 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: 'Extensible, standards compliant build backend used by Hatch, + + a modern, extensible Python project manager.' + license: Not confirmed + name: hatchling + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''1.27.0'', ''1.24.2'', ''1.18.0'']' + url: https://hatch.pypa.io +--- +# hatchling + + +Extensible, standards compliant build backend used by Hatch, +a modern, extensible Python project manager. + +homepage: [https://hatch.pypa.io](https://hatch.pypa.io) + +## Available installations + + +|hatchling version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|1.27.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hatchling/1.27.0-GCCcore-14.3.0`| +|1.27.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hatchling/1.27.0-GCCcore-14.2.0`| +|1.24.2|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`hatchling/1.24.2-GCCcore-13.3.0`| +|1.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hatchling/1.18.0-GCCcore-13.2.0`| +|1.18.0|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2023.06|`hatchling/1.18.0-GCCcore-12.3.0`| + +## Extensions + +Overview of extensions included in hatchling installations + + +### editables + + +|`editables` version|hatchling modules that include it| +| --- | --- | +|0.5|`hatchling/1.27.0-GCCcore-14.3.0`
`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`
`hatchling/1.18.0-GCCcore-13.2.0`| +|0.3|`hatchling/1.18.0-GCCcore-12.3.0`| + +### hatch-docstring-description + + +|`hatch-docstring-description` version|hatchling modules that include it| +| --- | --- | +|1.1.1|`hatchling/1.27.0-GCCcore-14.3.0`| + +### hatch-fancy-pypi-readme + + +|`hatch-fancy-pypi-readme` version|hatchling modules that include it| +| --- | --- | +|25.1.0|`hatchling/1.27.0-GCCcore-14.3.0`| +|24.1.0|`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`| + +### hatch-requirements-txt + + +|`hatch-requirements-txt` version|hatchling modules that include it| +| --- | --- | +|0.4.1|`hatchling/1.27.0-GCCcore-14.3.0`
`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`
`hatchling/1.18.0-GCCcore-13.2.0`
`hatchling/1.18.0-GCCcore-12.3.0`| + +### hatch-vcs + + +|`hatch-vcs` version|hatchling modules that include it| +| --- | --- | +|0.5.0|`hatchling/1.27.0-GCCcore-14.3.0`| +|0.4.0|`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`| + +### hatch_fancy_pypi_readme + + +|`hatch_fancy_pypi_readme` version|hatchling modules that include it| +| --- | --- | +|23.1.0|`hatchling/1.18.0-GCCcore-13.2.0`
`hatchling/1.18.0-GCCcore-12.3.0`| + +### hatch_vcs + + +|`hatch_vcs` version|hatchling modules that include it| +| --- | --- | +|0.3.0|`hatchling/1.18.0-GCCcore-13.2.0`
`hatchling/1.18.0-GCCcore-12.3.0`| + +### hatchling + + +|`hatchling` version|hatchling modules that include it| +| --- | --- | +|1.27.0|`hatchling/1.27.0-GCCcore-14.3.0`
`hatchling/1.27.0-GCCcore-14.2.0`| +|1.24.2|`hatchling/1.24.2-GCCcore-13.3.0`| +|1.18.0|`hatchling/1.18.0-GCCcore-13.2.0`
`hatchling/1.18.0-GCCcore-12.3.0`| + +### pathspec + + +|`pathspec` version|hatchling modules that include it| +| --- | --- | +|0.12.1|`hatchling/1.27.0-GCCcore-14.3.0`
`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`| +|0.11.2|`hatchling/1.18.0-GCCcore-13.2.0`| +|0.11.1|`hatchling/1.18.0-GCCcore-12.3.0`| + +### pluggy + + +|`pluggy` version|hatchling modules that include it| +| --- | --- | +|1.6.0|`hatchling/1.27.0-GCCcore-14.3.0`| +|1.5.0|`hatchling/1.27.0-GCCcore-14.2.0`
`hatchling/1.24.2-GCCcore-13.3.0`| +|1.3.0|`hatchling/1.18.0-GCCcore-13.2.0`| +|1.2.0|`hatchling/1.18.0-GCCcore-12.3.0`| + +### trove-classifiers + + +|`trove-classifiers` version|hatchling modules that include it| +| --- | --- | +|2025.5.9.12|`hatchling/1.27.0-GCCcore-14.3.0`| +|2025.2.18.16|`hatchling/1.27.0-GCCcore-14.2.0`| +|2024.5.22|`hatchling/1.24.2-GCCcore-13.3.0`| + +### trove_classifiers + + +|`trove_classifiers` version|hatchling modules that include it| +| --- | --- | +|2023.10.18|`hatchling/1.18.0-GCCcore-13.2.0`| +|2023.5.24|`hatchling/1.18.0-GCCcore-12.3.0`| \ No newline at end of file diff --git a/scripts/available_software/tests/reference_detail/xterm.md b/scripts/available_software/tests/reference_detail/xterm.md new file mode 100644 index 0000000000..b7975652c3 --- /dev/null +++ b/scripts/available_software/tests/reference_detail/xterm.md @@ -0,0 +1,40 @@ +--- +json_ld: + '@context': https://schema.org + '@type': SoftwareApplication + applicationCategory: DeveloperApplication + description: X11 terminal emulator for the X Window System + license: Not confirmed + name: xterm + offers: + '@type': Offer + price: 0 + operatingSystem: LINUX + review: + '@type': Review + author: + '@type': Organization + name: EESSI + reviewBody: Application has been successfully made available on all architectures + supported by EESSI + reviewRating: + '@type': Rating + ratingValue: 5 + softwareRequirements: See https://www.eessi.io/docs/ for how to make EESSI available + on your system + softwareVersion: '[''402'']' + url: https://xterm.dev/ +--- +# xterm + + +X11 terminal emulator for the X Window System + +homepage: [https://xterm.dev/](https://xterm.dev/) + +## Available installations + + +|xterm version|Supported CPU targets|Supported GPU targets|EESSI version|Module| +| --- | --- | --- | --- | --- | +|402|`generic`: `aarch64`, `x86_64`
Arm: `a64fx`, `neoverse_n1`, `neoverse_v1`, `nvidia/grace`
AMD: `zen2`, `zen3`, `zen4`
Intel: `haswell`, `skylake_avx512`, `sapphirerapids`, `icelake`, `cascadelake`
|*(none)*|2025.06|`xterm/402-GCCcore-13.3.0`| \ No newline at end of file diff --git a/scripts/available_software/tests/test_data.py b/scripts/available_software/tests/test_data.py deleted file mode 100644 index ddfdac459e..0000000000 --- a/scripts/available_software/tests/test_data.py +++ /dev/null @@ -1,33 +0,0 @@ -import os -from available_software import modules_eessi, get_unique_software_names - -GENERIC = "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic" -ZEN2 = "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2" - - -class TestData: - # --------------------------- - # Class level setup/teardown - # --------------------------- - path = os.path.dirname(os.path.realpath(__file__)) - - @classmethod - def setup_class(cls): - os.environ["TESTS_PATH"] = cls.path - os.environ["LMOD_CMD"] = cls.path + "/data/lmod_mock.sh" - os.environ["SHELL"] = cls.path + "/data/bash_mock.sh" - os.environ["MOCK_FILE_SWAP"] = cls.path + "/data/data_swap_TARGET.txt" - os.environ["MOCK_FILE_AVAIL_TARGET"] = cls.path + "/data/data_avail_target_simple.txt" - os.environ["MOCK_FILE_AVAIL_TARGET_AMD_INTEL"] = cls.path + "/data/data_avail_target_amd_intel.txt" - - # --------------------------- - # Module tests - # --------------------------- - - def test_data_eessi(self): - sol = modules_eessi() - assert len(sol) == 2 - assert len(sol[GENERIC]) == 13 - assert len(sol[ZEN2]) == 15 - assert list(get_unique_software_names(sol[GENERIC])) == ["Markov", "cfd", "science"] - assert list(get_unique_software_names(sol[ZEN2])) == ["cfd", "llm", "science"] diff --git a/scripts/available_software/tests/test_json.py b/scripts/available_software/tests/test_json.py deleted file mode 100644 index e12d0666bc..0000000000 --- a/scripts/available_software/tests/test_json.py +++ /dev/null @@ -1,77 +0,0 @@ -from available_software import (generate_json_overview_data, - generate_json_overview, - modules_eessi, - generate_json_detailed, - generate_json_detailed_data) -import os -import json - -GENERIC_ARM = "/cvmfs/software.eessi.io/versions/2023.06/software/linux/aarch64/generic" -ZEN2 = "/cvmfs/software.eessi.io/versions/2023.06/software/linux/x86_64/amd/zen2" - - -class TestJSON: - # --------------------------- - # Class level setup/teardown - # --------------------------- - - path = os.path.dirname(os.path.realpath(__file__)) - - @classmethod - def setup_class(cls): - os.environ["TESTS_PATH"] = cls.path - os.environ["LMOD_CMD"] = cls.path + "/data/lmod_mock.sh" - os.environ["MOCK_FILE_SWAP"] = cls.path + "/data/data_swap_TARGET.txt" - os.environ["MOCK_FILE_AVAIL_TARGET"] = cls.path + "/data/data_avail_target_simple.txt" - os.environ["MOCK_FILE_SHOW"] = cls.path + "/data/data_show_science.txt" - - @classmethod - def teardown_class(cls): - if os.path.exists("json_data.json"): - os.remove("json_data.json") - os.remove("json_data_detail.json") - - # --------------------------- - # Markdown tests - # --------------------------- - - def test_json_generate_simple(self): - modules = modules_eessi() - json_data = generate_json_overview_data(modules) - assert len(json_data.keys()) == 3 - assert list(json_data["targets"]) == [GENERIC_ARM, ZEN2] - assert json_data["modules"] == { - "Markov": [1, 0], - "cfd": [1, 1], - "llm": [0, 1], - "science": [1, 1] - } - - def test_json_simple(self): - modules = modules_eessi() - json_path = generate_json_overview(modules, ".") - with open(json_path) as json_data: - data_generated = json.load(json_data) - - with open(self.path + "/data/test_json_simple_sol.json") as json_data: - data_solution = json.load(json_data) - - assert len(data_generated) == 3 - assert data_generated["modules"] == data_solution["modules"] - assert data_generated["targets"] == data_solution["targets"] - - def test_json_detail_simple(self): - modules = modules_eessi() - json_data = generate_json_detailed_data(modules) - json_path = generate_json_detailed(json_data, ".") - assert os.path.exists("json_data_detail.json") - - with open(json_path) as json_data: - data_generated = json.load(json_data) - - with open(self.path + "/data/test_json_simple_sol_detail.json") as json_data: - data_solution = json.load(json_data) - - assert len(data_generated) == 3 - assert data_generated["targets"] == data_solution["targets"] - assert data_generated["software"] == data_solution["software"] diff --git a/scripts/available_software/tests/test_md.py b/scripts/available_software/tests/test_md.py index 02fc16142d..1466672234 100644 --- a/scripts/available_software/tests/test_md.py +++ b/scripts/available_software/tests/test_md.py @@ -1,9 +1,6 @@ -from mdutils.mdutils import MdUtils -from available_software import get_unique_software_names, modules_eessi, generate_table_data, generate_module_table -from available_software import generate_detail_pages +import available_software import os import filecmp -import shutil class TestMarkdown: @@ -15,41 +12,24 @@ class TestMarkdown: @classmethod def setup_class(cls): - os.environ["TESTS_PATH"] = cls.path - os.environ["LMOD_CMD"] = cls.path + "/data/lmod_mock.sh" - os.environ["MOCK_FILE_SWAP"] = cls.path + "/data/data_swap_TARGET.txt" - os.environ["MOCK_FILE_AVAIL_TARGET"] = cls.path + "/data/data_avail_target_simple.txt" + os.environ["AVAIL_SOFTWARE_TEST_DIRECTORY"] = cls.path @classmethod def teardown_class(cls): - if os.path.exists("test_simple.md"): - os.remove("test_simple.md") - if os.path.exists("detailed_md"): - shutil.rmtree("detailed_md") + directory = os.path.join(cls.path, "detail") + if os.path.exists(directory): + for file in os.listdir(directory): + if file.endswith(".md"): + os.remove(os.path.join(directory, file)) # --------------------------- # Markdown tests # --------------------------- - def test_table_generate_simple(self): - simple_data = get_unique_software_names(modules_eessi()) - table_data, col, row = generate_table_data(simple_data) - assert col == 3 - assert row == 5 - assert len(table_data) == 15 - - def test_md_simple(self): - md_file = MdUtils(file_name='test_simple', title='Overview Modules') - simple_data = get_unique_software_names(modules_eessi()) - generate_module_table(simple_data, md_file) - md_file.create_md_file() - assert os.path.exists("test_simple.md") - assert filecmp.cmp(self.path + "/data/test_md_simple_sol.md", "test_simple.md") - def test_md_detailed_template(self): - os.environ["TIME_GENERATED_TEMPLATE"] = "{{ generated_date }}" - os.mkdir('detailed_md') - generate_detail_pages(self.path + "/data/test_json_simple_sol_detail.json", 'detailed_md') - del os.environ["TIME_GENERATED_TEMPLATE"] - assert os.path.exists("detailed_md/science.md") - assert filecmp.cmp(self.path + "/data/test_md_template_detailed_science_sol.md", "detailed_md/science.md") + markdown_target = "detail" + available_software.main() + for markdown_file in os.listdir(os.path.join(self.path, "reference_detail")): + target_markdown_file = os.path.join(self.path, markdown_target, markdown_file) + assert os.path.exists(target_markdown_file) + assert filecmp.cmp(target_markdown_file, os.path.join(self.path, "reference_detail", markdown_file)) diff --git a/scripts/available_software/tests/test_module.py b/scripts/available_software/tests/test_module.py deleted file mode 100644 index 4af33d1782..0000000000 --- a/scripts/available_software/tests/test_module.py +++ /dev/null @@ -1,43 +0,0 @@ -import os -from available_software import module_avail, filter_fn_eessi_modules, module_whatis - - -class TestModule: - # --------------------------- - # Class level setup/teardown - # --------------------------- - path = os.path.dirname(os.path.realpath(__file__)) - - @classmethod - def setup_class(cls): - os.environ["TESTS_PATH"] = cls.path - os.environ["LMOD_CMD"] = cls.path + "/data/lmod_mock.sh" - - # --------------------------- - # Module tests - # --------------------------- - - def test_avail(self): - os.environ["MOCK_FILE_AVAIL"] = self.path + "/data/data_avail_simple_zen2.txt" - output = module_avail() - assert len(output) == 16 - - def test_avail_filtered(self): - os.environ["MOCK_FILE_AVAIL"] = self.path + "/data/data_avail_simple_zen2.txt" - output = module_avail(filter_fn=filter_fn_eessi_modules) - assert len(output) == 15 - assert list(output) == [ - "cfd/1.0", "cfd/2.0", "cfd/3.0", "cfd/24", "cfd/", "cfd/5.0", - "cfd/2.0afqsdf", "llm/20230627", "llm/20230627", "llm/20230627", "science/", - "science/5.3.0", "science/5.3.0", "science/5.3.0", "science/7.2.0" - ] - - def test_whatis(self): - os.environ["MOCK_FILE_SHOW"] = self.path + "/data/data_show_science.txt" - data = module_whatis("science") - assert data == { - "Description": "Bundle for scientific software", - "Homepage": "https://science.com/", - "URL": "https://science.com/", - "Extensions": "ext-1.2.3, ext-2.3.4" - }