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

Unified Diff: tools/nanobench_flags.py

Issue 1022083002: Only use 256x256 tiles on hd2000 nanobench bots (Closed) Base URL: https://skia.googlesource.com/skia.git@nanobenchTileSize
Patch Set: Created 5 years, 9 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/nanobench_flags.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/nanobench_flags.py
diff --git a/tools/nanobench_flags.py b/tools/nanobench_flags.py
index 81cd8cebe096aff272013afc5ff8336927252908..cbd5c847961d601f61a356c36b390d63cc20c531 100755
--- a/tools/nanobench_flags.py
+++ b/tools/nanobench_flags.py
@@ -45,6 +45,10 @@ def get_args(bot):
elif 'Valgrind_CPU' in bot:
args.append('--nogpu')
+ if 'HD2000' in bot:
+ args.extend(['--benchTileW', '256'])
+ args.extend(['--benchTileH', '256'])
+
match = []
if 'Android' in bot:
# Segfaults when run as GPU bench. Very large texture?
« no previous file with comments | « tools/nanobench_flags.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698