aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/skpbench/_benchresult.py
blob: 28d3aeaf4b591dfd3243d6b4b5eccaa0eeec042e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright 2016 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""Parses an skpbench result from a line of output text."""

from __future__ import print_function
import re
import sys

class BenchResult:
  FLOAT_REGEX = '[-+]?(\d+(\.\d*)?|\.\d+)([eE][-+]?\d+)?'
  PATTERN = re.compile('^(?P<accum_pad> *)'
                       '(?P<accum>' + FLOAT_REGEX + ')'
                       '(?P<median_pad> +)'
                       '(?P<median>' + FLOAT_REGEX + ')'
                       '(?P<max_pad> +)'
                       '(?P<max>' + FLOAT_REGEX + ')'
                       '(?P<min_pad> +)'
                       '(?P<min>' + FLOAT_REGEX + ')'
                       '(?P<stddev_pad> +)'
                       '(?P<stddev>' + FLOAT_REGEX + '%)'
                       '(?P<samples_pad> +)'
                       '(?P<samples>\d+)'
                       '(?P<sample_ms_pad> +)'
                       '(?P<sample_ms>\d+)'
                       '(?P<clock_pad> +)'
                       '(?P<clock>[cg]pu)'
                       '(?P<metric_pad> +)'
                       '(?P<metric>ms|fps)'
                       '(?P<config_pad> +)'
                       '(?P<config>[^\s]+)'
                       '(?P<bench_pad> +)'
                       '(?P<bench>[^\s]+)$')

  @classmethod
  def match(cls, text):
    match = cls.PATTERN.search(text)
    return cls(match) if match else None

  def __init__(self, match):
    self.accum = float(match.group('accum'))
    self.median = float(match.group('median'))
    self.max = float(match.group('max'))
    self.min = float(match.group('min'))
    self.stddev = float(match.group('stddev')[:-1]) # Drop '%' sign.
    self.samples = int(match.group('samples'))
    self.sample_ms = int(match.group('sample_ms'))
    self.clock = match.group('clock')
    self.metric = match.group('metric')
    self.config = match.group('config')
    self.bench = match.group('bench')
    self._match = match

  def get_string(self, name):
    return self._match.group(name)

  def format(self, config_suffix=None):
    if not config_suffix or config_suffix == '':
      return self._match.group(0)
    else:
      values = list()
      for name in ['accum', 'median', 'max', 'min', 'stddev',
                   'samples', 'sample_ms', 'clock', 'metric', 'config']:
        values.append(self.get_string(name + '_pad'))
        values.append(self.get_string(name))
      values.append(config_suffix)
      bench_pad = self.get_string('bench_pad')
      values.append(bench_pad[min(len(config_suffix), len(bench_pad) - 1):])
      values.append(self.get_string('bench'))
      return ''.join(values)