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

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

Issue 135223002: telemetry: add smoothness.*.key_silk_cases benchmarks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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/smoothness.py
diff --git a/tools/perf/benchmarks/smoothness.py b/tools/perf/benchmarks/smoothness.py
index 25e69825d6caefa251f6d39a2167c8eeb5880f28..9717aca6827e050a9a555fc74572c9ae5f05acc5 100644
--- a/tools/perf/benchmarks/smoothness.py
+++ b/tools/perf/benchmarks/smoothness.py
@@ -29,3 +29,32 @@ class SmoothnessKeyMobileSites(test.Test):
http://www.chromium.org/developers/design-documents/rendering-benchmarks"""
test = smoothness.Smoothness
page_set = 'page_sets/key_mobile_sites.json'
+
+class SmoothnessKeySilkCases(test.Test):
+ """Measures rendering statistics for the key silk cases"""
+ test = smoothness.Smoothness
nduca 2014/01/13 21:09:04 we have ./run_benchmark silk now... should we ren
ernstm 2014/01/13 21:18:04 You mean renaming the silk benchmark?
+ page_set = 'page_sets/key_silk_cases.json'
+
+class SmoothnessThreadedRasterizationKeySilkCases(test.Test):
+ """Measures rendering statistics for the key silk cases with threaded
+ rasterization
+ """
+ tag = 'threaded_rasterization'
+ test = smoothness.Smoothness
+ page_set = 'page_sets/key_silk_cases.json'
+ def CustomizeBrowserOptions(self, options):
+ options.AppendExtraBrowserArgs('--enable-threaded-compositing')
+ options.AppendExtraBrowserArgs('--force-compositing-mode')
+ options.AppendExtraBrowserArgs('--enable-impl-side-painting')
+
+class SmoothnessGpuRasterizationKeySilkCases(test.Test):
+ """Measures rendering statistics for the key silk cases with GPU rasterization
+ """
+ tag = 'gpu_rasterization'
+ test = smoothness.Smoothness
+ page_set = 'page_sets/key_silk_cases.json'
+ def CustomizeBrowserOptions(self, options):
+ options.AppendExtraBrowserArgs('--enable-threaded-compositing')
+ options.AppendExtraBrowserArgs('--force-compositing-mode')
+ options.AppendExtraBrowserArgs('--enable-impl-side-painting')
+ options.AppendExtraBrowserArgs('--enable-gpu-rasterization')
« 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