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

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
48 lines
1.5 KiB
Plaintext
48 lines
1.5 KiB
Plaintext
# IT4Innovations
|
|
# LK 2024
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'hwloc'
|
|
version = '2.10.0'
|
|
|
|
homepage = 'https://www.open-mpi.org/projects/hwloc/'
|
|
|
|
description = """
|
|
The Portable Hardware Locality (hwloc) software package provides a portable
|
|
abstraction (across OS, versions, architectures, ...) of the hierarchical
|
|
topology of modern architectures, including NUMA memory nodes, sockets, shared
|
|
caches, cores and simultaneous multithreading. It also gathers various system
|
|
attributes such as cache and memory information as well as the locality of I/O
|
|
devices such as network interfaces, InfiniBand HCAs or GPUs. It primarily
|
|
aims at helping applications with gathering information about modern computing
|
|
hardware so as to exploit it accordingly and efficiently.
|
|
"""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '14.2.0'}
|
|
|
|
source_urls = ['https://www.open-mpi.org/software/hwloc/v%(version_major_minor)s/downloads/']
|
|
sources = [SOURCE_TAR_GZ]
|
|
checksums = ['c7fd8a1404a9719c76aadc642864b9f77aed1dc1fc8882d6af861a9260ba240d']
|
|
|
|
builddependencies = [
|
|
('binutils', '2.42'),
|
|
]
|
|
|
|
dependencies = [
|
|
('numactl', '2.0.18'),
|
|
('libxml2', '2.12.7'),
|
|
('libpciaccess', '0.18.1'),
|
|
]
|
|
|
|
configopts = "--disable-cairo --disable-opencl --disable-cuda --disable-nvml --disable-gl --disable-libudev "
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/lstopo', 'include/hwloc/linux.h',
|
|
'lib/libhwloc.%s' % SHLIB_EXT],
|
|
'dirs': ['share/man/man3'],
|
|
}
|
|
sanity_check_commands = ['lstopo']
|
|
|
|
moduleclass = 'system'
|