We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents db805c2 + 7e15e1b commit 978a670Copy full SHA for 978a670
cscs-checks/compile/haswell_fma_check.py
@@ -55,4 +55,3 @@ def setflags(self):
55
if self.current_environ.name == 'PrgEnv-cray':
56
self.build_system.cflags = ['-Ofast', '-S']
57
self.build_system.cxxflags = ['-Ofast', '-S']
58
-
cscs-checks/libraries/hpx/hpx_hello_world.py
@@ -62,4 +62,3 @@ def set_sanity(self):
62
self.sanity_patterns = sn.all(sn.chain([assert_num_tasks],
63
assert_threads,
64
assert_localities))
65
cscs-checks/mch/automatic_arrays_acc.py
@@ -41,14 +41,14 @@ def __init__(self):
41
}
42
self.arrays_reference = {
43
'PrgEnv-cray': {
44
- 'daint:gpu': {'time': (5.7E-05, None, 0.15)},
45
- 'dom:gpu': {'time': (5.7E-05, None, 0.15)},
46
- 'kesch:cn': {'time': (2.9E-04, None, 0.15)},
+ 'daint:gpu': {'time': (5.7E-05, None, 0.15, 's')},
+ 'dom:gpu': {'time': (5.7E-05, None, 0.15, 's')},
+ 'kesch:cn': {'time': (2.9E-04, None, 0.15, 's')},
47
},
48
'PrgEnv-pgi': {
49
- 'daint:gpu': {'time': (7.5E-05, None, 0.15)},
50
- 'dom:gpu': {'time': (7.5e-05, None, 0.15)},
51
- 'kesch:cn': {'time': (1.4E-04, None, 0.15)},
+ 'daint:gpu': {'time': (7.5E-05, None, 0.15, 's')},
+ 'dom:gpu': {'time': (7.5e-05, None, 0.15, 's')},
+ 'kesch:cn': {'time': (1.4E-04, None, 0.15, 's')},
52
53
54
cscs-checks/mch/collectives_halo.py
@@ -97,13 +97,13 @@ def __init__(self, variant, bench_reference):
97
98
self.reference = {
99
'kesch:cn': {
100
- 'elapsed_time': (ref, None, 0.15)
+ 'elapsed_time': (ref, None, 0.15, 's')
101
102
'daint': {
103
104
105
'dom': {
106
107
108
109
cscs-checks/mch/cuda_stress_test.py
@@ -36,13 +36,13 @@ def __init__(self):
36
37
38
'daint:gpu': {
39
- 'time': (1.41184, None, 0.05)
+ 'time': (1.41184, None, 0.05, 's')
40
'dom:gpu': {
- 'time': (1.39758, None, 0.05)
+ 'time': (1.39758, None, 0.05, 's')
- 'time': (2.25, None, 0.05)
+ 'time': (2.25, None, 0.05, 's')
self.tags = {'production', 'mch', 'craype'}
cscs-checks/mch/fieldextra_check.py
@@ -79,11 +79,11 @@ def __init__(self):
79
r'%INFO fieldextra: Program successfully completed', self.stdout
80
)
81
self.perf_patterns = {
82
- 'perf': sn.extractsingle(r'WALL CLOCK\s*SPEEDUP\D*(?P<perf>\S+)',
83
- 'fieldextra.diagnostic', 'perf', float)
+ 'time': sn.extractsingle(r'WALL CLOCK\s*SPEEDUP\D*(?P<time>\S+)',
+ 'fieldextra.diagnostic', 'time', float)
84
85
86
'kesch': {
87
- 'perf': (420., None, 0.10)
+ 'time': (420., None, 0.10, 's')
88
89
cscs-checks/mch/g2g_meteoswiss_check.py
@@ -29,7 +29,7 @@ def __init__(self, g2g):
29
'-DCMAKE_BUILD_TYPE=Release',
30
'-DENABLE_MPI_TIMER=ON']
31
self.build_system.max_concurrency = 1
32
- self.maintainers = ['TM', 'JG']
+ self.maintainers = ['AJ', 'LM']
33
self.tags = {'production', 'mch'}
34
self.num_tasks = 2
35
self.num_gpus_per_node = 2
@@ -46,6 +46,6 @@ def __init__(self, g2g):
self.stdout, 'time', float)
- 'kesch:cn': {'time': (3.461, None, 0.2)}
+ 'kesch:cn': {'time': (3.461, None, 0.2, 's')}
self.variables = {'G2G': str(g2g)}
cscs-checks/mch/gpu_direct_acc.py
@@ -72,4 +72,3 @@ def setflags(self):
72
self.build_system.fflags += ['-ta=tesla:cc35']
73
elif self.current_system.name in ['arolla', 'tsa']:
74
self.build_system.fflags += ['-ta=tesla:cc70']
75
cscs-checks/prgenv/helloworld.py
@@ -145,6 +145,7 @@ def __init__(self, lang, linkage):
145
self.valid_prog_environs += ['PrgEnv-pgi-nompi',
146
'PrgEnv-gnu-nompi']
147
148
+
149
@rfm.required_version('>=2.14')
150
@rfm.parameterized_test(*([lang, linkage]
151
for lang in ['cpp', 'c', 'f90']
cscs-checks/tools/profiling_and_debugging/gperftools_mpi_omp.py
@@ -86,7 +86,7 @@ def __init__(self, lang):
# check pdf report:
sn.assert_found('PDF document', self.rpt_file_doc),
])
- self.perf_patterns = { 'jacobi_elapsed%': self.report_flat_pctg, }
+ self.perf_patterns = {'jacobi_elapsed%': self.report_flat_pctg, }
90
self.maintainers = ['JG']
91
self.tags = {'performance-tools'}
92
0 commit comments