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

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

Issue 643273002: telemetry: Remove 7 obsolete rendering benchmarks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add repaint.key_mobile_sites back. Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/perf/benchmarks/silk_flags.py ('k') | tools/perf/benchmarks/thread_times.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/smoothness.py
diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py
index 332a46b8a63acf9b2b9cfceec396187b6fb13f64..4eac7b6586edd02ad33add45993e8a77f64f55f3 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -63,18 +63,6 @@ class SmoothnessKeySilkCases(benchmark.Benchmark):
@benchmark.Enabled('android')
-class SmoothnessFastPathKeySilkCases(benchmark.Benchmark):
- """Measures rendering statistics for the key silk cases without GPU
- rasterization using bleeding edge rendering fast paths.
- """
- tag = 'fast_path'
- test = smoothness.Smoothness
- page_set = page_sets.KeySilkCasesPageSet
- def CustomizeBrowserOptions(self, options):
- silk_flags.CustomizeBrowserOptionsForFastPath(options)
-
-
-@benchmark.Enabled('android') # crbug.com/399125
class SmoothnessGpuRasterizationTop25(benchmark.Benchmark):
"""Measures rendering statistics for the top 25 with GPU rasterization
"""
@@ -85,7 +73,7 @@ class SmoothnessGpuRasterizationTop25(benchmark.Benchmark):
silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
-@benchmark.Enabled('android') # crbug.com/399125
+@benchmark.Enabled('android')
class SmoothnessGpuRasterizationKeyMobileSites(benchmark.Benchmark):
"""Measures rendering statistics for the key mobile sites with GPU
rasterization
@@ -97,31 +85,6 @@ class SmoothnessGpuRasterizationKeyMobileSites(benchmark.Benchmark):
silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
-@benchmark.Disabled # crbug.com/399125
-class SmoothnessGpuRasterizationKeySilkCases(benchmark.Benchmark):
- """Measures rendering statistics for the key silk cases with GPU rasterization
- """
- tag = 'gpu_rasterization'
- test = smoothness.Smoothness
- page_set = page_sets.KeySilkCasesPageSet
- def CustomizeBrowserOptions(self, options):
- silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
-
-
-@benchmark.Disabled # crbug.com/399125
-class SmoothnessFastPathGpuRasterizationKeySilkCases(
- SmoothnessGpuRasterizationKeySilkCases):
- """Measures rendering statistics for the key silk cases with GPU rasterization
- using bleeding edge rendering fast paths.
- """
- tag = 'fast_path_gpu_rasterization'
- test = smoothness.Smoothness
- page_set = page_sets.KeySilkCasesPageSet
- def CustomizeBrowserOptions(self, options):
- super(SmoothnessFastPathGpuRasterizationKeySilkCases, self). \
- CustomizeBrowserOptions(options)
- silk_flags.CustomizeBrowserOptionsForFastPath(options)
-
@benchmark.Enabled('android')
class SmoothnessSyncScrollKeyMobileSites(benchmark.Benchmark):
"""Measures rendering statistics for the key mobile sites with synchronous
@@ -158,17 +121,6 @@ class SmoothnessPolymer(benchmark.Benchmark):
@benchmark.Enabled('android')
-class SmoothnessFastPathPolymer(benchmark.Benchmark):
- """Measures rendering statistics for the Polymer cases without GPU
- rasterization using bleeding edge rendering fast paths.
- """
- tag = 'fast_path'
- test = smoothness.Smoothness
- page_set = page_sets.PolymerPageSet
- def CustomizeBrowserOptions(self, options):
- silk_flags.CustomizeBrowserOptionsForFastPath(options)
-
-@benchmark.Enabled('android') # crbug.com/399125
class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark):
"""Measures rendering statistics for the Polymer cases with GPU rasterization
"""
@@ -177,18 +129,3 @@ class SmoothnessGpuRasterizationPolymer(benchmark.Benchmark):
page_set = page_sets.PolymerPageSet
def CustomizeBrowserOptions(self, options):
silk_flags.CustomizeBrowserOptionsForGpuRasterization(options)
-
-
-@benchmark.Disabled # crbug.com/399125
-class SmoothnessFastPathGpuRasterizationPolymer(
- SmoothnessGpuRasterizationPolymer):
- """Measures rendering statistics for the Polymer cases with GPU rasterization
- using bleeding edge rendering fast paths.
- """
- tag = 'fast_path_gpu_rasterization'
- test = smoothness.Smoothness
- page_set = page_sets.PolymerPageSet
- def CustomizeBrowserOptions(self, options):
- super(SmoothnessFastPathGpuRasterizationPolymer, self). \
- CustomizeBrowserOptions(options)
- silk_flags.CustomizeBrowserOptionsForFastPath(options)
« no previous file with comments | « tools/perf/benchmarks/silk_flags.py ('k') | tools/perf/benchmarks/thread_times.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698