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

new file: m/magic/magic-0.4.24-GCCcore-10.2.0-Python-3.8.6.eb modified: n/NVHPC/NVHPC-21.9.eb new file: o/OpenMPI/OpenMPI-4.0.7-GCC-10.2.0-UCX-1.11.2-CUDA-11.4.1.eb new file: o/OpenMPI/OpenMPI-4.0.7-GCC-9.3.0-UCX-1.9.0-CUDA-11.4.1.eb new file: p/poppler/poppler-21.06.1-GCC-10.2.0.eb new file: s/s3cmd/s3cmd-2.1.0-GCCcore-10.2.0-Python-3.8.6.eb new file: t/texlive/texlive-20210325-GCCcore-10.2.0.eb new file: u/UCX/UCX-1.11.2-GCC-10.2.0-CUDA-11.4.1.eb new file: u/UCX/UCX-1.9.0-GCC-9.3.0-CUDA-11.4.1.eb new file: u/UCX/UCX-1.9.0-NVHPC-21.9-CUDA-11.4.1.eb new file: u/UCX/UCX-1.9.0-NVHPC-21.9-GCC-9.3.0-CUDA-11.4.1.eb
50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
# IT4Innovations 2021
|
|
# LK
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'UCX'
|
|
version = '1.9.0'
|
|
versionsuffix= '-CUDA-11.4.1'
|
|
|
|
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': 'GCC', '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 = ['%(name)s-%(version)s-m4.patch']
|
|
|
|
builddependencies = [
|
|
('Autotools', '20200321'),
|
|
('pkg-config', '0.29.2'),
|
|
]
|
|
|
|
osdependencies = [OS_PKG_IBVERBS_DEV]
|
|
|
|
dependencies = [
|
|
('numactl', '2.0.13'),
|
|
('CUDAcore', '11.4.1', '', True),
|
|
]
|
|
|
|
configure_cmd = "contrib/configure-release"
|
|
|
|
configopts = '--enable-optimizations --enable-cma --enable-mt --with-verbs --with-gdrcopy=/usr/src/gdrdrv-2.3 '
|
|
configopts += '--without-java --disable-doxygen-doc --with-cuda=$EBROOTCUDACORE'
|
|
|
|
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"]
|
|
|
|
moduleclass = 'lib'
|