forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: GROMACS-2024.3-foss-2023b-CUDA-12.4.0.eb
- Loading branch information
Showing
1 changed file
with
91 additions
and
0 deletions.
There are no files selected for viewing
91 changes: 91 additions & 0 deletions
91
easybuild/easyconfigs/g/GROMACS/GROMACS-2024.3-foss-2023b-CUDA-12.4.0.eb
This file contains 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,91 @@ | ||
# 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 <[email protected]> | ||
# * Fotis Georgatos <[email protected]> | ||
# * George Tsouloupas <[email protected]> | ||
# * Kenneth Hoste <[email protected]> | ||
# * Adam Huffman <[email protected]> | ||
# * Ake Sandgren <[email protected]> | ||
# * J. Sassmannshausen <Crick HPC team> | ||
# * Dugan Witherick <[email protected]> | ||
# * Christoph Siegert <[email protected]> | ||
# License:: MIT/GPL | ||
|
||
name = 'GROMACS' | ||
version = '2024.3' | ||
versionsuffix = '-CUDA-%(cudaver)s' | ||
|
||
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 GPU enabled build, containing both MPI and threadMPI binaries. | ||
It also contains the gmxapi extension for the single precision MPI build. | ||
""" | ||
|
||
toolchain = {'name': 'foss', 'version': '2023b'} | ||
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', | ||
] | ||
checksums = [ | ||
{'gromacs-2024.3.tar.gz': 'bbda056ee59390be7d58d84c13a9ec0d4e3635617adf2eb747034922cba1f029'}, | ||
{'GROMACS-2023.1_set_omp_num_threads_env_for_ntomp_tests.patch': | ||
'7f41bda16c9c2837624265dda4be252f655d1288ddc4486b1a2422af30d5d199'}, | ||
{'GROMACS-2023.1_fix_tests_for_gmx_thread_mpi.patch': | ||
'6df844bb3bbc51180446a3595c61a4ef195e5f975533a04cef76841aa763aec1'}, | ||
] | ||
|
||
builddependencies = [ | ||
('CMake', '3.27.6'), | ||
('scikit-build-core', '0.9.3'), | ||
] | ||
|
||
dependencies = [ | ||
('CUDA', '12.4.0', '', SYSTEM), | ||
('UCX-CUDA', '1.15.0', versionsuffix), | ||
('Python', '3.11.5'), | ||
('SciPy-bundle', '2023.11'), | ||
('networkx', '3.2.1'), | ||
('mpi4py', '3.1.5'), | ||
] | ||
|
||
# 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' | ||
|
||
exts_default_options = { | ||
'source_urls': [PYPI_SOURCE], | ||
'use_pip': True, | ||
'download_dep_fail': True, | ||
'sanity_pip_check': True, | ||
} | ||
|
||
exts_list = [ | ||
('gmxapi', '0.4.2', { | ||
'preinstallopts': 'export CMAKE_ARGS="-Dgmxapi_ROOT=%(installdir)s ' + | ||
'-C %(installdir)s/share/cmake/gromacs_mpi/gromacs-hints_mpi.cmake" && ', | ||
'checksums': ['c746c6498c73a75913d7fcb01c13cc001d4bcb82999e9bf91d63578565ed1a1f'], | ||
}), | ||
] | ||
|
||
modextrapaths = { | ||
'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages', | ||
} | ||
|
||
moduleclass = 'bio' |