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): if(args.direction):
# for direction predictor size sweep # for direction predictor size sweep
bpdSize = [6, 8, 10, 12, 14, 16] 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 CurrBPType in bpdType:
for CurrBPSize in bpdSize: for CurrBPSize in bpdSize:
name = CurrBPType+str(CurrBPSize) name = CurrBPType+str(CurrBPSize)