mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-10 17:02:11 +01:00

modified: d/Dakota/Dakota-6.15.0-intel-2021b.eb new file: e/Extrae/Extrae-3.8.3-gompi-2021a.eb new file: f/FoX/FoX-4.1.2-intel-2020b.eb new file: g/GROMACS/GROMACS-2022-fosscuda-2020b.eb new file: h/HDF5/HDF5-1.10.7-gompi-2021a.eb new file: l/libxc/libxc-5.1.3-intel-2020b.eb new file: p/PLUMED/PLUMED-2.8.0-fosscuda-2020b.eb modified: p/Paraver/Paraver-4.10.0-foss-2021a.eb new file: q/QMCPACK/QMCPACK-3.14.0-foss-2021a-Python-3.9.5.eb new file: q/QMCPACK/QMCPACK-3.14.0-intel-2020b-Python-3.8.6-test.eb new file: q/QMCPACK/QMCPACK-3.14.0-intel-2020b-Python-3.8.6.eb new file: q/QuantumESPRESSO/QuantumESPRESSO-7.0-intel-2020b-forQMCPACK.eb new file: q/QuantumESPRESSO/QuantumESPRESSO-7.0-intel-2020b-test.eb new file: q/QuantumESPRESSO/QuantumESPRESSO-intel-2020b-forQMCPACK-fix-UtilXlib-Makefile-tab.patch new file: s/SDE/SDE-9.0.0.eb
76 lines
2.0 KiB
Plaintext
76 lines
2.0 KiB
Plaintext
# IT4Innovations
|
|
# LK JK 2022
|
|
# WIP
|
|
|
|
name = 'GROMACS'
|
|
version = '2022'
|
|
#local_plum_ver = '2.8.0' # no support for GROMACS 2022 yet
|
|
#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'}
|
|
import os
|
|
if os.environ.get("CLUSTERNAME") in ["KAROLINA"]:
|
|
toolchainopts = {'openmp': True, 'usempi': True, 'optarch': 'march=core-avx2', 'pic': True}
|
|
else:
|
|
toolchainopts = {'openmp': True, 'usempi': True, 'pic': True}
|
|
|
|
source_urls = [
|
|
'https://ftp.gromacs.org/pub/gromacs/',
|
|
'ftp://ftp.gromacs.org/pub/gromacs/',
|
|
]
|
|
sources = [SOURCELOWER_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-2021.5_fix_threads_gpu_Gmxapitests.patch',
|
|
]
|
|
|
|
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',
|
|
}
|
|
|
|
cuda_compute_capabilities = ['3.5', '3.7', '5.2', '6.0', '6.1', '7.0', '7.2', '7.5', '8.0']
|
|
|
|
moduleclass = 'bio'
|