Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions cscs-checks/apps/gromacs/gromacs_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ def __init__(self):
}


# FIXME: This test is obsolete; it is kept only for reference.
@rfm.parameterized_test([1], [2], [4], [6], [8])
class GromacsCPUMonchAcceptance(GromacsBaseCheck):
def __init__(self, num_nodes):
Expand Down
1 change: 1 addition & 0 deletions cscs-checks/cuda/hpcg_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def __init__(self, **kwargs):
self.maintainers = ['VK']


# FIXME: This test is obsolete; it is kept only for reference
class HPCGMonchAcceptanceCheck(RegressionTest):
def __init__(self, num_tasks, **kwargs):
super().__init__('hpcg_check_%s_nodes' % num_tasks,
Expand Down
1 change: 1 addition & 0 deletions cscs-checks/libraries/math/dgemm.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ def __init__(self):
self.tags = {'production'}


# FIXME: This test is obsolete; it is kept only for reference.
@rfm.required_version('>=2.14')
@rfm.simple_test
class DGEMMTestMonch(DGEMMTest):
Expand Down
6 changes: 2 additions & 4 deletions cscs-checks/libraries/math/scalapack_compile_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,14 @@ def scalapack_sanity(number1, number2, expected_value):
])


# FIXME: This test is obsolete; it is kept only for reference.
# NOTE: The test case is very small, but larger cases did not succeed!
@rfm.required_version('>=2.14')
@rfm.parameterized_test(['dynamic'])
class ScaLAPACKPerf(ScaLAPACKTest):
def __init__(self, linkage):
super().__init__(linkage)

# FIXME:
# Currently, this test case is only aimed for the monch acceptance,
# yet it could be interesting to extend it to other systems.
# NB: The test case is very small, but larger cases did not succeed!
self.tags |= {'monch_acceptance'}
self.sourcepath = 'scalapack_performance_compile_run.f'
self.valid_systems = ['monch:compute']
Expand Down
3 changes: 1 addition & 2 deletions cscs-checks/microbenchmarks/osu/flexible_a2a.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ def __init__(self):
super().__init__()
self.valid_systems = ['daint:gpu', 'daint:mc',
'dom:gpu', 'dom:mc',
'kesch:cn', 'kesch:pn',
'leone:normal', 'monch:compute']
'kesch:cn', 'kesch:pn', 'leone:normal']
self.valid_prog_environs = ['PrgEnv-cray', 'PrgEnv-gnu',
'PrgEnv-intel', 'PrgEnv-pgi']
if self.current_system.name == 'kesch':
Expand Down
9 changes: 3 additions & 6 deletions cscs-checks/microbenchmarks/osu/osu_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ def __init__(self, variant):
}


# FIXME: This test is obsolete; it is kept only for reference.
@rfm.parameterized_test(*({'num_tasks': i} for i in range(2, 10, 2)))
class AlltoallMonchAcceptanceTest(AlltoallTest):
def __init__(self, num_tasks):
Expand Down Expand Up @@ -105,9 +106,7 @@ class P2PCPUBandwidthTest(P2PBaseTest):
def __init__(self):
super().__init__()
self.valid_systems = ['daint:gpu', 'daint:mc',
'dom:gpu', 'dom:mc',
'monch:compute',
'kesch:cn']
'dom:gpu', 'dom:mc', 'kesch:cn']
self.executable = './p2p_osu_bw'
self.executable_opts = ['-x', '100', '-i', '1000']

Expand Down Expand Up @@ -144,9 +143,7 @@ class P2PCPULatencyTest(P2PBaseTest):
def __init__(self):
super().__init__()
self.valid_systems = ['daint:gpu', 'daint:mc',
'dom:gpu', 'dom:mc',
'monch:compute',
'kesch:cn']
'dom:gpu', 'dom:mc', 'kesch:cn']
self.executable_opts = ['-x', '100', '-i', '1000']

self.executable = './p2p_osu_latency'
Expand Down
3 changes: 1 addition & 2 deletions cscs-checks/microbenchmarks/stream/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ def __init__(self):
self.exclusive_access = True
# All available systems are supported
self.valid_systems = ['daint:gpu', 'daint:mc', 'dom:gpu', 'dom:mc',
'kesch:cn', 'kesch:pn', 'leone:normal',
'monch:compute']
'kesch:cn', 'kesch:pn', 'leone:normal']
self.valid_prog_environs = ['PrgEnv-cray', 'PrgEnv-gnu',
'PrgEnv-intel', 'PrgEnv-pgi']
if self.current_system.name == 'kesch':
Expand Down
6 changes: 3 additions & 3 deletions cscs-checks/prgenv/helloworld.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ def __init__(self, variant, lang, linkage):
self.sourcepath = 'hello_world'
self.build_system = 'SingleSource'
self.valid_systems = ['daint:gpu', 'daint:mc', 'dom:gpu', 'dom:mc',
'kesch:cn', 'leone:normal', 'monch:compute']
'kesch:cn', 'leone:normal']

self.valid_prog_environs = ['PrgEnv-cray', 'PrgEnv-gnu',
'PrgEnv-intel', 'PrgEnv-pgi']

# Removing static compilation from kesch
if (self.current_system.name in ['kesch', 'leone', 'monch'] and
if (self.current_system.name in ['kesch', 'leone'] and
linkage == 'static'):
self.valid_prog_environs = []

self.compilation_time_seconds = None

self.maintainers = ['CB', 'VK']
self.tags = {'production', 'monch_acceptance'}
self.tags = {'production'}

def setup(self, partition, environ, **job_opts):
result = sn.findall(r'Hello World from thread \s*(\d+) out '
Expand Down
9 changes: 5 additions & 4 deletions cscs-checks/system/io/ior_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,14 @@ def __init__(self, fs_mount_point):
self.num_tasks = 720
self.num_tasks_per_node = 12
elif fs_mount_point == '/users':
self.valid_systems = ['daint:gpu', 'dom:gpu', 'monch:compute']
self.valid_systems = ['daint:gpu', 'dom:gpu']
self.num_tasks = 1
self.num_tasks_per_node = 1
self.tags |= {'maintenance'}
elif fs_mount_point == '/apps':
self.valid_systems = ['daint:gpu', 'dom:gpu', 'monch:compute']
self.valid_systems = ['daint:gpu', 'dom:gpu']
self.num_tasks = 1
self.num_tasks_per_node = 1
elif fs_mount_point == '/mnt/lnec':
self.valid_systems = ['monch:compute']

self.valid_prog_environs = ['PrgEnv-cray']
self.sourcesdir = os.path.join(self.current_system.resourcesdir, 'IOR')
Expand Down Expand Up @@ -166,6 +164,7 @@ def __init__(self, fs_mount_point, ior_type):
self.tags |= {'write'}


# FIXME: This test is obsolete; it is kept only for reference.
class IoMonchAcceptanceBase(IorCheck):
def __init__(self, fs_mount_point, ior_type, num_tasks):
super().__init__(fs_mount_point)
Expand Down Expand Up @@ -195,6 +194,7 @@ def __init__(self, fs_mount_point, ior_type, num_tasks):
self.tags = {'monch_acceptance'}


# FIXME: This test is obsolete; it is kept only for reference.
@rfm.parameterized_test(*(['/mnt/lnec', 'MPIIO', num_tasks]
for num_tasks in [40, 80, 160]))
class IorReadScratchMonchAcceptanceCheck(IoMonchAcceptanceBase):
Expand All @@ -213,6 +213,7 @@ def __init__(self, fs_mount_point, ior_type, num_tasks):
self.tags |= {'read'}


# FIXME: This test is obsolete; it is kept only for reference.
@rfm.parameterized_test(*(['/mnt/lnec', 'MPIIO', num_tasks]
for num_tasks in [40, 80, 160]))
class IorWriteScratchMonchAcceptanceCheck(IoMonchAcceptanceBase):
Expand Down