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

new file: d/deepdiff/deepdiff-4.0.6-GCCcore-9.3.0-Python-3.8.2.eb modified: h/HDF5/HDF5-1.10.6-intel-2020a-parallel.eb new file: h/h5py/h5py-2.10.0-intel-2020a.eb new file: i/iccifort/iccifort-2020.1.217.eb new file: i/iimpi/iimpi-2020a.eb.old new file: i/intel/intel-2020a.eb.old modified: l/libxc/libxc-4.3.4-intel-2020a.eb modified: m/METIS/METIS-5.1.0-intel-2020a.eb modified: m/Molden/Molden-6.3-intel-2020a.eb modified: n/netCDF/netCDF-4.7.3-intel-2020a.eb new file: n/networkx/networkx-2.4-intel-2020a-Python-3.8.2.eb new file: o/OpenFOAM/OpenFOAM-v2006-intel-2020a.eb modified: p/PETSc/PETSc-3.12.4-intel-2020a.eb new file: p/PSI4/PSI4-1.3.2-intel-2020a-Py-3.8.2.eb new file: p/pytest/pytest-6.0.1-Python-3.7.8.eb new file: p/pytest/pytest-6.0.1-Python-3.8.2.eb modified: q/QMCPACK/QMCPACK-3.9.1-intel-2020a.eb modified: r/RELION/RELION-3.1.0-intel-2020a.eb modified: s/SCOTCH/SCOTCH-6.0.9-foss-2020a.eb new file: s/SciPy-bundle/SciPy-bundle-2020.03-intel-2020a-Python-3.7.8.eb modified: s/Score-P/Score-P-6.0-intel-2020a.eb modified: s/SuiteSparse/SuiteSparse-5.6.0-intel-2020a-METIS-5.1.0.eb new file: u/UCX/UCX-1.8.0-GCCcore-9.3.0.eb new file: v/VTK/VTK-8.2.0-intel-2020a-Python-3.7.8.eb deleted: i/iimpi/iimpi-2020a.eb deleted: i/intel/intel-2020a.eb deleted: u/UCX/UCX-1.8.1-GCC-9.3.0.eb deleted: u/UCX/UCX-1.8.1-GCCcore-8.3.0.eb deleted: v/VTK/VTK-8.2.0-intel-2020a-Py-3.7.eb
60 lines
1.6 KiB
Plaintext
60 lines
1.6 KiB
Plaintext
# IT4Innovations 2020
|
|
# LK
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'UCX'
|
|
version = '1.8.0'
|
|
|
|
homepage = 'http://www.openucx.org/'
|
|
description = """Unified Communication X
|
|
An open-source production grade communication framework for data centric
|
|
and high-performance applications
|
|
"""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '9.3.0'}
|
|
toolchainopts = {'pic': True}
|
|
|
|
source_urls = ['https://github.com/openucx/ucx/releases/download/v%(version)s']
|
|
sources = ['%(namelower)s-%(version)s.tar.gz']
|
|
patches = [
|
|
'UCX-1.7.0_binutils_2.34_api_fix.patch',
|
|
'UCX-1.8.0_fix-undefined-symbol.patch',
|
|
]
|
|
checksums = [
|
|
'e400f7aa5354971c8f5ac6b881dc2846143851df868088c37d432c076445628d', # ucx-1.8.0.tar.gz
|
|
'c09ebe4d734d520ae23f56d95ba0b91e464a42ccbaf435675424515ebd3fa3a9', # UCX-1.7.0_binutils_2.34_api_fix.patch
|
|
'eb757242ab3eecd8a851f329cb4baf3c64d46788ab61675f29ab4cc6a0274a45', # UCX-1.8.0_fix-undefined-symbol.patch
|
|
]
|
|
|
|
builddependencies = [
|
|
('binutils', '2.34'),
|
|
('Autotools', '20180311'),
|
|
('pkg-config', '0.29.2'),
|
|
]
|
|
|
|
osdependencies = [('libibverbs-dev', 'libibverbs-devel', 'rdma-core-devel')]
|
|
|
|
dependencies = [
|
|
('numactl', '2.0.13'),
|
|
]
|
|
|
|
preconfigopts = 'autoreconf && '
|
|
configopts = '--enable-optimizations --enable-cma --enable-mt --with-verbs '
|
|
configopts += '--without-java --disable-doxygen-doc '
|
|
|
|
buildopts = 'V=1'
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/ucx_info', 'bin/ucx_perftest', 'bin/ucx_read_profile'],
|
|
'dirs': ['include', 'lib', 'share']
|
|
}
|
|
|
|
sanity_check_commands = ["ucx_info -d"]
|
|
|
|
modextravars = {
|
|
'UCX_TLS': 'rc,ud,sm,self',
|
|
}
|
|
|
|
moduleclass = 'lib'
|