Lines Matching refs:bench1
123 def plot_graphs(bench1, bench2): argument
132 for func in bench1['functions'].keys():
133 for var in bench1['functions'][func].keys():
136 if u'timings' not in bench1['functions'][func][var].keys():
144 length = len(bench1['functions'][func][var]['timings'])
146 lines = pylab.scatter(X, bench1['functions'][func][var]['timings'],
164 def main(bench1, bench2, schema, threshold, stats): argument
165 bench1 = bench.parse_bench(bench1, schema)
166 bench.do_for_all_timings(bench1, lambda b, f, v:
172 plot_graphs(bench1, bench2)
174 bench.compress_timings(bench1)
177 compare_runs(bench1, bench2, threshold, stats)
196 main(args.bench1, args.bench2, args.schema, args.threshold, args.stats)