From bf3e04e5816b84d85f56120a1a0a03c507644ecf Mon Sep 17 00:00:00 2001 From: jg Date: Fri, 11 Oct 2019 07:47:41 -0500 Subject: [PATCH 1/2] tiger --- cscs-checks/mch/collectives_halo.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/cscs-checks/mch/collectives_halo.py b/cscs-checks/mch/collectives_halo.py index 2708134dfd..e79baf1ace 100644 --- a/cscs-checks/mch/collectives_halo.py +++ b/cscs-checks/mch/collectives_halo.py @@ -4,7 +4,7 @@ class CollectivesBaseTest(rfm.RegressionTest): def __init__(self, variant, bench_reference): - self.valid_systems = ['dom:gpu', 'daint:gpu', 'kesch:cn'] + self.valid_systems = ['dom:gpu', 'daint:gpu', 'kesch:cn', 'tiger:gpu'] self.valid_prog_environs = ['PrgEnv-gnu'] self.variables = {'G2G': '1'} self.executable = 'build/src/comm_overlap_benchmark' @@ -29,11 +29,14 @@ def __init__(self, variant, bench_reference): '-DCUDA_COMPUTE_CAPABILITY="sm_37"' ] self.build_system.max_concurrency = 1 - elif self.current_system.name in {'daint', 'dom'}: + elif self.current_system.name in {'daint', 'dom', 'tiger'}: self.num_tasks = 4 self.num_gpus_per_node = 1 self.num_tasks_per_node = 1 - self.modules = ['craype-accel-nvidia60', 'CMake'] + if self.current_system.name in {'tiger'}: + self.modules = ['craype-accel-nvidia60'] + else: + self.modules = ['craype-accel-nvidia60', 'CMake'] self.variables['MPICH_RDMA_ENABLED_CUDA'] = '1' self.build_system.config_opts += [ '-DCUDA_COMPUTE_CAPABILITY="sm_60"' From 3de1347448263a3c7ae9311b9ae9820d7afc3814 Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Wed, 16 Oct 2019 22:39:53 +0200 Subject: [PATCH 2/2] Fix styling issue --- cscs-checks/mch/collectives_halo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cscs-checks/mch/collectives_halo.py b/cscs-checks/mch/collectives_halo.py index e79baf1ace..2080ef0876 100644 --- a/cscs-checks/mch/collectives_halo.py +++ b/cscs-checks/mch/collectives_halo.py @@ -37,6 +37,7 @@ def __init__(self, variant, bench_reference): self.modules = ['craype-accel-nvidia60'] else: self.modules = ['craype-accel-nvidia60', 'CMake'] + self.variables['MPICH_RDMA_ENABLED_CUDA'] = '1' self.build_system.config_opts += [ '-DCUDA_COMPUTE_CAPABILITY="sm_60"'