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
70 lines
2.1 KiB
Plaintext
70 lines
2.1 KiB
Plaintext
# IT4Innovations
|
|
# LK 2024
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'libfabric'
|
|
version = '1.16.1'
|
|
|
|
homepage = 'https://ofiwg.github.io/libfabric/'
|
|
description = """
|
|
Libfabric is a core component of OFI. It is the library that defines and exports
|
|
the user-space API of OFI, and is typically the only software that applications
|
|
deal with directly. It works in conjunction with provider libraries, which are
|
|
often integrated directly into libfabric.
|
|
"""
|
|
|
|
# The psm3 provider (enabled by default) requires an AVX capable system to run
|
|
toolchain = {'name': 'GCCcore', 'version': '14.2.0'}
|
|
toolchainopts = {'pic': True}
|
|
|
|
source_urls = ['https://github.com/ofiwg/libfabric/releases/download/v%(version)s']
|
|
sources = [SOURCE_TAR_BZ2]
|
|
patches = [
|
|
'%(name)s-1.12.1_disable-psm3-avx-config.patch',
|
|
]
|
|
checksums = [
|
|
{'libfabric-1.16.1.tar.bz2': '53f992d33f9afe94b8a4ea3d105504887f4311cf4b68cea99a24a85fcc39193f'},
|
|
{'libfabric-1.12.1_disable-psm3-avx-config.patch':
|
|
'129be05a824b41eeb7bddac3c23aa421a13f7dde622948df942a265ccc96125a'},
|
|
]
|
|
|
|
builddependencies = [
|
|
('binutils', '2.42'),
|
|
('pkgconf', '2.2.0'),
|
|
('Autotools', '20231222'),
|
|
]
|
|
|
|
dependencies = [
|
|
('numactl', '2.0.18'),
|
|
# PSM2 dependency for libfabric should be used on Omnipath systems,
|
|
# but that PSM2 has CUDA as dependency so it's commented out by default;
|
|
# PSM2 only compiles on x86_64
|
|
# ('PSM2', {'arch=x86_64': '12.0.1', 'arch=*': False}),
|
|
]
|
|
|
|
osdependencies = [OS_PKG_IBVERBS_DEV]
|
|
|
|
# Regenerate build files to pick up psm3-axv-config patch
|
|
preconfigopts = "./autogen.sh &&"
|
|
|
|
# Disable deprecated "sockets" provider
|
|
configopts = "--disable-sockets "
|
|
|
|
# Disable usNIC provider by default as this requires specific osdependencies
|
|
# If you want to enable this provider you need to uncomment the following line:
|
|
# osdependencies.append(('libnl3-devel', 'libnl3-dev'))
|
|
configopts += "--disable-usnic "
|
|
|
|
buildopts = "V=1"
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/fi_info', 'bin/fi_pingpong', 'bin/fi_strerror'] +
|
|
['lib/libfabric.%s' % x for x in ['a', SHLIB_EXT]],
|
|
'dirs': ['include/rdma', 'lib/pkgconfig', 'share']
|
|
}
|
|
|
|
sanity_check_commands = ['fi_info']
|
|
|
|
moduleclass = 'lib'
|