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

Unified Diff: tools/perf/benchmarks/gpu_times.py

Issue 896593002: Revert of Standardize "gpu_times" metric names and add GPU rasterization versions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/gpu_times.py
diff --git a/tools/perf/benchmarks/gpu_times.py b/tools/perf/benchmarks/gpu_times.py
index 035fbfa712fff7cb0b126cfacc27690c373bee2a..46d0db1fac703264e7c917d0e98c5db5badc3627 100644
--- a/tools/perf/benchmarks/gpu_times.py
+++ b/tools/perf/benchmarks/gpu_times.py
@@ -1,7 +1,6 @@
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-from benchmarks import silk_flags
from metrics import gpu_timeline
import page_sets
from telemetry import benchmark
@@ -32,37 +31,7 @@
"""Measures GPU timeline metric on key mobile sites."""
page_set = page_sets.KeyMobileSitesSmoothPageSet
- @classmethod
- def Name(cls):
- return 'gpu_times.key_mobile_sites_smooth'
-
-@benchmark.Enabled('android')
-class GPUTimesGpuRasterizationKeyMobileSites(_GPUTimes):
- """Measures GPU timeline metric on key mobile sites with GPU rasterization.
- """
- page_set = page_sets.KeyMobileSitesSmoothPageSet
- def CustomizeBrowserOptions(self, options):
- silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
-
- @classmethod
- def Name(cls):
- return 'gpu_times.gpu_rasterization.key_mobile_sites_smooth'
class GPUTimesTop25Sites(_GPUTimes):
"""Measures GPU timeline metric for the top 25 sites."""
page_set = page_sets.Top25SmoothPageSet
-
- @classmethod
- def Name(cls):
- return 'gpu_times.top_25_smooth'
-
-class GPUTimesGpuRasterizationTop25Sites(_GPUTimes):
- """Measures GPU timeline metric for the top 25 sites with GPU rasterization.
- """
- page_set = page_sets.Top25SmoothPageSet
- def CustomizeBrowserOptions(self, options):
- silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
-
- @classmethod
- def Name(cls):
- return 'gpu_times.gpu_rasterization.top_25_smooth'
« 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