mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: g/GROMACS/GROMACS-2021-intel-2020b-PLUMED-2.7.2.eb new file: g/GROMACS/GROMACS-4.5.5-intel-2020b.eb new file: p/PLUMED/PLUMED-2.7.2-foss-2020b.eb new file: p/PLUMED/PLUMED-2.7.2-fosscuda-2020b.eb new file: p/Python/Python-3.8.6-GCC-10.2.0-CUDA-11.4.1-NetKet.eb
79 lines
2.3 KiB
Plaintext
79 lines
2.3 KiB
Plaintext
# IT4Innovations
|
|
# LK 2021
|
|
|
|
name = 'GROMACS'
|
|
version = '2021'
|
|
local_plum_ver = '2.7.2'
|
|
versionsuffix = '-PLUMED-%s' % local_plum_ver
|
|
|
|
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 builds.
|
|
|
|
It also contains the gmxapi extension for the single precision MPI build.
|
|
"""
|
|
|
|
toolchain = {'name': 'fosscuda', 'version': '2020b'}
|
|
toolchainopts = {'openmp': True, 'usempi': True}
|
|
|
|
source_urls = [
|
|
'https://ftp.gromacs.org/pub/gromacs/',
|
|
'ftp://ftp.gromacs.org/pub/gromacs/',
|
|
]
|
|
sources = ['gromacs-%(version)s-plumed.tar.gz']
|
|
patches = [
|
|
'GROMACS-2019_fix_omp_num_threads_and_google_test_death_style_in_tests.patch',
|
|
'GROMACS-2019_increase_test_timeout_for_GPU.patch',
|
|
'GROMACS-2021_fix_gmxapi_gmx_allowed_cmd_name.patch',
|
|
'GROMACS-2020.5_fix_threads_gpu_Gmxapitests.patch',
|
|
]
|
|
checksums = [
|
|
'775fee053e128699b4ec5be659d6cbb7', # gromacs-2021-plumed.tar.gz
|
|
# GROMACS-2019_fix_omp_num_threads_and_google_test_death_style_in_tests.patch
|
|
'406f5edd204be812f095a6f07ebc2673c5f6ddf1b1c1428fd336a80b9c629275',
|
|
# GROMACS-2019_increase_test_timeout_for_GPU.patch
|
|
'0d16f53d428155197a0ed0b0974ce03422f199d7c463c4a9156a3b99e3c86234',
|
|
# GROMACS-2021_fix_gmxapi_gmx_allowed_cmd_name.patch
|
|
'b7ffb292ec362e033db1bedd340353f0644dbaae872127750f3dda1ac7e87d49',
|
|
# GROMACS-2020.5_fix_threads_gpu_Gmxapitests.patch
|
|
'89fbb7e2754de45573632c74f53563bb979df9758c949238a35865391d6b53fb',
|
|
]
|
|
|
|
builddependencies = [
|
|
('CMake', '3.18.4'),
|
|
('scikit-build', '0.11.1'),
|
|
]
|
|
|
|
dependencies = [
|
|
('Python', '3.8.6'),
|
|
('SciPy-bundle', '2020.11'),
|
|
('networkx', '2.5'),
|
|
('PLUMED', local_plum_ver),
|
|
]
|
|
|
|
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.2.0', {
|
|
'preinstallopts': "export GMXTOOLCHAINDIR=%(installdir)s/share/cmake/gromacs_mpi && ",
|
|
'checksums': ['3954bf123da12fc60bcfaeed8263f5e2d3e16e5136c2bb5c8207b20fa7406788'],
|
|
}),
|
|
]
|
|
|
|
modextrapaths = {
|
|
'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages',
|
|
}
|
|
|
|
moduleclass = 'bio'
|