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

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

Issue 2409073003: Add loading mobile benchmark (but disable it) (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 | « tools/perf/benchmarks/loading.py ('k') | tools/perf/page_sets/data/loading_mobile.json » ('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 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
11 from core import perf_benchmark 11 from core import perf_benchmark
12 import page_sets 12 import page_sets
13 13
14 from telemetry import benchmark 14 from telemetry import benchmark
15 from telemetry.page import cache_temperature 15 from telemetry.page import cache_temperature
16 from telemetry.timeline import chrome_trace_category_filter 16 from telemetry.timeline import chrome_trace_category_filter
17 from telemetry.web_perf import timeline_based_measurement 17 from telemetry.web_perf import timeline_based_measurement
18 18
19 19
20 def TimelineBasedMeasurementOptionsForLoadingMetric():
21 cat_filter = chrome_trace_category_filter.ChromeTraceCategoryFilter()
22
23 # "blink.console" is used for marking ranges in
24 # cache_temperature.MarkTelemetryInternal.
25 cat_filter.AddIncludedCategory('blink.console')
26
27 # "navigation" and "blink.user_timing" are needed to capture core
28 # navigation events.
29 cat_filter.AddIncludedCategory('navigation')
30 cat_filter.AddIncludedCategory('blink.user_timing')
31
32 # "loading" is needed for first-meaningful-paint computation.
33 cat_filter.AddIncludedCategory('loading')
34
35 # "toplevel" category is used to capture TaskQueueManager events
36 # necessary to compute time-to-interactive.
37 cat_filter.AddIncludedCategory('toplevel')
38
39 tbm_options = timeline_based_measurement.Options(
40 overhead_level=cat_filter)
41 tbm_options.SetTimelineBasedMetrics(['loadingMetric'])
42 return tbm_options
43
44
20 class _PageCyclerV2(perf_benchmark.PerfBenchmark): 45 class _PageCyclerV2(perf_benchmark.PerfBenchmark):
21 options = {'pageset_repeat': 2} 46 options = {'pageset_repeat': 2}
22 47
23 def CreateTimelineBasedMeasurementOptions(self): 48 def CreateTimelineBasedMeasurementOptions(self):
24 cat_filter = chrome_trace_category_filter.ChromeTraceCategoryFilter() 49 return TimelineBasedMeasurementOptionsForLoadingMetric()
25
26 # "blink.console" is used for marking ranges in
27 # cache_temperature.MarkTelemetryInternal.
28 cat_filter.AddIncludedCategory('blink.console')
29
30 # "navigation" and "blink.user_timing" are needed to capture core
31 # navigation events.
32 cat_filter.AddIncludedCategory('navigation')
33 cat_filter.AddIncludedCategory('blink.user_timing')
34
35 # "loading" is needed for first-meaningful-paint computation.
36 cat_filter.AddIncludedCategory('loading')
37
38 # "toplevel" category is used to capture TaskQueueManager events
39 # necessary to compute time-to-interactive.
40 cat_filter.AddIncludedCategory('toplevel')
41
42 tbm_options = timeline_based_measurement.Options(
43 overhead_level=cat_filter)
44 tbm_options.SetTimelineBasedMetrics(['loadingMetric'])
45 return tbm_options
46 50
47 @classmethod 51 @classmethod
48 def ShouldDisable(cls, possible_browser): 52 def ShouldDisable(cls, possible_browser):
49 # crbug.com/619254 53 # crbug.com/619254
50 if possible_browser.browser_type == 'reference': 54 if possible_browser.browser_type == 'reference':
51 return True 55 return True
52 56
53 # crbug.com/616781 57 # crbug.com/616781
54 if (cls.IsSvelte(possible_browser) or 58 if (cls.IsSvelte(possible_browser) or
55 possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X' or 59 possible_browser.platform.GetDeviceTypeName() == 'Nexus 5X' or
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 set, without running in out-of-process iframes mode.. """ 221 set, without running in out-of-process iframes mode.. """
218 page_set = page_sets.OopifBasicPageSet 222 page_set = page_sets.OopifBasicPageSet
219 223
220 @classmethod 224 @classmethod
221 def Name(cls): 225 def Name(cls):
222 return 'page_cycler_v2.basic_oopif' 226 return 'page_cycler_v2.basic_oopif'
223 227
224 def CreateStorySet(self, options): 228 def CreateStorySet(self, options):
225 return page_sets.OopifBasicPageSet(cache_temperatures=[ 229 return page_sets.OopifBasicPageSet(cache_temperatures=[
226 cache_temperature.PCV1_COLD, cache_temperature.PCV1_WARM]) 230 cache_temperature.PCV1_COLD, cache_temperature.PCV1_WARM])
OLDNEW
« no previous file with comments | « tools/perf/benchmarks/loading.py ('k') | tools/perf/page_sets/data/loading_mobile.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698