Skip to content
Snippets Groups Projects
Commit 776a6627 authored by Peter Cai's avatar Peter Cai
Browse files

Fix LLC misses per request calculation

parent 77112c76
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ def extract_conn_qps_exp(exp):
ret[1].append(qps)
with open(os.path.join('../data/', exp, 'stat_c%d.txt' % (f,)), 'r') as fi:
misses = parse_perf_stat(fi.read()) / qps
misses = parse_perf_stat(fi.read()) / (qps * 30)
ret[2].append(misses)
return ret
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment