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

new file: a/ASE/ASE-3.21.1-intel-2020a.eb new file: c/CMake/CMake-3.18.4-GCCcore-9.3.0.eb new file: c/cURL/cURL-7.72.0-GCCcore-9.3.0.eb new file: e/Eigen/Eigen-3.3.8-GCCcore-9.3.0.eb new file: f/freetype/freetype-2.10.3-GCCcore-9.3.0.eb new file: g/GPAW-setups/GPAW-setups-0.9.20000.eb new file: g/GPAW/GPAW-21.1.0-intel-2020a-ASE-3.21.1.eb new file: g/GPAW/GPAW-21.1.0-intel-2020a-Py-3.7.eb new file: h/hypothesis/hypothesis-5.41.2-GCCcore-9.3.0.eb new file: i/iccifort/iccifort-2020.4.304.eb new file: l/libarchive/libarchive-3.4.3-GCCcore-9.3.0.eb new file: l/libjpeg-turbo/libjpeg-turbo-2.0.5-GCCcore-9.3.0.eb new file: m/matplotlib/matplotlib-3.3.3-intel-2020a.eb new file: n/NASM/NASM-2.15.05-GCCcore-9.3.0.eb new file: o/OpenMPI/OpenMPI-4.0.5-GCC-10.2.0.eb new file: p/Pillow/Pillow-8.0.1-GCCcore-9.3.0.eb new file: p/Python/Python-3.8.6-GCCcore-9.3.0.eb new file: p/pybind11/pybind11-2.6.0-GCCcore-9.3.0.eb new file: s/SQLite/SQLite-3.33.0-GCCcore-9.3.0.eb new file: s/SciPy-bundle/SciPy-bundle-2020.11-intel-2020a.eb new file: s/spglib-python/spglib-python-1.16.0-intel-2020a.eb new file: t/Tkinter/Tkinter-3.8.6-GCCcore-9.3.0.eb
55 lines
1.7 KiB
Plaintext
55 lines
1.7 KiB
Plaintext
# IT4Innovations 2021
|
|
# LK
|
|
|
|
easyblock = "PythonPackage"
|
|
|
|
name = 'GPAW'
|
|
version = '21.1.0'
|
|
_aseversion = '3.21.1'
|
|
versionsuffix = '-ASE-' + _aseversion
|
|
|
|
homepage = 'https://wiki.fysik.dtu.dk/gpaw/'
|
|
description = """GPAW is a density-functional theory (DFT) Python code based on the projector-augmented wave (PAW)
|
|
method and the atomic simulation environment (ASE). It uses real-space uniform grids and multigrid methods or
|
|
atom-centered basis-functions."""
|
|
|
|
toolchain = {'name': 'intel', 'version': '2020a'}
|
|
toolchainopts = {'usempi': True, 'openmp': False}
|
|
|
|
source_urls = [PYPI_LOWER_SOURCE]
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
patches = [
|
|
('GPAW-20.1.0-Add-Easybuild-configuration-files.patch', 1),
|
|
]
|
|
checksums = [
|
|
'96843b68e04bd1c12606036c9f99b0ddfa5e6ee08ce46835e6bb347a6bd560a3', # gpaw-21.1.0.tar.gz
|
|
# GPAW-20.1.0-Add-Easybuild-configuration-files.patch
|
|
'a12440bf63af70b891a63989b0f048bb8ebf4f60499020ea09259937f04cd042',
|
|
]
|
|
|
|
dependencies = [
|
|
('Python', '3.8.6'),
|
|
('SciPy-bundle', '2020.11'),
|
|
('ASE', _aseversion),
|
|
('libxc', '4.3.4'),
|
|
('GPAW-setups', '0.9.20000', '', True),
|
|
]
|
|
|
|
prebuildopts = 'GPAW_CONFIG=doc/platforms/Linux/EasyBuild/config_intel.py'
|
|
preinstallopts = prebuildopts
|
|
|
|
download_dep_fail = True
|
|
use_pip = True
|
|
sanity_pip_check = True
|
|
|
|
# required because we're building a Python package using Intel compilers on top of Python built with GCC.
|
|
check_ldshared = True
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/gpaw%s' % x for x in ['', '-analyse-basis', '-basis', '-plot-parallel-timings',
|
|
'-runscript', '-setup', '-upfplot']],
|
|
'dirs': ['lib/python%(pyshortver)s/site-packages']
|
|
}
|
|
|
|
moduleclass = 'chem'
|