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

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

Issue 2265083002: [Telemetry] Change default BattOr benchmark chrome tracing categories to be rail. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 from core import perf_benchmark 5 from core import perf_benchmark
6 from telemetry.timeline import chrome_trace_category_filter
6 from telemetry.web_perf import timeline_based_measurement 7 from telemetry.web_perf import timeline_based_measurement
7 import page_sets 8 import page_sets
8 from telemetry import benchmark 9 from telemetry import benchmark
9 10
10 11
11 # TODO(rnephew): Remove BattOr naming from all benchmarks once the BattOr tests 12 # TODO(rnephew): Remove BattOr naming from all benchmarks once the BattOr tests
12 # are the primary means of benchmarking power. 13 # are the primary means of benchmarking power.
13 class _BattOrBenchmark(perf_benchmark.PerfBenchmark): 14 class _BattOrBenchmark(perf_benchmark.PerfBenchmark):
14 15
15 def CreateTimelineBasedMeasurementOptions(self): 16 def CreateTimelineBasedMeasurementOptions(self):
16 options = timeline_based_measurement.Options() 17 options = timeline_based_measurement.Options(
18 chrome_trace_category_filter.ChromeTraceCategoryFilter())
nednguyen 2016/08/23 17:19:28 Oh, this may mean all the things by default. +Zhe
19 options.config.chrome_trace_config.category_filter.AddFilterString('rail')
17 options.config.enable_battor_trace = True 20 options.config.enable_battor_trace = True
18 options.config.enable_chrome_trace = True 21 options.config.enable_chrome_trace = True
19 options.config.enable_atrace_trace = True 22 options.config.enable_atrace_trace = True
20 options.config.atrace_config.categories = ['sched'] 23 options.config.atrace_config.categories = ['sched']
21 options.config.enable_cpu_trace = True 24 options.config.enable_cpu_trace = True
22 options.config.chrome_trace_config.SetDefaultOverheadFilter() 25 options.config.chrome_trace_config.SetDefaultOverheadFilter()
23 options.SetTimelineBasedMetrics(['powerMetric', 'clockSyncLatencyMetric']) 26 options.SetTimelineBasedMetrics(['powerMetric', 'clockSyncLatencyMetric'])
24 return options 27 return options
25 28
26 @classmethod 29 @classmethod
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 options = timeline_based_measurement.Options() 112 options = timeline_based_measurement.Options()
110 options.config.enable_battor_trace = True 113 options.config.enable_battor_trace = True
111 options.config.enable_chrome_trace = False 114 options.config.enable_chrome_trace = False
112 options.config.chrome_trace_config.SetDefaultOverheadFilter() 115 options.config.chrome_trace_config.SetDefaultOverheadFilter()
113 options.SetTimelineBasedMetrics(['powerMetric', 'clockSyncLatencyMetric']) 116 options.SetTimelineBasedMetrics(['powerMetric', 'clockSyncLatencyMetric'])
114 return options 117 return options
115 118
116 @classmethod 119 @classmethod
117 def Name(cls): 120 def Name(cls):
118 return 'battor.power_cases_no_chrome_trace' 121 return 'battor.power_cases_no_chrome_trace'
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