From 0fd49f12068febdf28d1234af2e6ef695ecfd5eb Mon Sep 17 00:00:00 2001 From: Theofilos Manitaras Date: Mon, 15 Oct 2018 10:44:38 +0200 Subject: [PATCH] Adapt the Score-P modules to PE 18.08 * Adapt the module names to reflect the latest PE, 18.08. --- .../tools/profiling_and_debugging/scorep_mpi_omp.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cscs-checks/tools/profiling_and_debugging/scorep_mpi_omp.py b/cscs-checks/tools/profiling_and_debugging/scorep_mpi_omp.py index c4a5639c3c..1c5624eeaf 100644 --- a/cscs-checks/tools/profiling_and_debugging/scorep_mpi_omp.py +++ b/cscs-checks/tools/profiling_and_debugging/scorep_mpi_omp.py @@ -16,9 +16,9 @@ def __init__(self, lang): self.valid_prog_environs = ['PrgEnv-gnu', 'PrgEnv-intel', 'PrgEnv-pgi'] self.scorep_modules = { - 'PrgEnv-gnu': ['Score-P/4.0-CrayGNU-18.07'], - 'PrgEnv-intel': ['Score-P/4.0-CrayIntel-18.07'], - 'PrgEnv-pgi': ['Score-P/4.0-CrayPGI-18.07'] + 'PrgEnv-gnu': ['Score-P/4.0-CrayGNU-18.08'], + 'PrgEnv-intel': ['Score-P/4.0-CrayIntel-18.08'], + 'PrgEnv-pgi': ['Score-P/4.0-CrayPGI-18.08'] } self.prgenv_flags = { @@ -72,7 +72,7 @@ def __init__(self, lang): def setup(self, partition, environ, **job_opts): if partition.fullname in ['daint:gpu', 'dom:gpu']: self.scorep_modules['PrgEnv-gnu'] = [ - 'Score-P/4.0-CrayGNU-18.07-cuda-9.1' + 'Score-P/4.0-CrayGNU-18.08-cuda-9.1' ] self.modules = self.scorep_modules[environ.name]