mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

new file: n/NAMD/NAMD-2.9-intel-2017c-mpi.eb new file: p/PSI4/PSI4-1.3.2-intel-2020a-Python-3.8.2-karolina.eb new file: p/pybind11/pybind11-2.7.1-GCCcore-10.2.0.eb modified: p/pytest/pytest-6.0.1-intel-2020a-Python-3.8.2.eb new file: s/SciPy-bundle/SciPy-bundle-2020.03-AOCC-3.1.0-OAMD-2021a.eb new file: s/SciPy-bundle/test-SciPy-bundle-2021.10-AOCC-3.1.0-OAMD-2021a.eb
28 lines
912 B
Plaintext
28 lines
912 B
Plaintext
name = 'NAMD'
|
|
version = '2.9'
|
|
versionsuffix = '-mpi'
|
|
|
|
homepage = 'http://www.ks.uiuc.edu/Research/namd/'
|
|
description = """NAMD is a parallel molecular dynamics code designed for high-performance simulation of large biomolecular systems."""
|
|
|
|
# AMD/intel cpu
|
|
toolchain = {'name': 'intel', 'version': '2017c'}
|
|
import os
|
|
if os.environ.get("CLUSTERNAME") in ["KAROLINA"]:
|
|
toolchainopts = {'opt': True, 'pic': True, 'usempi': True, 'optarch': 'march=core-avx2'}
|
|
# prebuildopts = "echo %(builddir)s && while read i; do echo $i; sed 's|-xHost|-march=core-avx2|g' -i $i; done < <(grep xHost %(builddir)s -R | cut -d ':' -f 1 | sort -u) && "
|
|
else:
|
|
toolchainopts = {'opt': True, 'pic': True, 'usempi': True}
|
|
|
|
|
|
sources = ['NAMD_%(version)s_Source.tar.gz']
|
|
|
|
dependencies = [
|
|
('Tcl', '8.6.7', '', ('GCC', '6.3.0-2.27')),
|
|
('FFTW', '3.3.8', '', True),
|
|
]
|
|
|
|
charm_arch = 'mpi-linux-x86_64'
|
|
|
|
moduleclass = 'chem'
|