Skip to content

Commit

Permalink
Merge pull request #727 from jgphpc/MAINT-15
Browse files Browse the repository at this point in the history
[test] Update Jacobi test for CLE7
  • Loading branch information
vkarak committed Apr 12, 2019
2 parents 551307e + a3722fe commit 2c5e4e9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions cscs-checks/tools/profiling_and_debugging/notool.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@


@rfm.required_version('>=2.14')
@rfm.parameterized_test(['C'], ['C++'], ['F90'])
@rfm.parameterized_test(['C++'], ['F90'])
class JacobiNoToolHybrid(rfm.RegressionTest):
def __init__(self, lang):
super().__init__()
self.name = 'jacobi_%s' % lang.replace('+', 'p')
self.descr = '%s check' % lang
self.name = '%s_%s' % (type(self).__name__, lang.replace('+', 'p'))
self.descr = 'Jacobi (without tool) %s check' % lang
self.language = lang
self.valid_systems = ['daint:gpu', 'daint:mc', 'dom:gpu', 'dom:mc']
self.valid_prog_environs = ['PrgEnv-cray', 'PrgEnv-gnu',
Expand Down Expand Up @@ -42,7 +42,6 @@ def __init__(self, lang):
self.openmp_versions = ScopedDict({
'PrgEnv-cray': {'version': 201511},
'PrgEnv-gnu': {'version': 201511},
'PrgEnv-gnu:F90': {'version': 201307},
'PrgEnv-intel': {'version': 201611},
'PrgEnv-pgi': {'version': 201307},
})
Expand All @@ -68,7 +67,7 @@ def __init__(self, lang):
}
self.post_run = ['module list -t']

self.maintainers = ['VH', 'JG']
self.maintainers = ['JG', 'MK']
self.tags = {'production'}

def setup(self, partition, environ, **job_opts):
Expand Down

0 comments on commit 2c5e4e9

Please sign in to comment.