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

new file: d/DFTB+/DFTB+-21.1-intel-2020b-Python-3.8.6-karolina.eb new file: h/HDF5/HDF5-1.10.6-OAMD-2021a-parallel.eb new file: h/h5py/h5py-3.1.0-intel-2020b.eb modified: m/MATLAB/MATLAB-2021a.eb new file: o/OpenMPI/OpenMPI-4.0.6-NVHPC-21.9-CUDA-11.4.1-v2.eb new file: q/QMCPACK/QMCPACK-3.11.0-AOCC-3.1.0-OpenMPI-4.1.1-Python-3.8.6.eb new file: s/SciPy-bundle/SciPy-bundle-2020.11-AOCC-3.1.0.eb new file: s/Szip/Szip-2.1.1-OAMD-2021a.eb new file: z/zlib/zlib-1.2.11-OAMD-2021a.eb
32 lines
925 B
Plaintext
32 lines
925 B
Plaintext
# IT4Innovations 2021
|
|
# LK
|
|
|
|
name = 'HDF5'
|
|
version = '1.10.6'
|
|
versionsuffix = '-parallel'
|
|
|
|
homepage = 'http://www.hdfgroup.org/HDF5/'
|
|
description = """HDF5 is a unique technology suite that makes possible the management of
|
|
extremely large and local_complex data collections."""
|
|
|
|
toolchain = {'name': 'OAMD', 'version': '2021a'}
|
|
toolchainopts = {'pic': True, 'usempi': True}
|
|
|
|
source_urls = [
|
|
'https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-%(version_major_minor)s/hdf5-%(version)s/src']
|
|
sources = [SOURCELOWER_TAR_GZ]
|
|
|
|
# AMD/intel cpu
|
|
import os
|
|
if os.environ.get("CLUSTERNAME") in ["KAROLINA"]:
|
|
prebuildopts = "echo %(builddir)s && while read i; do echo $i; sed 's|-xHost|-avx2|g' -i $i; done < <(grep xHost %(builddir)s -R | cut -d ':' -f 1 | sort -u) && "
|
|
|
|
configopts = '--enable-fortran --enable-fortran 2003 --enable-cxx'
|
|
|
|
dependencies = [
|
|
('zlib', '1.2.11'),
|
|
('Szip', '2.1.1'),
|
|
]
|
|
|
|
moduleclass = 'data'
|