easyconfigs-it4i/y/Yambo/Yambo-5.2.3-intel-2020a.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

62 lines
2.1 KiB
Plaintext

# IT4Innovations
# LK 2024
easyblock = 'MakeCp'
name = 'Yambo'
version = '5.2.3'
homepage = 'http://www.yambo-code.org'
description = """Yambo is a FORTRAN/C code for Many-Body calculations in solid state and molecular physics.
Yambo relies on the Kohn-Sham wavefunctions generated by two DFT public codes: abinit, and PWscf."""
toolchain = {'name': 'intel', 'version': '2020a'}
import os
if os.environ.get("CLUSTERNAME") in ["KAROLINA"]:
toolchainopts = {'usempi': True, 'optarch': 'march=core-avx2'}
else:
toolchainopts = {'usempi': True}
source_urls = ['https://github.com/yambo-code/yambo/archive/refs/tags/']
sources = ['%(version)s.tar.gz']
checksums = [
'a6168d1fa820af857ac51217bd6ad26dda4cc89c07e035bd7dc230038ae1ab9c', # 5.2.3
]
dependencies = [
('netCDF-Fortran', '4.5.2'),
('libxc', '5.1.5'),
('IOTK', '1.2.2'),
]
#with_configure = True
#configopts = 'CPPFLAGS="" FCFLAGS="-nofor_main" --with-blas-libs="$LIBBLAS" '
#configopts += '--with-lapack-libs="$LIBLAPACK" --with-blacs-libs="$LIBBLACS" '
#configopts += '--with-scalapack-libs="$LIBSCALAPACK" --with-fft-libs="$LIBFFT" '
#configopts += '--with-netcdf-libs="-lnetcdff -lnetcdf" '
#configopts += '--with-hdf5-path=$EBROOTHDF5 '
#configopts += '--with-libxc-path=$EBROOTLIBXC '
#configopts += '--enable-iotk '
#onfigopts += '--with-iotk-path=$EBROOTIOTK '
#configopts += '--enable-dp --enable-memory-profile --disable-open-mp '
prebuildopts = './configure --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu CPPFLAGS="" FCFLAGS="-nofor_main" --with-blas-libs="$LIBBLAS" --with-lapack-libs="$LIBLAPACK" --with-blacs-libs="$LIBBLACS" --with-scalapack-libs="$LIBSCALAPACK" --with-fft-libs="$LIBFFT" --with-netcdf-libs="-lnetcdff -lnetcdf" --with-hdf5-path=$EBROOTHDF5 --with-libxc-path=$EBROOTLIBXC --enable-iotk --with-iotk-path=$EBROOTIOTK --enable-dp --enable-memory-profile --disable-open-mp && '
buildopts = 'all'
parallel = 1
files_to_copy = [
(['bin/*'], 'bin'),
(['lib/*.a'], 'lib'),
(['include/*'], 'include'),
]
sanity_check_paths = {
'files': ['bin/' + x for x in ['a2y', 'p2y', 'yambo', 'ypp']],
'dirs': []
}
moduleclass = 'phys'