blob: ed9c3747859a941636124eda67940414758908db [file] [log] [blame]
bensong@google.comfa1d4ea2012-11-27 17:30:26 +00001#!/usr/bin/env python
2# Copyright (c) 2012 The Chromium Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be found
4# in the LICENSE file.
5
6""" Analyze recent SkPicture bench data, and output suggested ranges.
7
8The outputs can be edited and pasted to bench_expectations.txt to trigger
9buildbot alerts if the actual benches are out of range. Details are documented
10in the .txt file.
11
12Currently the easiest way to update bench_expectations.txt is to delete all skp
13bench lines, run this script, and redirect outputs (">>") to be added to the
14.txt file.
15TODO(bensong): find a better way for updating the bench lines in place.
16
17Note: since input data are stored in Google Storage, you will need to set up
18the corresponding library.
19See http://developers.google.com/storage/docs/gspythonlibrary for details.
20"""
21
22__author__ = 'bensong@google.com (Ben Chen)'
23
24import bench_util
25import boto
26import cStringIO
27import optparse
28import re
29import shutil
30
31from oauth2_plugin import oauth2_plugin
32
33
34# Ratios for calculating suggested picture bench upper and lower bounds.
bensong@google.comdc2dd2e2012-11-27 21:52:32 +000035BENCH_UB = 1.1 # Allow for 10% room for normal variance on the up side.
robertphillips@google.combb51fab2013-03-13 15:25:30 +000036BENCH_LB = 0.9
bensong@google.comfa1d4ea2012-11-27 17:30:26 +000037
bensong@google.comcd63fb52012-11-30 04:42:59 +000038# Further allow for a fixed amount of noise. This is especially useful for
39# benches of smaller absolute value. Keeping this value small will not affect
40# performance tunings.
41BENCH_ALLOWED_NOISE = 10
42
borenet@google.come6598a02013-04-30 12:02:32 +000043# Name prefix for benchmark builders.
44BENCH_BUILDER_PREFIX = 'Perf-'
45
bensong@google.com92b0f512013-02-06 20:51:55 +000046# List of platforms to track. Feel free to change it to meet your needs.
borenet@google.come6598a02013-04-30 12:02:32 +000047PLATFORMS = ['Perf-Mac10.8-MacMini4.1-GeForce320M-x86-Release',
48 'Perf-Android-Nexus7-Tegra3-Arm7-Release',
49 'Perf-Ubuntu12-ShuttleA-ATI5770-x86-Release',
50 'Perf-Win7-ShuttleA-HD2000-x86-Release',
bensong@google.comfa1d4ea2012-11-27 17:30:26 +000051 ]
52
53# Filter for configs of no interest. They are old config names replaced by more
54# specific ones.
55CONFIGS_TO_FILTER = ['gpu', 'raster']
56
57# Template for gsutil uri.
58GOOGLE_STORAGE_URI_SCHEME = 'gs'
59URI_BUCKET = 'chromium-skia-gm'
60
61# Constants for optparse.
62USAGE_STRING = 'USAGE: %s [options]'
63HOWTO_STRING = """
64Feel free to revise PLATFORMS for your own needs. The default is the most common
65combination that we care most about. Platforms that did not run bench_pictures
66in the given revision range will not have corresponding outputs.
67Please check http://go/skpbench to choose a range that fits your needs.
bensong@google.comcd63fb52012-11-30 04:42:59 +000068BENCH_UB, BENCH_LB and BENCH_ALLOWED_NOISE can be changed to expand or narrow
69the permitted bench ranges without triggering buidbot alerts.
bensong@google.comfa1d4ea2012-11-27 17:30:26 +000070"""
71HELP_STRING = """
72Outputs expectation picture bench ranges for the latest revisions for the given
73revision range. For instance, --rev_range=6000:6000 will return only bench
74ranges for the bots that ran bench_pictures at rev 6000; --rev-range=6000:7000
75may have multiple bench data points for each bench configuration, and the code
76returns bench data for the latest revision of all available (closer to 7000).
77""" + HOWTO_STRING
78
79OPTION_REVISION_RANGE = '--rev-range'
80OPTION_REVISION_RANGE_SHORT = '-r'
81# Bench bench representation algorithm flag.
82OPTION_REPRESENTATION_ALG = '--algorithm'
83OPTION_REPRESENTATION_ALG_SHORT = '-a'
84
85# List of valid representation algorithms.
86REPRESENTATION_ALGS = ['avg', 'min', 'med', '25th']
87
88def OutputSkpBenchExpectations(rev_min, rev_max, representation_alg):
89 """Reads skp bench data from google storage, and outputs expectations.
90
91 Ignores data with revisions outside [rev_min, rev_max] integer range. For
92 bench data with multiple revisions, we use higher revisions to calculate
93 expected bench values.
94 Uses the provided representation_alg for calculating bench representations.
95 """
96 expectation_dic = {}
97 uri = boto.storage_uri(URI_BUCKET, GOOGLE_STORAGE_URI_SCHEME)
98 for obj in uri.get_bucket():
99 # Filters out non-skp-bench files.
borenet@google.come6598a02013-04-30 12:02:32 +0000100 if ((not obj.name.startswith('perfdata/%s' % BENCH_BUILDER_PREFIX) and
101 not obj.name.startswith(
102 'playback/perfdata/%s' % BENCH_BUILDER_PREFIX)) or
bensong@google.comfa1d4ea2012-11-27 17:30:26 +0000103 obj.name.find('_data_skp_') < 0):
104 continue
105 # Ignores uninterested platforms.
bensong@google.com6184c972013-02-08 19:02:21 +0000106 platform = obj.name.split('/')[1]
borenet@google.come6598a02013-04-30 12:02:32 +0000107 if not platform.startswith(BENCH_BUILDER_PREFIX):
bensong@google.com6184c972013-02-08 19:02:21 +0000108 platform = obj.name.split('/')[2]
borenet@google.come6598a02013-04-30 12:02:32 +0000109 if not platform.startswith(BENCH_BUILDER_PREFIX):
bensong@google.com6184c972013-02-08 19:02:21 +0000110 continue # Ignores non-platform object
bensong@google.comfa1d4ea2012-11-27 17:30:26 +0000111 if platform not in PLATFORMS:
112 continue
113 # Filters by revision.
bensong@google.com92b0f512013-02-06 20:51:55 +0000114 to_filter = True
bensong@google.comfa1d4ea2012-11-27 17:30:26 +0000115 for rev in range(rev_min, rev_max + 1):
bensong@google.com92b0f512013-02-06 20:51:55 +0000116 if '_r%s_' % rev in obj.name:
117 to_filter = False
118 break
119 if to_filter:
120 continue
bensong@google.comfa1d4ea2012-11-27 17:30:26 +0000121 contents = cStringIO.StringIO()
122 obj.get_file(contents)
123 for point in bench_util.parse('', contents.getvalue().split('\n'),
124 representation_alg):
125 if point.config in CONFIGS_TO_FILTER:
126 continue
bensong@google.comfa1d4ea2012-11-27 17:30:26 +0000127
128 key = '%s_%s_%s,%s-%s' % (point.bench, point.config, point.time_type,
129 platform, representation_alg)
130 # It is fine to have later revisions overwrite earlier benches, since we
131 # only use the latest bench within revision range to set expectations.
132 expectation_dic[key] = point.time
133 keys = expectation_dic.keys()
134 keys.sort()
135 for key in keys:
136 bench_val = expectation_dic[key]
137 # Prints out expectation lines.
bensong@google.comcd63fb52012-11-30 04:42:59 +0000138 print '%s,%.3f,%.3f,%.3f' % (key, bench_val,
139 bench_val * BENCH_LB - BENCH_ALLOWED_NOISE,
140 bench_val * BENCH_UB + BENCH_ALLOWED_NOISE)
bensong@google.comfa1d4ea2012-11-27 17:30:26 +0000141
142def main():
143 """Parses flags and outputs expected Skia picture bench results."""
144 parser = optparse.OptionParser(USAGE_STRING % '%prog' + HELP_STRING)
145 parser.add_option(OPTION_REVISION_RANGE_SHORT, OPTION_REVISION_RANGE,
146 dest='rev_range',
147 help='(Mandatory) revision range separated by ":", e.g., 6000:6005')
148 parser.add_option(OPTION_REPRESENTATION_ALG_SHORT, OPTION_REPRESENTATION_ALG,
149 dest='alg', default='25th',
150 help=('Bench representation algorithm. One of '
151 '%s. Default to "25th".' % str(REPRESENTATION_ALGS)))
152 (options, args) = parser.parse_args()
153 if options.rev_range:
154 range_match = re.search('(\d+)\:(\d+)', options.rev_range)
155 if not range_match:
156 parser.error('Wrong format for rev-range [%s]' % options.rev_range)
157 else:
158 rev_min = int(range_match.group(1))
159 rev_max = int(range_match.group(2))
160 OutputSkpBenchExpectations(rev_min, rev_max, options.alg)
161 else:
162 parser.error('Please provide mandatory flag %s' % OPTION_REVISION_RANGE)
163
164
165if '__main__' == __name__:
166 main()