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

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

Issue 2415193002: Add infra_tests.py, recipe, buildbotless bot (Closed)
Patch Set: Fixes 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
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 26 matching lines...) Expand all
37 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench', 37 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-VisualBench',
38 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug', 38 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug',
39 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release', 39 'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release',
40 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot', 40 'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot',
41 'Perf-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug', 41 'Perf-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug',
42 ], 42 ],
43 }, 43 },
44 } 44 }
45 45
46 46
47 import time 47 import calendar
48 48
49 49
50 def nanobench_flags(bot): 50 def nanobench_flags(bot):
51 args = ['--pre_log'] 51 args = ['--pre_log']
52 52
53 if 'GPU' in bot: 53 if 'GPU' in bot:
54 args.append('--images') 54 args.append('--images')
55 args.extend(['--gpuStatsDump', 'true']) 55 args.extend(['--gpuStatsDump', 'true'])
56 56
57 if 'Android' in bot and 'GPU' in bot: 57 if 'Android' in bot and 'GPU' in bot:
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 if api.vars.builder_cfg.get('cpu_or_gpu') == 'CPU': 202 if api.vars.builder_cfg.get('cpu_or_gpu') == 'CPU':
203 skip_flag = '--nogpu' 203 skip_flag = '--nogpu'
204 elif api.vars.builder_cfg.get('cpu_or_gpu') == 'GPU': 204 elif api.vars.builder_cfg.get('cpu_or_gpu') == 'GPU':
205 skip_flag = '--nocpu' 205 skip_flag = '--nocpu'
206 if skip_flag: 206 if skip_flag:
207 args.append(skip_flag) 207 args.append(skip_flag)
208 args.extend(nanobench_flags(api.vars.builder_name)) 208 args.extend(nanobench_flags(api.vars.builder_name))
209 209
210 if api.vars.upload_perf_results: 210 if api.vars.upload_perf_results:
211 now = api.time.utcnow() 211 now = api.time.utcnow()
212 ts = int(time.mktime(now.utctimetuple())) 212 ts = int(calendar.timegm(now.utctimetuple()))
213 json_path = api.flavor.device_path_join( 213 json_path = api.flavor.device_path_join(
214 api.flavor.device_dirs.perf_data_dir, 214 api.flavor.device_dirs.perf_data_dir,
215 'nanobench_%s_%d.json' % (api.vars.got_revision, ts)) 215 'nanobench_%s_%d.json' % (api.vars.got_revision, ts))
216 args.extend(['--outResultsFile', json_path]) 216 args.extend(['--outResultsFile', json_path])
217 args.extend(properties) 217 args.extend(properties)
218 218
219 keys_blacklist = ['configuration', 'role', 'is_trybot'] 219 keys_blacklist = ['configuration', 'role', 'is_trybot']
220 args.append('--key') 220 args.append('--key')
221 for k in sorted(api.vars.builder_cfg.keys()): 221 for k in sorted(api.vars.builder_cfg.keys()):
222 if not k in keys_blacklist: 222 if not k in keys_blacklist:
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 buildername='Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-' + 323 buildername='Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-' +
324 'Valgrind-Trybot', 324 'Valgrind-Trybot',
325 mastername='client.skia', 325 mastername='client.skia',
326 slavename='skiabot-linux-swarm-000', 326 slavename='skiabot-linux-swarm-000',
327 buildnumber=5, 327 buildnumber=5,
328 path_config='kitchen', 328 path_config='kitchen',
329 swarm_out_dir='[SWARM_OUT_DIR]', 329 swarm_out_dir='[SWARM_OUT_DIR]',
330 revision='abc123', 330 revision='abc123',
331 **gerrit_kwargs) 331 **gerrit_kwargs)
332 ) 332 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698