easyconfigs-it4i/u/UCX/UCX-1.15.0-GCCcore-13.2.0.eb
Lukas Krupcik 65417ffe00 new file: a/Autoconf/Autoconf-2.72-GCCcore-14.2.0.eb
new file:   a/Autotools/Autotools-20231222-GCCcore-14.2.0.eb
	new file:   b/bzip2/bzip2-1.0.8-GCCcore-14.2.0.eb
	new file:   c/CMake/CMake-3.30.5-GCCcore-14.2.0.eb
	new file:   c/cURL/cURL-8.7.1-GCCcore-14.2.0.eb
	new file:   h/hwloc/hwloc-2.10.0-GCCcore-14.2.0.eb
	new file:   l/libarchive/libarchive-3.7.4-GCCcore-14.2.0.eb
	new file:   n/NVHPC/NVHPC-24.3.eb
	new file:   n/ncurses/ncurses-6.5-GCCcore-14.2.0.eb
	new file:   n/numactl/numactl-2.0.18-GCCcore-13.3.0.eb
	new file:   o/OpenMPI/OpenMPI-4.1.6-NVHPC-24.3.eb
	new file:   o/OpenMPI/OpenMPI-5.0.5-GCC-14.2.0.eb
	new file:   p/Perl/Perl-5.38.2-GCCcore-14.2.0.eb
	new file:   p/pkgconf/pkgconf-2.2.0-GCCcore-14.2.0.eb
	new file:   u/UCC/UCC-1.2.0-GCCcore-13.2.0.eb
	modified:   u/UCX/UCX-1.15.0-GCCcore-13.2.0.eb
	new file:   x/XZ/XZ-5.4.5-GCCcore-14.2.0.eb
2024-10-18 11:04:27 +02:00

64 lines
1.7 KiB
Plaintext

# IT4Innovations
# LK 2024
easyblock = 'ConfigureMake'
name = 'UCX'
version = '1.15.0'
homepage = 'https://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': '13.2.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.13.1-dynamic_modules.patch',
]
checksums = [
{'ucx-1.15.0.tar.gz': '4b202087076bc1c98f9249144f0c277a8ea88ad4ca6f404f94baa9cb3aebda6d'},
{'UCX-1.13.1-dynamic_modules.patch': '00874687bd90b795fff61aaa183f6c6bea2210aa1003b28f23d9ebf7066f8782'},
]
# Uncomment when updating to final release
# sources = ['%(namelower)s-%(version)s.tar.gz']
builddependencies = [
('binutils', '2.40'),
('Autotools', '20220317'),
('pkgconf', '2.0.3'),
]
osdependencies = [OS_PKG_IBVERBS_DEV]
dependencies = [
('zlib', '1.2.13'),
('numactl', '2.0.16'),
]
configure_cmd = "contrib/configure-release"
configopts = '--enable-optimizations --enable-cma --enable-mt --with-verbs '
configopts += '--without-java --without-go --disable-doxygen-doc '
import os
if os.environ.get("CLUSTERNAME") in ["BARBORA"]:
configopts += '--with-xpmem --with-knem=/opt/knem-1.1.4.90mlnx1'
if os.environ.get("CLUSTERNAME") in ["KAROLINA"]:
configopts += '--with-xpmem --with-knem=/opt/knem-1.1.4.90mlnx3'
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'