aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/perf.py
diff options
context:
space:
mode:
authorGravatar Chris Dalton <csmartdalton@google.com>2018-05-17 10:17:10 -0600
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-17 17:35:23 +0000
commit2b937f54c217faa97f2087656db1c8117513e703 (patch)
tree1d49888c36755dd60dd1a64393a49c088ed4b27e /infra/bots/recipes/perf.py
parent000e00df133695efb76ac07d028703cdf55837aa (diff)
Add MoltenVK_Vulkan bots
Adds a prebuilt MoltenVK framework asset from: KhronosGroup/MoltenVK.git:0279543e0bb561f8d0166d4030481136bc914fec And creates bots that use it. Bug: skia: Change-Id: I081b2745c41a25de9ecd94a5363f4fb13b120215 Reviewed-on: https://skia-review.googlesource.com/128646 Commit-Queue: Chris Dalton <csmartdalton@google.com> Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Diffstat (limited to 'infra/bots/recipes/perf.py')
-rw-r--r--infra/bots/recipes/perf.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/infra/bots/recipes/perf.py b/infra/bots/recipes/perf.py
index e7ee70cd9f..8179b1e83d 100644
--- a/infra/bots/recipes/perf.py
+++ b/infra/bots/recipes/perf.py
@@ -102,7 +102,8 @@ def nanobench_flags(api, bot):
if 'CommandBuffer' in bot:
configs = ['commandbuffer']
if 'Vulkan' in bot:
- configs = ['vk']
+ # skbug.com/7961
+ configs = ['vk' if not 'MoltenVK' in bot else 'vknostencils']
if 'ANGLE' in bot:
# Test only ANGLE configs.
@@ -180,6 +181,10 @@ def nanobench_flags(api, bot):
'Win' in bot):
# skia:7677
match.append('~path_text_clipped_uncached')
+ if 'MoltenVK' in bot:
+ # skbug.com/7962
+ match.append('~^path_text_clipped_uncached$')
+ match.append('~^path_text_uncached$')
if ('Intel' in bot and api.vars.is_linux and not 'Vulkan' in bot):
# TODO(dogben): Track down what's causing bots to die.
verbose = True
@@ -366,6 +371,8 @@ TEST_BUILDERS = [
'Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All',
('Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-'
'CommandBuffer'),
+ ('Perf-Mac-Clang-MacBookPro11.5-GPU-RadeonHD8870M-x86_64-Release-All-'
+ 'MoltenVK_Vulkan'),
('Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-'
'Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41'),
('Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-'