Skip to content

Commit 811ec0d

Browse files
committed
Address PR remarks
1 parent 6ce890a commit 811ec0d

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

cscs-checks/microbenchmarks/stream/stream.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ def __init__(self):
7878
'daint:mc': {'triad': (117000, -0.05, None, 'MB/s')},
7979
'dom:gpu': {'triad': (57000, -0.05, None, 'MB/s')},
8080
'dom:mc': {'triad': (117000, -0.05, None, 'MB/s')},
81-
'*': {'triad': (0, 0, None, 'MB/s')},
8281
},
8382
'PrgEnv-cray': {
8483
'daint:gpu': {'triad': (44000, -0.05, None, 'MB/s')},
@@ -87,7 +86,6 @@ def __init__(self):
8786
'dom:mc': {'triad': (89000, -0.05, None, 'MB/s')},
8887
'kesch:cn': {'triad': (85000, -0.05, None, 'MB/s')},
8988
'kesch:pn': {'triad': (113000, -0.05, None, 'MB/s')},
90-
'*': {'triad': (0, 0, None, 'MB/s')},
9189
},
9290
'PrgEnv-gnu': {
9391
'daint:gpu': {'triad': (43800, -0.05, None, 'MB/s')},
@@ -96,25 +94,19 @@ def __init__(self):
9694
'dom:mc': {'triad': (87500, -0.05, None, 'MB/s')},
9795
'kesch:cn': {'triad': (47000, -0.05, None, 'MB/s')},
9896
'kesch:pn': {'triad': (84400, -0.05, None, 'MB/s')},
99-
'*': {'triad': (0, 0, None, 'MB/s')},
10097
},
10198
'PrgEnv-intel': {
10299
'daint:gpu': {'triad': (59500, -0.05, None, 'MB/s')},
103100
'daint:mc': {'triad': (119000, -0.05, None, 'MB/s')},
104101
'dom:gpu': {'triad': (59500, -0.05, None, 'MB/s')},
105102
'dom:mc': {'triad': (119000, -0.05, None, 'MB/s')},
106-
'*': {'triad': (0, 0, None, 'MB/s')},
107103
},
108104
'PrgEnv-pgi': {
109105
'daint:gpu': {'triad': (44500, -0.05, None, 'MB/s')},
110106
'daint:mc': {'triad': (88500, -0.05, None, 'MB/s')},
111107
'dom:gpu': {'triad': (44500, -0.05, None, 'MB/s')},
112108
'dom:mc': {'triad': (88500, -0.05, None, 'MB/s')},
113-
'*': {'triad': (0, 0, None, 'MB/s')},
114109
},
115-
'*': {
116-
'*': {'triad': (0, 0, None, 'MB/s')},
117-
}
118110
}
119111
self.tags = {'production', 'craype'}
120112
self.maintainers = ['RS', 'SK']
@@ -133,7 +125,7 @@ def prepare_test(self):
133125
try:
134126
self.reference = self.stream_bw_reference[envname]
135127
except KeyError:
136-
self.reference = self.stream_bw_reference['*']
128+
self.reference = self.stream_bw_reference['PrgEnv-gnu']
137129

138130
@rfm.run_before('compile')
139131
def cray_linker_workaround(self):

0 commit comments

Comments
 (0)