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

Side by Side Diff: tools/perf/generate_perf_json.py

Issue 2494763002: correcting gpu dimension for Mac 10.10 perf bots (Closed)
Patch Set: Removing comment out Created 4 years, 1 month 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 | « testing/buildbot/chromium.perf.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2016 The Chromium Authors. All rights reserved. 2 # Copyright 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Script to generate chromium.perf.json and chromium.perf.fyi.json in 6 """Script to generate chromium.perf.json and chromium.perf.fyi.json in
7 the src/testing/buildbot directory. Maintaining these files by hand is 7 the src/testing/buildbot directory. Maintaining these files by hand is
8 too unwieldy. 8 too unwieldy.
9 """ 9 """
10 10
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 334
335 waterfall = add_tester( 335 waterfall = add_tester(
336 waterfall, 'Mac 10.11 Perf', 'chromium-rel-mac11', 336 waterfall, 'Mac 10.11 Perf', 'chromium-rel-mac11',
337 'mac', num_host_shards=5) 337 'mac', num_host_shards=5)
338 waterfall = add_tester( 338 waterfall = add_tester(
339 waterfall, 'Mac 10.10 Perf', 'chromium-rel-mac10', 339 waterfall, 'Mac 10.10 Perf', 'chromium-rel-mac10',
340 'mac', 340 'mac',
341 swarming=[ 341 swarming=[
342 { 342 {
343 'os': 'Mac-10.10', 343 'os': 'Mac-10.10',
344 'gpu': 'Intel Iris Graphics 5100', 344 'gpu': '8086:0a2e',
345 'device_ids': [ 345 'device_ids': [
346 'build158-m1', 'build159-m1', 'build160-m1', 346 'build158-m1', 'build159-m1', 'build160-m1',
347 'build161-m1', 'build162-m1'] 347 'build161-m1', 'build162-m1']
348 } 348 }
349 ]) 349 ])
350 waterfall = add_tester( 350 waterfall = add_tester(
351 waterfall, 'Mac Retina Perf', 351 waterfall, 'Mac Retina Perf',
352 'chromium-rel-mac-retina', 'mac', num_host_shards=5) 352 'chromium-rel-mac-retina', 'mac', num_host_shards=5)
353 waterfall = add_tester( 353 waterfall = add_tester(
354 waterfall, 'Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', num_host_shards=5) 354 waterfall, 'Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', num_host_shards=5)
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
657 waterfall['name'] = 'chromium.perf' 657 waterfall['name'] = 'chromium.perf'
658 fyi_waterfall = get_fyi_waterfall_config() 658 fyi_waterfall = get_fyi_waterfall_config()
659 fyi_waterfall['name'] = 'chromium.perf.fyi' 659 fyi_waterfall['name'] = 'chromium.perf.fyi'
660 660
661 generate_all_tests(fyi_waterfall) 661 generate_all_tests(fyi_waterfall)
662 generate_all_tests(waterfall) 662 generate_all_tests(waterfall)
663 return 0 663 return 0
664 664
665 if __name__ == '__main__': 665 if __name__ == '__main__':
666 sys.exit(main()) 666 sys.exit(main())
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.perf.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698