Skip to content
35 changes: 35 additions & 0 deletions config/cscs.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,41 @@ class ReframeSettings:
}
},

'fulen': {
'descr': 'Fulen',
'hostnames': [r'fulen-ln\d+'],
'modules_system': 'tmod',
'resourcesdir': '/apps/common/UES/reframe/resources',
'partitions': {
'login': {
'scheduler': 'local',
'environs': ['PrgEnv-gnu'],
'descr': 'Login nodes',
'max_jobs': 1
},

'normal': {
'scheduler': 'nativeslurm',
'environs': ['PrgEnv-gnu'],
'descr': 'Compute nodes - default partition',
},

'fat': {
'scheduler': 'nativeslurm',
'environs': ['PrgEnv-gnu'],
'access': ['--partition fat'],
'descr': 'High-memory compute nodes',
},

'gpu': {
'scheduler': 'nativeslurm',
'environs': ['PrgEnv-gnu'],
'access': ['--partition gpu'],
'descr': 'Hybrid compute nodes',
},
}
},

'kesch': {
'descr': 'Kesch MCH',
'hostnames': ['keschln-\d+'],
Expand Down