Lines Matching refs:bench
105 def add_time(args, name, bench, t, unit): argument
108 append_dict_sorted_array(timesA, bench, normalized_t)
110 append_dict_sorted_array(timesB, bench, normalized_t)
119 bench = items[10]
125 add_time(args, name, bench, float(time_num), time_unit)
253 for bench in timesA.keys():
254 if bench not in timesB:
256 lowerA, upperA = get_lower_upper(timesA[bench])
257 lowerB, upperB = get_lower_upper(timesB[bench])
259 suspects.append(bench)
279 def regression(bench): argument
280 a = median(timesA[bench])
281 b = median(timesB[bench])
347 for bench in timesA:
348 r = regression(bench) if bench in suspects else 1.0
349 results[bench] = {
352 "lower_quantile_ms": get_lower_upper(timesA[bench])[0] * 1e-6,
353 "upper_quantile_ms": get_lower_upper(timesA[bench])[1] * 1e-6,
360 "name": bench
380 for bench in suspects + timesA.keys():
381 if (bench not in timesA or bench not in timesB):
383 ta = timesA[bench]
384 tb = timesB[bench]
386 "%s, %s, %f, " % (bench, bench in suspects, regression(bench)) +