Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Side by Side Diff: tools/auto_bisect/bisect.cfg

Issue 2715243003: Not for review: perf bisect for Windows checkerboarding regression
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Config file read by run-bisect-perf-regression.py. 5 """Config file read by run-bisect-perf-regression.py.
6 6
7 This script is intended for use by anyone that wants to run a remote bisection 7 This script is intended for use by anyone that wants to run a remote bisection
8 on a range of revisions to look for a performance regression. Modify the config 8 on a range of revisions to look for a performance regression. Modify the config
9 below and add the revision range, performance command, and metric. You can then 9 below and add the revision range, performance command, and metric. You can then
10 run a git try <bot>. 10 run a git try <bot>.
(...skipping 26 matching lines...) Expand all
37 'max_time_minutes': '20', 37 'max_time_minutes': '20',
38 'truncate_percent': '25', 38 'truncate_percent': '25',
39 } 39 }
40 40
41 For Windows, if you're calling a python script you will need to add "python" 41 For Windows, if you're calling a python script you will need to add "python"
42 to the command, so the command would be changed to: 42 to the command, so the command would be changed to:
43 'python tools/perf/run_benchmark -v --browser=release sunspider', 43 'python tools/perf/run_benchmark -v --browser=release sunspider',
44 """ 44 """
45 45
46 config = { 46 config = {
47 'command': '', 47 'command': 'python tools/perf/run_benchmark -v --browser=release_x64 --also-ru n-disabled-tests smoothness.tough_scrolling_cases',
48 'good_revision': '', 48 'good_revision': '7aaa35ff0a9ab97fba82c7edcc2c90c186828e10',
49 'bad_revision': '', 49 'bad_revision': '6b4943bfc61acc877f92b183b849922edbe85e8d',
50 'metric': '', 50 'metric': 'mean_pixels_checkerboarded/mean_pixels_checkerboarded',
51 'repeat_count': '', 51 'repeat_count': '40',
52 'max_time_minutes': '', 52 'max_time_minutes': '60',
53 'truncate_percent': '', 53 'truncate_percent': '25',
54 } 54 }
55 55
56 # Workaround git try issue, see crbug.com/257689 56 # Workaround git try issue, see crbug.com/257689
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698