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

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

Issue 183413002: Enable bleeding edge rendering fast paths for Silk benchmarks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 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 | Annotate | Revision Log
« no previous file with comments | « tools/perf/benchmarks/rasterize_and_record.py ('k') | tools/perf/benchmarks/silk_flags.py » ('j') | 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 benchmarks import silk_flags
5 from measurements import rasterize_and_record_micro 6 from measurements import rasterize_and_record_micro
6 from telemetry import test 7 from telemetry import test
7 8
8 9
9 @test.Disabled('android', 'linux') 10 @test.Disabled('android', 'linux')
10 class RasterizeAndRecordMicroTop25(test.Test): 11 class RasterizeAndRecordMicroTop25(test.Test):
11 """Measures rasterize and record performance on the top 25 web pages. 12 """Measures rasterize and record performance on the top 25 web pages.
12 13
13 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 14 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
14 test = rasterize_and_record_micro.RasterizeAndRecordMicro 15 test = rasterize_and_record_micro.RasterizeAndRecordMicro
15 page_set = 'page_sets/top_25.json' 16 page_set = 'page_sets/top_25.json'
16 17
17 18
18 class RasterizeAndRecordMicroKeyMobileSites(test.Test): 19 class RasterizeAndRecordMicroKeyMobileSites(test.Test):
19 """Measures rasterize and record performance on the key mobile sites. 20 """Measures rasterize and record performance on the key mobile sites.
20 21
21 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 22 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
22 test = rasterize_and_record_micro.RasterizeAndRecordMicro 23 test = rasterize_and_record_micro.RasterizeAndRecordMicro
23 page_set = 'page_sets/key_mobile_sites.json' 24 page_set = 'page_sets/key_mobile_sites.json'
24 25
25 26
26 class RasterizeAndRecordMicroKeySilkCases(test.Test): 27 class RasterizeAndRecordMicroKeySilkCases(test.Test):
27 """Measures rasterize and record performance on the silk sites. 28 """Measures rasterize and record performance on the silk sites.
28 29
29 http://www.chromium.org/developers/design-documents/rendering-benchmarks""" 30 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
30 test = rasterize_and_record_micro.RasterizeAndRecordMicro 31 test = rasterize_and_record_micro.RasterizeAndRecordMicro
31 page_set = 'page_sets/key_silk_cases.json' 32 page_set = 'page_sets/key_silk_cases.json'
33
34
35 class RasterizeAndRecordMicroFastPathKeySilkCases(test.Test):
36 """Measures rasterize and record performance on the silk sites.
37
38 Uses bleeding edge rendering fast paths.
39
40 http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
41 tag = 'fast_path'
42 test = rasterize_and_record_micro.RasterizeAndRecordMicro
43 page_set = 'page_sets/key_silk_cases.json'
44 def CustomizeBrowserOptions(self, options):
45 silk_flags.CustomizeBrowserOptionsForFastPath(options)
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/rasterize_and_record.py ('k') | tools/perf/benchmarks/silk_flags.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698