From 8cf2c404bf85865f261af5a06d30fa66c52b867c Mon Sep 17 00:00:00 2001 From: Rose Thompson Date: Fri, 17 Nov 2023 15:21:58 -0600 Subject: [PATCH] bpred-sim only simulates 12 jobs at once. --- sim/bpred-sim.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sim/bpred-sim.py b/sim/bpred-sim.py index 530fab70c..60af41298 100755 --- a/sim/bpred-sim.py +++ b/sim/bpred-sim.py @@ -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)