nClearAddresses

This commit is contained in:
Andreas Abel
2020-01-16 15:24:33 +01:00
parent 925d648b9d
commit 917c46a462
2 changed files with 13 additions and 12 deletions

View File

@@ -35,8 +35,8 @@ def main():
seqLength = (args.length if args.length is not None else assoc*4/3)
seq = ' '.join('B' + str(i) + '?' for i in range(0, seqLength))
hitSeq = ' '.join('B' + str(i) + '?' for i in range(0, assoc))
missSeq = ' '.join('B' + str(i) + '?' for i in range(0, 3*assoc))
hitSeq = ' '.join('B' + str(i) for i in range(0, assoc))
missSeq = ' '.join('B' + str(i) for i in range(0, 3*assoc))
title = cpuid.cpu_name(cpuid.CPUID()) + ', L3 Hits'
html = ['<html>', '<head>', '<title>' + title + '</title>', '<script src="https://cdn.plot.ly/plotly-latest.min.js">', '</script>', '</head>', '<body>']