blob: 92685de5ee85cf7afa302eee28fc001e148f9759 [file] [log] [blame]
Craig Tillerf7af2a92017-01-31 15:08:31 -08001#!/usr/bin/env python2.7
2# Copyright 2017, Google Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met:
8#
9# * Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# * Redistributions in binary form must reproduce the above
12# copyright notice, this list of conditions and the following disclaimer
13# in the documentation and/or other materials provided with the
14# distribution.
15# * Neither the name of Google Inc. nor the names of its
16# contributors may be used to endorse or promote products derived from
17# this software without specific prior written permission.
18#
19# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31import multiprocessing
32import os
33import subprocess
34import sys
Craig Tilleraa64ddf2017-02-08 14:20:08 -080035import argparse
Craig Tillerf7af2a92017-01-31 15:08:31 -080036
Craig Tiller7dc4ea62017-02-02 16:08:05 -080037import python_utils.jobset as jobset
38import python_utils.start_port_server as start_port_server
39
Craig Tillerf7af2a92017-01-31 15:08:31 -080040flamegraph_dir = os.path.join(os.path.expanduser('~'), 'FlameGraph')
41
Craig Tiller7dc4ea62017-02-02 16:08:05 -080042os.chdir(os.path.join(os.path.dirname(sys.argv[0]), '../..'))
43if not os.path.exists('reports'):
44 os.makedirs('reports')
45
46port_server_port = 32766
47start_port_server.start_port_server(port_server_port)
48
Craig Tillerf7af2a92017-01-31 15:08:31 -080049def fnize(s):
50 out = ''
51 for c in s:
52 if c in '<>, /':
53 if len(out) and out[-1] == '_': continue
54 out += '_'
55 else:
56 out += c
57 return out
58
Craig Tillerf7af2a92017-01-31 15:08:31 -080059# index html
60index_html = """
61<html>
62<head>
63<title>Microbenchmark Results</title>
64</head>
65<body>
66"""
67
68def heading(name):
69 global index_html
70 index_html += "<h1>%s</h1>\n" % name
71
72def link(txt, tgt):
73 global index_html
74 index_html += "<p><a href=\"%s\">%s</a></p>\n" % (tgt, txt)
75
Craig Tilleraa64ddf2017-02-08 14:20:08 -080076def text(txt):
77 global index_html
Craig Tillerd1307fe2017-02-08 18:02:21 -080078 index_html += "<p><pre>%s</pre></p>\n" % txt
Craig Tiller7dc4ea62017-02-02 16:08:05 -080079
Craig Tilleraa64ddf2017-02-08 14:20:08 -080080def collect_latency(bm_name, args):
81 """generate latency profiles"""
82 benchmarks = []
83 profile_analysis = []
84 cleanup = []
85
Craig Tillerf7af2a92017-01-31 15:08:31 -080086 heading('Latency Profiles: %s' % bm_name)
87 subprocess.check_call(
88 ['make', bm_name,
89 'CONFIG=basicprof', '-j', '%d' % multiprocessing.cpu_count()])
90 for line in subprocess.check_output(['bins/basicprof/%s' % bm_name,
91 '--benchmark_list_tests']).splitlines():
Craig Tiller39401792017-02-02 12:22:07 -080092 link(line, '%s.txt' % fnize(line))
Craig Tiller7dc4ea62017-02-02 16:08:05 -080093 benchmarks.append(
94 jobset.JobSpec(['bins/basicprof/%s' % bm_name, '--benchmark_filter=^%s$' % line],
95 environ={'LATENCY_TRACE': '%s.trace' % fnize(line)}))
96 profile_analysis.append(
97 jobset.JobSpec([sys.executable,
98 'tools/profiling/latency_profile/profile_analyzer.py',
99 '--source', '%s.trace' % fnize(line), '--fmt', 'simple',
100 '--out', 'reports/%s.txt' % fnize(line)], timeout_seconds=None))
Craig Tiller715e43b2017-02-07 11:13:16 -0800101 cleanup.append(jobset.JobSpec(['rm', '%s.trace' % fnize(line)]))
Craig Tiller360c0d52017-02-08 13:36:44 -0800102 # periodically flush out the list of jobs: profile_analysis jobs at least
103 # consume upwards of five gigabytes of ram in some cases, and so analysing
104 # hundreds of them at once is impractical -- but we want at least some
105 # concurrency or the work takes too long
Craig Tillerf74d1722017-02-08 11:38:09 -0800106 if len(benchmarks) >= min(4, multiprocessing.cpu_count()):
Craig Tiller360c0d52017-02-08 13:36:44 -0800107 # run up to half the cpu count: each benchmark can use up to two cores
108 # (one for the microbenchmark, one for the data flush)
Craig Tiller2ef0d542017-02-08 13:53:18 -0800109 jobset.run(benchmarks, maxjobs=max(1, multiprocessing.cpu_count()/2),
Craig Tiller6911d082017-02-07 10:30:44 -0800110 add_env={'GRPC_TEST_PORT_SERVER': 'localhost:%d' % port_server_port})
111 jobset.run(profile_analysis, maxjobs=multiprocessing.cpu_count())
112 jobset.run(cleanup, maxjobs=multiprocessing.cpu_count())
113 benchmarks = []
114 profile_analysis = []
115 cleanup = []
Craig Tiller360c0d52017-02-08 13:36:44 -0800116 # run the remaining benchmarks that weren't flushed
Craig Tiller6911d082017-02-07 10:30:44 -0800117 if len(benchmarks):
Craig Tiller2ef0d542017-02-08 13:53:18 -0800118 jobset.run(benchmarks, maxjobs=max(1, multiprocessing.cpu_count()/2),
Craig Tiller6911d082017-02-07 10:30:44 -0800119 add_env={'GRPC_TEST_PORT_SERVER': 'localhost:%d' % port_server_port})
120 jobset.run(profile_analysis, maxjobs=multiprocessing.cpu_count())
121 jobset.run(cleanup, maxjobs=multiprocessing.cpu_count())
Craig Tillerf7af2a92017-01-31 15:08:31 -0800122
Craig Tilleraa64ddf2017-02-08 14:20:08 -0800123def collect_perf(bm_name, args):
124 """generate flamegraphs"""
Craig Tillerf7af2a92017-01-31 15:08:31 -0800125 heading('Flamegraphs: %s' % bm_name)
126 subprocess.check_call(
127 ['make', bm_name,
128 'CONFIG=mutrace', '-j', '%d' % multiprocessing.cpu_count()])
129 for line in subprocess.check_output(['bins/mutrace/%s' % bm_name,
130 '--benchmark_list_tests']).splitlines():
Craig Tiller5a8c5862017-02-15 07:59:05 -0800131 link(line, '%s.svg' % fnize(line))
Craig Tiller9f3ba092017-02-14 08:16:09 -0800132 subprocess.check_call(['perf', 'record', '-o', '%s-perf.data' % fnize(line),
Craig Tiller26077632017-02-13 11:26:43 -0800133 '-g', '-c', '1000',
Craig Tillerf7af2a92017-01-31 15:08:31 -0800134 'bins/mutrace/%s' % bm_name,
135 '--benchmark_filter=^%s$' % line,
Craig Tillerbd5a4d22017-02-14 16:45:47 -0800136 '--benchmark_min_time=10'])
Craig Tiller9f3ba092017-02-14 08:16:09 -0800137 env = os.environ.copy()
138 env.update({
139 'PERF_BASE_NAME': fnize(line),
140 'OUTPUT_DIR': 'reports',
141 'OUTPUT_FILENAME': fnize(line),
142 })
143 subprocess.check_call(['tools/run_tests/performance/process_local_perf_flamegraphs.sh'],
144 env=env)
Craig Tillerbd5a4d22017-02-14 16:45:47 -0800145 subprocess.check_call(['rm', '%s-perf.data' % fnize(line)])
146 subprocess.check_call(['rm', '%s-out.perf' % fnize(line)])
Craig Tillerf7af2a92017-01-31 15:08:31 -0800147
Craig Tilleraa64ddf2017-02-08 14:20:08 -0800148def collect_summary(bm_name, args):
149 heading('Summary: %s' % bm_name)
150 subprocess.check_call(
151 ['make', bm_name,
152 'CONFIG=counters', '-j', '%d' % multiprocessing.cpu_count()])
153 text(subprocess.check_output(['bins/counters/%s' % bm_name,
154 '--benchmark_out=out.json',
155 '--benchmark_out_format=json']))
156 if args.bigquery_upload:
Craig Tillerd12731e2017-02-13 12:41:27 -0800157 with open('out.csv', 'w') as f:
Craig Tillerfc4f72a2017-02-08 15:57:03 -0800158 f.write(subprocess.check_output(['tools/profiling/microbenchmarks/bm2bq.py', 'out.json']))
Craig Tilleraa64ddf2017-02-08 14:20:08 -0800159 subprocess.check_call(['bq', 'load', 'microbenchmarks.microbenchmarks', 'out.csv'])
160
161collectors = {
162 'latency': collect_latency,
163 'perf': collect_perf,
164 'summary': collect_summary,
165}
166
167argp = argparse.ArgumentParser(description='Collect data from microbenchmarks')
168argp.add_argument('-c', '--collect',
169 choices=sorted(collectors.keys()),
170 nargs='+',
171 default=sorted(collectors.keys()),
172 help='Which collectors should be run against each benchmark')
173argp.add_argument('-b', '--benchmarks',
174 default=['bm_fullstack'],
175 nargs='+',
176 type=str,
177 help='Which microbenchmarks should be run')
178argp.add_argument('--bigquery_upload',
179 default=False,
180 action='store_const',
181 const=True,
182 help='Upload results from summary collection to bigquery')
183args = argp.parse_args()
184
185for bm_name in args.benchmarks:
186 for collect in args.collect:
187 collectors[collect](bm_name, args)
188
Craig Tillerf7af2a92017-01-31 15:08:31 -0800189index_html += "</body>\n</html>\n"
190with open('reports/index.html', 'w') as f:
Craig Tiller360c0d52017-02-08 13:36:44 -0800191 f.write(index_html)