mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00

new file: h/hwloc/hwloc-2.0.3-GCC-8.3.0-2.32.eb modified: i/impi/impi-2018.4.274-iccifort-2018.5.274-GCC-8.3.0-2.32.eb modified: i/impi/impi-2018.5.288-iccifort-2019.5.281-GCC-8.3.0-2.32.eb modified: i/impi/impi-2019.6.154-iccifort-2019.5.281-GCC-8.3.0-2.32.eb new file: n/numactl/numactl-2.0.12-GCCcore-6.3.0.eb modified: n/numactl/numactl-2.0.12-GCCcore-8.3.0.eb modified: o/OpenMPI/OpenMPI-2.1.5-GCC-6.3.0-2.27.eb modified: o/OpenMPI/OpenMPI-2.1.5-GCC-8.3.0-2.32.eb modified: o/OpenMPI/OpenMPI-3.1.4-GCC-6.3.0-2.27.eb new file: o/OpenMPI/OpenMPI-3.1.4-GCC-8.3.0-2.32.eb new file: o/OpenMPI/OpenMPI-3.1.5-GCCcore-8.3.0.eb new file: o/OpenMPI/OpenMPI-4.0.2-GCC-8.3.0-2.32.eb new file: u/UCX/UCX-1.6.1-GCCcore-6.3.0.eb new file: u/UCX/UCX-1.6.1-GCCcore-8.3.0.eb new file: x/XZ/XZ-5.2.4-GCCcore-8.3.0.eb new file: x/xorg-macros/xorg-macros-1.19.2-GCCcore-8.3.0.eb
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
# IT4Innovations 2019
|
|
|
|
easyblock = 'ConfigureMake'
|
|
|
|
name = 'hwloc'
|
|
version = '1.11.12'
|
|
|
|
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': '8.3.0'}
|
|
# need to build with -fno-tree-vectorize to avoid segfaulting lstopo on Intel Skylake
|
|
# cfr. https://github.com/open-mpi/hwloc/issues/315
|
|
toolchainopts = {'vectorize': False}
|
|
|
|
source_urls = ['https://www.open-mpi.org/software/hwloc/v%(version_major_minor)s/downloads/']
|
|
sources = [SOURCE_TAR_GZ]
|
|
checksums = ['f1d49433e605dd653a77e1478a78cee095787d554a94afe40d1376bca6708ca5']
|
|
|
|
builddependencies = [
|
|
('binutils', '2.32'),
|
|
]
|
|
|
|
dependencies = [
|
|
('numactl', '2.0.12'),
|
|
# ('libxml2', '2.9.9'),
|
|
('libpciaccess', '0.14'),
|
|
]
|
|
|
|
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'
|