Lines Matching refs:title
76 def plotTime(timings, routine, bench_variant, title, outpath): argument
98 (routine, bench_variant, title)
106 title, outpath): argument
138 (baseline, bench_variant, title)
145 def plotMax(timings, routine, bench_variant, title, outpath): argument
170 "benchmark, %s" % (routine, bench_variant, title)
177 def plotThroughput(timings, params, routine, bench_variant, title, outpath): argument
202 (routine, bench_variant, title)
208 def finishPlot(x, y, title, outpath, x_scale, plotted_ifuncs): argument
221 plt.title(title)
239 def plotRecursive(json_iter, routine, ifuncs, bench_variant, title, outpath, argument
259 new_title = "%s%s, " % (title, variant["name"])
297 codomain, title, outpath = plotTime(plotted_vals, routine,
298 bench_variant, title, outpath)
300 codomain, title, outpath = plotRelative(plotted_vals, averages, routine,
301 ifuncs, bench_variant, title, outpath)
303 codomain, title, outpath = plotMax(plotted_vals, routine,
304 bench_variant, title, outpath)
306 codomain, title, outpath = plotThroughput(plotted_vals, domain, routine,
307 bench_variant, title, outpath)
310 finishPlot(domain, codomain, title, outpath, x_scale, plotted_ifuncs)