From 5e869a06f285e016cfd9667bc7a789c73550c5a5 Mon Sep 17 00:00:00 2001 From: Christopher Bignamini Date: Wed, 3 Feb 2021 11:55:56 +0100 Subject: [PATCH 1/2] Eiger system added for dynamic link only --- cscs-checks/libraries/math/scalapack_compile_run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cscs-checks/libraries/math/scalapack_compile_run.py b/cscs-checks/libraries/math/scalapack_compile_run.py index 7d6e9fdb6a..9a39ac3f0d 100644 --- a/cscs-checks/libraries/math/scalapack_compile_run.py +++ b/cscs-checks/libraries/math/scalapack_compile_run.py @@ -15,6 +15,8 @@ def __init__(self, linkage): self.sourcesdir = os.path.join(self.current_system.resourcesdir, 'scalapack') self.valid_systems = ['daint:gpu', 'daint:mc', 'dom:mc', 'dom:gpu'] + if self.linkage == 'dynamic': + self.valid_systems.append('eiger:mc') self.valid_prog_environs = ['PrgEnv-cray', 'PrgEnv-gnu', 'PrgEnv-intel'] self.num_tasks = 16 From c9295e2858e5ff26dec49533dbd8799ea60fd2d8 Mon Sep 17 00:00:00 2001 From: Christopher Bignamini Date: Thu, 4 Feb 2021 11:25:03 +0100 Subject: [PATCH 2/2] Coding style fix --- cscs-checks/libraries/math/scalapack_compile_run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cscs-checks/libraries/math/scalapack_compile_run.py b/cscs-checks/libraries/math/scalapack_compile_run.py index 9a39ac3f0d..cf9f9c4588 100644 --- a/cscs-checks/libraries/math/scalapack_compile_run.py +++ b/cscs-checks/libraries/math/scalapack_compile_run.py @@ -17,6 +17,7 @@ def __init__(self, linkage): self.valid_systems = ['daint:gpu', 'daint:mc', 'dom:mc', 'dom:gpu'] if self.linkage == 'dynamic': self.valid_systems.append('eiger:mc') + self.valid_prog_environs = ['PrgEnv-cray', 'PrgEnv-gnu', 'PrgEnv-intel'] self.num_tasks = 16