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

new file: g/GDRCopy/GDRCopy-2.1-GCCcore-10.2.0-CUDA-11.6.0.eb new file: h/hwloc/hwloc-1.11.6-GCCcore-12.2.0.eb new file: m/MVAPICH2/MVAPICH2-2.2-GCC-9.3.0.eb new file: o/OpenMPI/OpenMPI-2.1.0-GCC-12.2.0.eb modified: o/OpenMX/OpenMX-3.9-foss-2022b.eb modified: u/UCX/UCX-1.12.0-GCC-10.2.0-CUDA-11.6.0.eb
46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
easyblock = 'ConfigureMake'
|
|
|
|
name = 'hwloc'
|
|
version = '1.11.6'
|
|
|
|
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': '12.2.0'}
|
|
|
|
source_urls = ['https://www.open-mpi.org/software/hwloc/v%(version_major_minor)s/downloads/']
|
|
sources = [SOURCE_TAR_GZ]
|
|
checksums = ['20b2bd4df436827d8e50f7afeafb6f967259f2fb374ce7330244f8d0ed2dde6f']
|
|
|
|
builddependencies = [
|
|
('binutils', '2.39'),
|
|
]
|
|
|
|
dependencies = [
|
|
('numactl', '2.0.16'),
|
|
('libxml2', '2.10.3'),
|
|
('libpciaccess', '0.17'),
|
|
]
|
|
|
|
configopts = "--enable-libnuma=$EBROOTNUMACTL "
|
|
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'
|