-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18707 from SebastianAchilles/20230903170111_new_p…
…r_hwloc292 {system}[GCCcore/13.2.0] hwloc v2.9.2
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
easybuild/easyconfigs/h/hwloc/hwloc-2.9.2-GCCcore-13.2.0.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'hwloc' | ||
version = '2.9.2' | ||
|
||
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': '13.2.0'} | ||
|
||
source_urls = ['https://www.open-mpi.org/software/hwloc/v%(version_major_minor)s/downloads/'] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['ffb554d5735e0e0a19d1fd4b2b86e771d3b58b2d97f257eedacae67ade5054b3'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
] | ||
|
||
dependencies = [ | ||
('numactl', '2.0.16'), | ||
('libxml2', '2.11.5'), | ||
('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' |