summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Williams <wwilliam47@gmail.com>2024-08-06 09:51:50 +0200
committerGitHub <noreply@github.com>2024-08-06 09:51:50 +0200
commite1bcbcf9f3d5e3e259577e15980e5792da73106c (patch)
tree00478930ef4c9b34ee5619ef7a38fe618d1267c1
parentfa671a639a943a480584ef04af972ae7db4c3dce (diff)
downloadspack-e1bcbcf9f3d5e3e259577e15980e5792da73106c.tar.gz
spack-e1bcbcf9f3d5e3e259577e15980e5792da73106c.tar.bz2
spack-e1bcbcf9f3d5e3e259577e15980e5792da73106c.tar.xz
spack-e1bcbcf9f3d5e3e259577e15980e5792da73106c.zip
Score-P: Add remapping for rocmcc (#45316)
* Score-P: Add remapping for rocmcc rocmcc -> amdclang for ScoreP * [@spackbot] updating style on behalf of wrwilliams --------- Co-authored-by: William Williams <william.williams@tu-dresden.de> Co-authored-by: wrwilliams <wrwilliams@users.noreply.github.com>
-rw-r--r--var/spack/repos/builtin/packages/scorep/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/scorep/package.py b/var/spack/repos/builtin/packages/scorep/package.py
index 02c8718a72..d4076a89a1 100644
--- a/var/spack/repos/builtin/packages/scorep/package.py
+++ b/var/spack/repos/builtin/packages/scorep/package.py
@@ -160,7 +160,7 @@ class Scorep(AutotoolsPackage):
# handle any mapping of Spack compiler names to Score-P args
# this should continue to exist for backward compatibility
def clean_compiler(self, compiler):
- renames = {"cce": "cray"}
+ renames = {"cce": "cray", "rocmcc": "amdclang"}
if compiler in renames:
return renames[compiler]
return compiler