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

new file: l/libevent/libevent-2.1.12-GCCcore-14.2.0.eb new file: l/libfabric/libfabric-1.16.1-GCCcore-14.2.0.eb new file: l/libffi/libffi-3.4.5-GCCcore-14.2.0.eb new file: l/libpciaccess/libpciaccess-0.18.1-GCCcore-14.2.0.eb new file: l/libreadline/libreadline-8.2-GCCcore-13.3.0.eb new file: l/libreadline/libreadline-8.2-GCCcore-14.2.0.eb new file: l/libtool/libtool-2.4.7-GCCcore-14.2.0.eb new file: l/libxml2/libxml2-2.12.7-GCCcore-14.2.0.eb new file: m/Meson/Meson-1.4.0-GCCcore-14.2.0.eb new file: n/Ninja/Ninja-1.12.1-GCCcore-14.2.0.eb modified: o/OpenMPI/OpenMPI-5.0.5-GCC-14.2.0.eb new file: p/PMIx/PMIx-5.0.2-GCCcore-14.2.0.eb new file: p/Python/Python-3.12.3-GCCcore-14.2.0.eb new file: s/SQLite/SQLite-3.45.3-GCCcore-14.2.0.eb new file: t/Tcl/Tcl-8.6.14-GCCcore-14.2.0.eb new file: u/UCC/UCC-1.3.0-GCCcore-14.2.0.eb new file: u/UCX/UCX-1.16.0-GCCcore-14.2.0.eb new file: u/UnZip/UnZip-6.0-GCCcore-14.2.0.eb new file: x/xorg-macros/xorg-macros-1.20.1-GCCcore-14.2.0.eb
64 lines
1.7 KiB
Plaintext
64 lines
1.7 KiB
Plaintext
# IT4Innovations
|
|
# LK 2024
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'UCX'
|
|
version = '1.16.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': '14.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.16.0.tar.gz': 'f73770d3b583c91aba5fb07557e655ead0786e057018bfe42f0ebe8716e9d28c'},
|
|
{'UCX-1.13.1-dynamic_modules.patch': '00874687bd90b795fff61aaa183f6c6bea2210aa1003b28f23d9ebf7066f8782'},
|
|
]
|
|
|
|
# Uncomment when updating to final release
|
|
# sources = ['%(namelower)s-%(version)s.tar.gz']
|
|
builddependencies = [
|
|
('binutils', '2.42'),
|
|
('Autotools', '20231222'),
|
|
('pkgconf', '2.2.0'),
|
|
]
|
|
|
|
osdependencies = [OS_PKG_IBVERBS_DEV]
|
|
|
|
dependencies = [
|
|
('zlib', '1.3.1'),
|
|
('numactl', '2.0.18'),
|
|
]
|
|
|
|
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'
|