easyconfigs-it4i/h/hwloc/hwloc-2.0.4-GCC-6.3.0-2.27.eb
Lukáš Krupčík 8b42f4dda6 new file: h/hwloc/hwloc-2.0.4-GCC-6.3.0-2.27.eb
new file:   l/libpciaccess/libpciaccess-0.14-GCC-6.3.0-2.27.eb
	new file:   o/ORCA/ORCA-4.1.1-OpenMPI-2.1.5.eb
	new file:   o/ORCA/ORCA-4.1.2-OpenMPI-2.1.5.eb
	new file:   o/OpenMPI/OpenMPI-2.1.5-GCC-6.3.0-2.27.eb
2019-07-03 08:04:00 +02:00

47 lines
1.6 KiB
Plaintext

#IT4Innovations 2019
easyblock = 'ConfigureMake'
name = 'hwloc'
version = '2.0.4'
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': 'GCC', 'version': '6.3.0-2.27'}
# 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]
dependencies = [
('numactl', '2.0.12'),
('libxml2', '2.9.9', '', True),
('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'