forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrading the toolchain version for this PAPI release.
- Loading branch information
satishk
committed
Mar 13, 2024
1 parent
ff37f12
commit 6e0c2fa
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
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,49 @@ | ||
## | ||
# Author: Robert Mijakovic <[email protected]> | ||
## | ||
|
||
easyblock = 'ConfigureMake' | ||
|
||
name = 'PAPI' | ||
version = '7.1.0' | ||
|
||
homepage = 'https://icl.cs.utk.edu/projects/papi/' | ||
|
||
description = """ | ||
PAPI provides the tool designer and application engineer with a consistent | ||
interface and methodology for use of the performance counter hardware found | ||
in most major microprocessors. PAPI enables software engineers to see, in near | ||
real time, the relation between software performance and processor events. | ||
In addition Component PAPI provides access to a collection of components | ||
that expose performance measurement opportunites across the hardware and | ||
software stack. | ||
""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '13.2.0'} | ||
|
||
source_urls = ['https://icl.utk.edu/projects/papi/downloads'] | ||
sources = [SOURCELOWER_TAR_GZ] | ||
checksums = ['5818afb6dba3ece57f51e65897db5062f8e3464e6ed294b654ebf34c3991bc4f'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
] | ||
|
||
start_dir = 'src' | ||
|
||
configopts = "--with-components=rapl " # for energy measurements | ||
|
||
# There is also "fulltest" that is a superset of "test" but hangs on some processors | ||
# indefinitely with a defunct `make` process. So use only "test". | ||
runtest = 'test' | ||
|
||
sanity_check_paths = { | ||
'files': ["bin/papi_%s" % x | ||
for x in ["avail", "clockres", "command_line", "component_avail", | ||
"cost", "decode", "error_codes", "event_chooser", | ||
"mem_info", "multiplex_cost", "native_avail", | ||
"version", "xml_event_info"]], | ||
'dirs': [], | ||
} | ||
|
||
moduleclass = 'perf' |