Skip to content

Commit 2bf4a69

Browse files
committed
Fix typo in regex
Remove extraneous `+` in regex lines
1 parent e976626 commit 2bf4a69

File tree

1 file changed

+2
-2
lines changed
  • var/ramble/repos/builtin/applications/osu-micro-benchmarks

1 file changed

+2
-2
lines changed

var/ramble/repos/builtin/applications/osu-micro-benchmarks/application.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,12 +263,12 @@ def _prepare_analysis(self, workspace, app_inst=None):
263263

264264
fom_regex = None
265265
if fom_type == self.fom_types.single_lat:
266-
fom_regex = r"\s*(?P<msg_size>[0-9]+)+\s+(?P<avg_lat>[0-9\.]+)\s*$"
266+
fom_regex = r"\s*(?P<msg_size>[0-9]+)\s+(?P<avg_lat>[0-9\.]+)\s*$"
267267
self._add_foms(fom_regex)
268268
elif fom_type == self.fom_types.single_tail_lat:
269269
fom_regex = r"\s*(?P<msg_size>[0-9]+)\s+(?P<avg_lat>[0-9\.]+)\s+(?P<p50_lat>[0-9\.]+)\s+(?P<p90_lat>[0-9\.]+)\s+(?P<p99_lat>[0-9\.]+)\s*$"
270270
elif fom_type == self.fom_types.avg_lat:
271-
fom_regex = r"\s*(?P<msg_size>[0-9]+)+\s+(?P<avg_lat>[0-9\.]+)\s*$"
271+
fom_regex = r"\s*(?P<msg_size>[0-9]+)\s+(?P<avg_lat>[0-9\.]+)\s*$"
272272
elif fom_type == self.fom_types.avg_tail_lat:
273273
fom_regex = r"\s*(?P<msg_size>[0-9]+)\s+(?P<avg_lat>[0-9\.]+)\s+(?P<p50_lat>[0-9\.]+)\s+(?P<p90_lat>[0-9\.]+)\s+(?P<p99_lat>[0-9\.]+)\s*$"
274274
elif fom_type == self.fom_types.single_bw:

0 commit comments

Comments
 (0)