Merge pull request #484 from ross144/main

Changed bpred-sim.py to only simulate 12 jobs at once.
This commit is contained in:
David Harris 2023-11-17 13:26:24 -08:00 committed by GitHub
commit 70c58a8ce1

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)