easyconfigs-it4i/q/QuantumESPRESSO/QuantumESPRESSO-7.3-intel-2021a.eb
Lukas Krupcik 914c775b08 new file: b/Boost.Python-NumPy/Boost.Python-NumPy-1.83.0-gfbf-2023b.eb
modified:   b/Boost/Boost-1.77.0-gompi-2021a.eb
	modified:   c/CMake/CMake-3.16.2.eb
	new file:   e/ELPA/ELPA-2019.11.001-intel-2021a.eb
	modified:   e/ELPA/ELPA-2023.11.001-intel-2023b.eb
	modified:   h/HDF5/HDF5-1.10.6-intel-2020a.eb
	modified:   i/IOTK/IOTK-1.2.2-intel-2020a.eb
	modified:   j/Java/Java-1.8.0_221.eb
	modified:   n/NVHPC/NVHPC-21.9.eb
	modified:   n/netCDF-Fortran/netCDF-Fortran-4.5.2-intel-2020a.eb
	modified:   n/netCDF/netCDF-4.7.3-intel-2020a.eb
	new file:   p/PETSc/PETSc-3.21.2-foss-2022b.eb
	new file:   p/petsc4py/petsc4py-3.21.2-foss-2022b.eb
	modified:   q/QMCPACK/QMCPACK-3.14.0-foss-2021a-Python-3.9.5.eb
	new file:   q/QuantumESPRESSO/QuantumESPRESSO-6.7-intel-2020a-MaX.eb
	new file:   q/QuantumESPRESSO/QuantumESPRESSO-7.2-intel-2021a.eb
	new file:   q/QuantumESPRESSO/QuantumESPRESSO-7.3-intel-2021a.eb
	new file:   q/QuantumESPRESSO/QuantumESPRESSO-7.3.1-intel-2023b-gpu.eb
	new file:   s/SLEPc/SLEPc-3.21.1-foss-2022b.eb
	new file:   s/slepc4py/slepc4py-3.21.1-foss-2022b.eb
	new file:   s/sqsgenerator/sqsgenerator-0.3-conda.eb
	modified:   s/sqsgenerator/sqsgenerator-0.3-foss-2023b-Python-3.11.5.eb
	new file:   y/Yambo/Yambo-5.2.3-intel-2020a.eb
2024-06-12 11:09:38 +02:00

57 lines
2.0 KiB
Plaintext

# IT4Innovations
# LK 2024
name = 'QuantumESPRESSO'
version = '7.3'
homepage = 'https://www.quantum-espresso.org'
description = """Quantum ESPRESSO is an integrated suite of computer codes
for electronic-structure calculations and materials modeling at the nanoscale.
It is based on density-functional theory, plane waves, and pseudopotentials
(both norm-conserving and ultrasoft).
"""
toolchain = {'name': 'intel', 'version': '2021a'}
import os
if os.environ.get("CLUSTERNAME") in ["KAROLINA"]:
toolchainopts = {'usempi': True, 'openmp': True, 'optarch': 'march=core-avx2'}
else:
toolchainopts = {'usempi': True, 'openmp': True}
if os.environ.get("CLUSTERNAME") in ["KAROLINA"]:
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) && "
source_urls = [
'https://github.com/QEF/q-e/releases/download/qe-%(version)s.0/',
'https://github.com/dceresoli/qe-gipaw/archive/',
'https://github.com/wannier-developers/wannier90/archive/',
'https://github.com/QEF/q-e/archive/refs/tags/'
]
sources = [
'qe-%(version)s.tar.gz',
{'filename': 'qe-gipaw-%(version)s.tar.gz', 'download_filename': '%(version)s.tar.gz'},
{'filename': 'wannier90-3.1.0.tar.gz', 'download_filename': 'v3.1.0.tar.gz'},
]
checksums = [
'edc2a0f3315c69966df4f82ec86ab9f682187bc9430ef6d2bacad5f27f08972c', # qe-%(version)s.tar.gz
'ef5bc80172a3f0b2631120a17fb7caeb95c6b9ac98dcbbcec0d98b7ca871e8ca', # qe-gipaw-%(version)s.tar.gz
'40651a9832eb93dec20a8360dd535262c261c34e13c41b6755fa6915c936b254', # wannier90-3.1.0.tar.gz
]
dependencies = [
('HDF5', '1.10.7'),
('ELPA', '2021.05.001'),
('libxc', '5.1.5'),
]
# The third party packages should be installed separately and added as
# dependencies. The exception is w90, which is force built, and gipaw
# which depends on qe source
buildopts = 'all gwl xspectra couple epw gipaw w90'
# parallel build tends to fail
parallel = 1
moduleclass = 'chem'