pull/10336/head
Craig Tiller 8 years ago
parent a87b138187
commit ed2c292f44
  1. 8
      tools/profiling/microbenchmarks/bm_diff.py

@ -85,6 +85,14 @@ args = argp.parse_args()
assert args.diff_base
def avg(lst):
sum = 0
n = 0
for el in lst:
sum += el
n += 1
return sum / n
def collect1(bm, cfg, ver):
subprocess.check_call(['make', 'clean'])
subprocess.check_call(['git', 'submodule', 'update'])

Loading…
Cancel
Save