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

Side by Side Diff: tools/perf/benchmarks/rasterize_and_record_micro.py

Issue 2388423002: Rename rasterize_and_record_micro.key_mobile_sites{_smooth,} and top_25{_smooth,} (Closed)
Patch Set: Created 4 years, 2 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 from core import perf_benchmark 5 from core import perf_benchmark
6 6
7 import ct_benchmarks_util 7 import ct_benchmarks_util
8 from measurements import rasterize_and_record_micro 8 from measurements import rasterize_and_record_micro
9 import page_sets 9 import page_sets
10 from telemetry import benchmark 10 from telemetry import benchmark
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 46
47 # RasterizeAndRecord disabled on mac because of crbug.com/350684. 47 # RasterizeAndRecord disabled on mac because of crbug.com/350684.
48 # RasterizeAndRecord disabled on windows because of crbug.com/338057. 48 # RasterizeAndRecord disabled on windows because of crbug.com/338057.
49 @benchmark.Disabled('mac', 'win', 49 @benchmark.Disabled('mac', 'win',
50 'android') # http://crbug.com/610018 50 'android') # http://crbug.com/610018
51 class RasterizeAndRecordMicroTop25(_RasterizeAndRecordMicro): 51 class RasterizeAndRecordMicroTop25(_RasterizeAndRecordMicro):
52 """Measures rasterize and record performance on the top 25 web pages. 52 """Measures rasterize and record performance on the top 25 web pages.
53 53
54 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 54 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
55 page_set = page_sets.Top25PageSet 55 page_set = page_sets.Top25PageSet
wkorman 2016/10/04 18:31:02 This seems to be similar -- not smooth here, but n
wkorman 2016/10/04 21:06:02 With vmpstr@ feedback I'm supportive of this chang
56 56
57 @classmethod 57 @classmethod
58 def Name(cls): 58 def Name(cls):
59 return 'rasterize_and_record_micro.top_25_smooth' 59 return 'rasterize_and_record_micro.top_25_smooth'
60 60
61 61
62 @benchmark.Disabled('mac', 'win', 62 @benchmark.Disabled('mac', 'win',
63 'android') # http://crbug.com/531597 63 'android') # http://crbug.com/531597
64 class RasterizeAndRecordMicroKeyMobileSites(_RasterizeAndRecordMicro): 64 class RasterizeAndRecordMicroKeyMobileSites(_RasterizeAndRecordMicro):
65 """Measures rasterize and record performance on the key mobile sites. 65 """Measures rasterize and record performance on the key mobile sites.
66 66
67 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 67 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
68 page_set = page_sets.KeyMobileSitesPageSet 68 page_set = page_sets.KeyMobileSitesSmoothPageSet
wkorman 2016/10/04 18:31:02 The other possibility is that the name was a typo,
vmpstr 2016/10/04 19:00:14 I think the benchmark might predate "smooth" pages
69 69
70 @classmethod 70 @classmethod
71 def Name(cls): 71 def Name(cls):
72 return 'rasterize_and_record_micro.key_mobile_sites_smooth' 72 return 'rasterize_and_record_micro.key_mobile_sites_smooth'
73 73
74 74
75 @benchmark.Disabled('mac', 'win', 'android') # http://crbug.com/610424 75 @benchmark.Disabled('mac', 'win', 'android') # http://crbug.com/610424
76 class RasterizeAndRecordMicroKeySilkCases(_RasterizeAndRecordMicro): 76 class RasterizeAndRecordMicroKeySilkCases(_RasterizeAndRecordMicro):
77 """Measures rasterize and record performance on the silk sites. 77 """Measures rasterize and record performance on the silk sites.
78 78
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 _RasterizeAndRecordMicro.AddBenchmarkCommandLineArgs(parser) 129 _RasterizeAndRecordMicro.AddBenchmarkCommandLineArgs(parser)
130 ct_benchmarks_util.AddBenchmarkCommandLineArgs(parser) 130 ct_benchmarks_util.AddBenchmarkCommandLineArgs(parser)
131 131
132 @classmethod 132 @classmethod
133 def ProcessCommandLineArgs(cls, parser, args): 133 def ProcessCommandLineArgs(cls, parser, args):
134 ct_benchmarks_util.ValidateCommandLineArgs(parser, args) 134 ct_benchmarks_util.ValidateCommandLineArgs(parser, args)
135 135
136 def CreateStorySet(self, options): 136 def CreateStorySet(self, options):
137 return page_sets.CTPageSet( 137 return page_sets.CTPageSet(
138 options.urls_list, options.user_agent, options.archive_data_file) 138 options.urls_list, options.user_agent, options.archive_data_file)
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