From 22367e4c207222c2056616760f8b3965164ed838 Mon Sep 17 00:00:00 2001 From: Ross Thompson Date: Sat, 4 Mar 2023 17:59:16 -0600 Subject: [PATCH] Working batch mode branch prediction simulations. --- sim/bpred-sim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim/bpred-sim.py b/sim/bpred-sim.py index 1ec8b304..60574e37 100755 --- a/sim/bpred-sim.py +++ b/sim/bpred-sim.py @@ -47,7 +47,7 @@ configs = [ ] bpdSize = [6, 8, 10, 12, 14, 16] -bpdType = ['twobit', 'gshare'] +bpdType = ['twobit', 'gshare', 'global', 'gshare_basic', 'global_basic'] for CurrBPType in bpdType: for CurrBPSize in bpdSize: name = CurrBPType+str(CurrBPSize)