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

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

Issue 2024103005: Re-enable PCv2 on known-to-work platforms Mac/Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 """The page cycler v2. 5 """The page cycler v2.
6 6
7 For details, see design doc: 7 For details, see design doc:
8 https://docs.google.com/document/d/1EZQX-x3eEphXupiX-Hq7T4Afju5_sIdxPWYetj7ynd0 8 https://docs.google.com/document/d/1EZQX-x3eEphXupiX-Hq7T4Afju5_sIdxPWYetj7ynd0
9 """ 9 """
10 10
(...skipping 10 matching lines...) Expand all
21 def CreateTimelineBasedMeasurementOptions(self): 21 def CreateTimelineBasedMeasurementOptions(self):
22 cat_filter = tracing_category_filter.TracingCategoryFilter( 22 cat_filter = tracing_category_filter.TracingCategoryFilter(
23 filter_string='*,blink.console,navigation,blink.user_timing,loading') 23 filter_string='*,blink.console,navigation,blink.user_timing,loading')
24 24
25 tbm_options = timeline_based_measurement.Options( 25 tbm_options = timeline_based_measurement.Options(
26 overhead_level=cat_filter) 26 overhead_level=cat_filter)
27 tbm_options.SetTimelineBasedMetric('firstPaintMetric') 27 tbm_options.SetTimelineBasedMetric('firstPaintMetric')
28 return tbm_options 28 return tbm_options
29 29
30 30
31 @benchmark.Disabled('all') # crbug.com/615178 31 @benchmark.Disabled('win', 'android') # crbug.com/615178
32 class PageCyclerV2Typical25(_PageCyclerV2): 32 class PageCyclerV2Typical25(_PageCyclerV2):
33 """Page load time benchmark for a 25 typical web pages. 33 """Page load time benchmark for a 25 typical web pages.
34 34
35 Designed to represent typical, not highly optimized or highly popular web 35 Designed to represent typical, not highly optimized or highly popular web
36 sites. Runs against pages recorded in June, 2014. 36 sites. Runs against pages recorded in June, 2014.
37 """ 37 """
38 options = {'pageset_repeat': 3} 38 options = {'pageset_repeat': 3}
39 39
40 @classmethod 40 @classmethod
41 def Name(cls): 41 def Name(cls):
42 return 'page_cycler_v2.typical_25' 42 return 'page_cycler_v2.typical_25'
43 43
44 def CreateStorySet(self, options): 44 def CreateStorySet(self, options):
45 return page_sets.Typical25PageSet(run_no_page_interactions=True, 45 return page_sets.Typical25PageSet(run_no_page_interactions=True,
46 cache_temperatures=[ 46 cache_temperatures=[
47 cache_temperature.PCV1_COLD, cache_temperature.PCV1_WARM]) 47 cache_temperature.PCV1_COLD, cache_temperature.PCV1_WARM])
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