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

new file: m/MUST/MUST-1.10.0-fiber-preview-nvompi-2022.07.eb new file: s/STAR-CCM+/STAR-CCM+-17.06.007.eb new file: s/Score-P/Score-P-8.4-NVHPC-24.3-CUDA-12.3.0.eb
60 lines
1.7 KiB
Plaintext
60 lines
1.7 KiB
Plaintext
# IT4Innovations
|
|
# LK 2024
|
|
|
|
easyblock = 'EB_Score_minus_P'
|
|
|
|
name = 'Score-P'
|
|
version = '8.4'
|
|
|
|
homepage = 'https://www.score-p.org'
|
|
description = """
|
|
The Score-P measurement infrastructure is a highly scalable and easy-to-use
|
|
tool suite for profiling, event tracing, and online analysis of HPC
|
|
applications.
|
|
"""
|
|
|
|
toolchain = {'name': 'NVHPC', 'version': '24.3-CUDA-12.3.0'}
|
|
|
|
source_urls = ['http://perftools.pages.jsc.fz-juelich.de/cicd/scorep/tags/scorep-%(version)s']
|
|
sources = ['scorep-%(version)s.tar.gz']
|
|
checksums = [
|
|
'7bbde9a0721d27cc6205baf13c1626833bcfbabb1f33b325a2d67976290f7f8a', # scorep-8.4.tar.gz
|
|
]
|
|
|
|
builddependencies = [
|
|
('CUDA', '12.3.0', '', SYSTEM),
|
|
('CubeLib', '4.8.2'),
|
|
('CubeWriter', '4.8.2'),
|
|
# Unwinding/sampling support (optional):
|
|
('libunwind', '1.6.2'),
|
|
]
|
|
|
|
dependencies = [
|
|
# binutils is implicitly available via GCC toolchain
|
|
('OPARI2', '2.0.8'),
|
|
('OTF2', '3.0.3'),
|
|
# Hardware counter support (optional):
|
|
('PAPI', '7.0.1'),
|
|
('OpenMPI', '4.1.6'),
|
|
]
|
|
|
|
configopts = '--enable-shared --with-machine-name=$SYSTEMNAME '
|
|
# Enable CUDA support
|
|
configopts += '--with-libOpenCL=$EBROOTCUDA/targets/x86_64-linux '
|
|
# Make OMPT default, if available
|
|
configopts += '--enable-default=ompt '
|
|
|
|
postinstallcmds = ['make installcheck']
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/scorep', 'include/scorep/SCOREP_User.h',
|
|
('lib/libscorep_adapter_mpi_event.a', 'lib64/libscorep_adapter_mpi_event.a'),
|
|
('lib/libscorep_adapter_mpi_event.%s' % SHLIB_EXT, 'lib64/libscorep_adapter_mpi_event.%s' % SHLIB_EXT)],
|
|
'dirs': [],
|
|
}
|
|
|
|
# Ensure that local metric documentation is found by CubeGUI
|
|
modextrapaths = {'CUBE_DOCPATH': 'share/doc/scorep/profile'}
|
|
|
|
moduleclass = 'perf'
|