bpred-sim only simulates 12 jobs at once.

This commit is contained in:
Rose Thompson 2023-11-17 15:21:58 -06:00
parent d95d7130a3
commit 8cf2c404bf

View file

@ -102,7 +102,8 @@ def main():
if(args.direction):
# for direction predictor size sweep
bpdSize = [6, 8, 10, 12, 14, 16]
bpdType = ['twobit', 'gshare', 'global', 'gshare_basic', 'global_basic', 'local_basic']
#bpdType = ['twobit', 'gshare', 'global', 'gshare_basic', 'global_basic', 'local_basic']
bpdType = ['twobit', 'gshare']
for CurrBPType in bpdType:
for CurrBPSize in bpdSize:
name = CurrBPType+str(CurrBPSize)