From e05c9c0376789ae29fcedb1fe4f031fe478b2d51 Mon Sep 17 00:00:00 2001 From: jg Date: Tue, 15 Oct 2019 13:32:45 -0500 Subject: [PATCH] gpuburn --- cscs-checks/microbenchmarks/gpu_burn/gpu_burn_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cscs-checks/microbenchmarks/gpu_burn/gpu_burn_test.py b/cscs-checks/microbenchmarks/gpu_burn/gpu_burn_test.py index 6d7d0fe216..ac18458c42 100644 --- a/cscs-checks/microbenchmarks/gpu_burn/gpu_burn_test.py +++ b/cscs-checks/microbenchmarks/gpu_burn/gpu_burn_test.py @@ -8,7 +8,7 @@ class GpuBurnTest(rfm.RegressionTest): def __init__(self): super().__init__() - self.valid_systems = ['daint:gpu', 'dom:gpu', 'kesch:cn'] + self.valid_systems = ['daint:gpu', 'dom:gpu', 'kesch:cn', 'tiger:gpu'] self.descr = 'GPU burn test' self.valid_prog_environs = ['PrgEnv-gnu'] @@ -22,7 +22,7 @@ def __init__(self): self.executable_opts = ['-d', '40'] self.num_gpus_per_node = 16 gpu_arch = '37' - elif self.current_system.name in {'daint', 'dom'}: + elif self.current_system.name in {'daint', 'dom', 'tiger'}: self.modules = ['craype-accel-nvidia60'] self.executable_opts = ['-d', '20'] self.num_gpus_per_node = 1