Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cscs-checks/mch/automatic_arrays_acc.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def __init__(self):
super().__init__()
self.valid_systems = ['daint:gpu', 'dom:gpu', 'kesch:cn']
self.valid_prog_environs = ['PrgEnv-cray', 'PrgEnv-pgi']
if self.current_system.name in ['daint', 'dom']:
if self.current_system.name in ['daint', 'dom', 'tiger']:
self.modules = ['craype-accel-nvidia60']
elif self.current_system.name == 'kesch':
self.exclusive_access = True
Expand Down Expand Up @@ -46,7 +46,7 @@ def __init__(self):
}

self.maintainers = ['AJ', 'VK']
self.tags = {'production', 'mch'}
self.tags = {'production', 'mch', 'craype'}

def setup(self, partition, environ, **job_opts):
if environ.name.startswith('PrgEnv-cray'):
Expand All @@ -57,7 +57,7 @@ def setup(self, partition, environ, **job_opts):
self.build_system.fflags += ['-acc']
if self.current_system.name == 'kesch':
self.build_system.fflags += ['-ta=tesla,cc35']
elif self.current_system.name in ['daint', 'dom']:
elif self.current_system.name in ['daint', 'dom', 'tiger']:
self.build_system.fflags += ['-ta=tesla,cc60', '-Mnorpath']
else:
envname = environ.name
Expand Down