-
Notifications
You must be signed in to change notification settings - Fork 782
{bio}[foss/2025a] GROMACS v2025.2 w/ PLUMED 2.9.4 #25320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
gkaf89
wants to merge
4
commits into
easybuilders:develop
Choose a base branch
from
gkaf89:20260218125017_new_pr_GROMACS20252
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
93 changes: 93 additions & 0 deletions
93
easybuild/easyconfigs/g/GROMACS/GROMACS-2025.2-foss-2025a-PLUMED-2.9.4.eb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,93 @@ | ||
| # This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild | ||
| # | ||
| # Copyright:: Copyright 2012-2016 University of Luxembourg / LCSB, Cyprus Institute / CaSToRC, | ||
| # Ghent University / The Francis Crick Institute | ||
| # Authors:: | ||
| # * Wiktor Jurkowski <wiktor.jurkowski@gmail.com> | ||
| # * Fotis Georgatos <fotis@cern.ch> | ||
| # * George Tsouloupas <g.tsouloupas@cyi.ac.cy> | ||
| # * Kenneth Hoste <kenneth.hoste@ugent.be> | ||
| # * Adam Huffman <adam.huffman@crick.ac.uk> | ||
| # * Ake Sandgren <ake.sandgren@hpc2n.umu.se> | ||
| # * J. Sassmannshausen <Crick HPC team> | ||
| # * Dugan Witherick <dugan.witherick@warwick.ac.uk> | ||
| # * Christoph Siegert <christoph.siegert@uni-leipzig.de> | ||
| # License:: MIT/GPL | ||
|
|
||
| name = 'GROMACS' | ||
| version = '2025.2' | ||
| local_plumedver = '2.9.4' | ||
| versionsuffix = '-PLUMED-%s' % local_plumedver | ||
|
|
||
| homepage = 'https://www.gromacs.org' | ||
| 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 CPU only build, containing both MPI and threadMPI binaries | ||
| for both single and double precision. | ||
|
|
||
| It also contains the gmxapi extension for the single precision MPI build. | ||
| """ | ||
|
|
||
| toolchain = {'name': 'foss', 'version': '2025a'} | ||
| toolchainopts = {'openmp': True, 'usempi': True} | ||
|
|
||
| source_urls = [ | ||
| 'https://ftp.gromacs.org/pub/gromacs/', | ||
| 'ftp://ftp.gromacs.org/pub/gromacs/', | ||
| ] | ||
| sources = [SOURCELOWER_TAR_GZ] | ||
| patches = [ | ||
| 'GROMACS-2023.1_set_omp_num_threads_env_for_ntomp_tests.patch', | ||
| 'GROMACS-2023.1_fix_tests_for_gmx_thread_mpi.patch', | ||
| 'GROMACS-2025.2_workaround-arm-sve512.patch', | ||
| ] | ||
| checksums = [ | ||
| {'gromacs-2025.2.tar.gz': '0df09f9d45a99ef00e66b9baa9493a27e906813763a3b6c7672217c66b43ea11'}, | ||
| {'GROMACS-2023.1_set_omp_num_threads_env_for_ntomp_tests.patch': | ||
| '7f41bda16c9c2837624265dda4be252f655d1288ddc4486b1a2422af30d5d199'}, | ||
| {'GROMACS-2023.1_fix_tests_for_gmx_thread_mpi.patch': | ||
| '6df844bb3bbc51180446a3595c61a4ef195e5f975533a04cef76841aa763aec1'}, | ||
| {'GROMACS-2025.2_workaround-arm-sve512.patch': 'e62e075ee9328f647954365edd7979ea79e6f1d7a3b84834a2aae546cf74772c'}, | ||
| ] | ||
gkaf89 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| builddependencies = [ | ||
| ('CMake', '3.31.3'), | ||
| ('scikit-build-core', '0.11.1'), | ||
| ('pybind11', '2.13.6'), | ||
| ] | ||
|
|
||
| dependencies = [ | ||
| ('Python', '3.13.1'), | ||
| ('SciPy-bundle', '2025.06'), | ||
| ('networkx', '3.5'), | ||
| ('mpi4py', '4.1.0'), | ||
| ('PLUMED', local_plumedver), | ||
| ] | ||
|
|
||
| # be a bit more forgiving w.r.t. timeouts for GROMACS test suite, | ||
| # see also https://gitlab.com/gromacs/gromacs/-/issues/5062 | ||
| configopts = "-DGMX_TEST_TIMEOUT_FACTOR=3" | ||
|
|
||
| exts_defaultclass = 'PythonPackage' | ||
|
|
||
| _gmxapi_source_version = version | ||
|
|
||
| exts_list = [ | ||
| ('gmxapi', '0.5.0a1', { | ||
| 'patches': ['GROMACS-2024.1-fix-gmxapi-version.patch'], | ||
| 'preinstallopts': 'export CMAKE_ARGS="-Dgmxapi_ROOT=%(installdir)s ' + | ||
| '-C %(installdir)s/share/cmake/gromacs_mpi/gromacs-hints_mpi.cmake" && ', | ||
| 'source_tmpl': 'gromacs-%s.tar.gz' % _gmxapi_source_version, | ||
| 'start_dir': 'python_packaging/gmxapi', | ||
| 'checksums': [ | ||
| {'gromacs-2025.2.tar.gz': '0df09f9d45a99ef00e66b9baa9493a27e906813763a3b6c7672217c66b43ea11'}, | ||
| {'GROMACS-2024.1-fix-gmxapi-version.patch': | ||
| 'df30b21352a26d8e01d693e2822db0ea45015c23f900a6ceb68522d44e6e790c'}, | ||
| ], | ||
| }), | ||
| ] | ||
|
|
||
| moduleclass = 'bio' | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.