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.
adding easyconfigs: AMD-uProf-5.0.1479.eb
- Loading branch information
satishk
committed
Nov 11, 2024
1 parent
a12c3e8
commit d007d7b
Showing
1 changed file
with
37 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,37 @@ | ||
## | ||
# Author: Robert Mijakovic <robert.mijakovic@lxp.lu> | ||
## | ||
easyblock = 'Binary' | ||
|
||
name = 'AMD-uProf' | ||
version = '5.0.1479' | ||
|
||
homepage = 'https://developer.amd.com/amd-uprof/' | ||
description = """AMD uProf is a performance analysis tool for applications running on Windows, Linux & FreeBSD | ||
operating systems. It allows developers to better understand the runtime performance of their application and | ||
to identify ways to improve its performance.""" | ||
|
||
download_instructions = """The sources can be obtained after signing a EULA aggreement | ||
(https://www.amd.com/en/developer/uprof.html#downloads).""" | ||
|
||
toolchain = SYSTEM | ||
|
||
source_urls = ['https://developer.amd.com/wordpress/media/files/'] | ||
sources = ['AMDuProf_Linux_x64_%(version)s.tar.bz2'] | ||
checksums = ['065d24d9b84d2ef94ae8a360bf55c74a0f3fe9250b01cc7fb2642495028130d5'] | ||
|
||
extract_sources = True | ||
|
||
sanity_check_paths = { | ||
'files': ['include/AMDTPowerProfileApi.h', 'lib/x64/libAMDProfileController.a', | ||
'bin/libAMDThreadProfileAPI.%s' % SHLIB_EXT, 'bin/AMDuProf'], | ||
'dirs': ['Examples'] | ||
} | ||
|
||
sanity_check_commands = ['AMDuProfCLI info --system'] | ||
|
||
modextrapaths = { | ||
'LD_LIBRARY_PATH': 'bin' | ||
} | ||
|
||
moduleclass = 'perf' |