aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots
diff options
context:
space:
mode:
authorGravatar Robert Phillips <robertphillips@google.com>2018-06-26 13:47:44 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-26 18:33:42 +0000
commit9b6125d046198bff736a509769b51908aaff326a (patch)
treead27896df2a5113f5b426c509183b083b9e64afc /infra/bots
parent001c67fde17106c0b415b345ac17ed74d379f941 (diff)
Disable --gpuThreads when skpbenching DDLs
This CL requires https://skia-review.googlesource.com/c/skia/+/136175 (Add --gpuThreads support to skpbench.py (take 2)) Change-Id: Iced00d6b6184ec41efe66a71a5b4e062ce7205ee Reviewed-on: https://skia-review.googlesource.com/136596 Commit-Queue: Robert Phillips <robertphillips@google.com> Reviewed-by: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra/bots')
-rw-r--r--infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLRecord_9x9.json2
-rw-r--r--infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLTotal_9x9.json2
-rw-r--r--infra/bots/recipes/skpbench.py2
3 files changed, 6 insertions, 0 deletions
diff --git a/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLRecord_9x9.json b/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLRecord_9x9.json
index b0706fc8f7..53cefd9908 100644
--- a/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLRecord_9x9.json
+++ b/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLRecord_9x9.json
@@ -69,6 +69,8 @@
"vk",
"-v5",
"--ddl",
+ "--gpuThreads",
+ "0",
"--ddlRecord",
"--ddlNumAdditionalThreads",
"9",
diff --git a/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLTotal_9x9.json b/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLTotal_9x9.json
index d558b858ab..5ce43831df 100644
--- a/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLTotal_9x9.json
+++ b/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLTotal_9x9.json
@@ -69,6 +69,8 @@
"vk",
"-v5",
"--ddl",
+ "--gpuThreads",
+ "0",
"--ddlNumAdditionalThreads",
"9",
"--ddlTilingWidthHeight",
diff --git a/infra/bots/recipes/skpbench.py b/infra/bots/recipes/skpbench.py
index b70cbcf9ae..c0c54bdbd9 100644
--- a/infra/bots/recipes/skpbench.py
+++ b/infra/bots/recipes/skpbench.py
@@ -63,6 +63,8 @@ def skpbench_steps(api):
if 'DDL' in api.vars.builder_name:
# This adds the "--ddl" flag for both DDLTotal and DDLRecord
skpbench_args += ['--ddl']
+ # disable the mask generation threads for sanity's sake in DDL mode
+ skpbench_args += ['--gpuThreads', '0']
if 'DDLRecord' in api.vars.builder_name:
skpbench_args += ['--ddlRecord']
if '9x9' in api.vars.builder_name: