aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-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: