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

Side by Side Diff: infra/bots/recipes/swarm_perf.py

Issue 2364483002: Run commandbuffer config on CommandBuffer Perf bots. (Closed)
Patch Set: expectations Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | infra/bots/recipes/swarm_perf.expected/Perf-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 # Recipe module for Skia Swarming perf. 6 # Recipe module for Skia Swarming perf.
7 7
8 8
9 DEPS = [ 9 DEPS = [
10 'build/file', 10 'build/file',
(...skipping 12 matching lines...) Expand all
23 TEST_BUILDERS = { 23 TEST_BUILDERS = {
24 'client.skia': { 24 'client.skia': {
25 'skiabot-linux-swarm-000': [ 25 'skiabot-linux-swarm-000': [
26 ('Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug' + 26 ('Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug' +
27 '-GN_Android_Vulkan'), 27 '-GN_Android_Vulkan'),
28 'Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-GN_Android', 28 'Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-GN_Android',
29 'Perf-Android-Clang-Nexus6-GPU-Adreno420-arm-Release-GN_Android', 29 'Perf-Android-Clang-Nexus6-GPU-Adreno420-arm-Release-GN_Android',
30 'Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-GN_Android', 30 'Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-GN_Android',
31 'Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-GN_Android', 31 'Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-GN_Android',
32 'Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Release-GN', 32 'Perf-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Release-GN',
33 'Perf-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer',
33 'Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release-GN', 34 'Perf-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Release-GN',
34 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', 35 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
35 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench', 36 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench',
36 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug', 37 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug',
37 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release', 38 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release',
38 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot', 39 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot',
39 'Perf-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug', 40 'Perf-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug',
40 ], 41 ],
41 }, 42 },
42 } 43 }
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 config.extend(['msaa16', 'nvpr16', 'nvprdit16']) 79 config.extend(['msaa16', 'nvpr16', 'nvprdit16'])
79 80
80 # Bench instanced rendering on a limited number of platforms 81 # Bench instanced rendering on a limited number of platforms
81 if 'Nexus6' in bot: 82 if 'Nexus6' in bot:
82 config.append('esinst') # esinst4 isn't working yet on Adreno. 83 config.append('esinst') # esinst4 isn't working yet on Adreno.
83 elif 'TegraX1' in bot: 84 elif 'TegraX1' in bot:
84 config.extend(['glinst', 'glinst4']) 85 config.extend(['glinst', 'glinst4'])
85 elif 'MacMini6.2' in bot: 86 elif 'MacMini6.2' in bot:
86 config.extend(['glinst', 'glinst16']) 87 config.extend(['glinst', 'glinst16'])
87 88
89 if 'CommandBuffer' in bot:
90 config = ['commandbuffer']
88 if 'Vulkan' in bot: 91 if 'Vulkan' in bot:
89 config = ['vk'] 92 config = ['vk']
90 93
91 args.append('--config') 94 args.append('--config')
92 args.extend(config) 95 args.extend(config)
93 96
94 if 'Valgrind' in bot: 97 if 'Valgrind' in bot:
95 # Don't care about Valgrind performance. 98 # Don't care about Valgrind performance.
96 args.extend(['--loops', '1']) 99 args.extend(['--loops', '1'])
97 args.extend(['--samples', '1']) 100 args.extend(['--samples', '1'])
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 buildername='Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-' + 314 buildername='Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-' +
312 'Valgrind-Trybot', 315 'Valgrind-Trybot',
313 mastername='client.skia', 316 mastername='client.skia',
314 slavename='skiabot-linux-swarm-000', 317 slavename='skiabot-linux-swarm-000',
315 buildnumber=5, 318 buildnumber=5,
316 path_config='kitchen', 319 path_config='kitchen',
317 swarm_out_dir='[SWARM_OUT_DIR]', 320 swarm_out_dir='[SWARM_OUT_DIR]',
318 revision='abc123', 321 revision='abc123',
319 **gerrit_kwargs) 322 **gerrit_kwargs)
320 ) 323 )
OLDNEW
« no previous file with comments | « no previous file | infra/bots/recipes/swarm_perf.expected/Perf-Mac-Clang-MacMini6.2-GPU-HD4000-x86_64-Debug-CommandBuffer.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698