diff options
author | Anthony Gutierrez <atgutier@umich.edu> | 2014-06-30 13:50:03 -0400 |
---|---|---|
committer | Anthony Gutierrez <atgutier@umich.edu> | 2014-06-30 13:50:03 -0400 |
commit | f34a8f0d6163fe82849d494bf78c0f5ec175861c (patch) | |
tree | b3133ce45f089479408e25b73347a14ead3c620f /src/cpu/pred/BranchPredictor.py | |
parent | db267da8221ce4905e08e84967096d7a9fa23ca6 (diff) | |
download | gem5-f34a8f0d6163fe82849d494bf78c0f5ec175861c.tar.xz |
cpu: implement a bi-mode branch predictor
Diffstat (limited to 'src/cpu/pred/BranchPredictor.py')
-rw-r--r-- | src/cpu/pred/BranchPredictor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/pred/BranchPredictor.py b/src/cpu/pred/BranchPredictor.py index 07fc840b8..1bdc71d4d 100644 --- a/src/cpu/pred/BranchPredictor.py +++ b/src/cpu/pred/BranchPredictor.py @@ -36,7 +36,7 @@ class BranchPredictor(SimObject): numThreads = Param.Unsigned(1, "Number of threads") predType = Param.String("tournament", - "Branch predictor type ('local', 'tournament')") + "Branch predictor type ('local', 'tournament', 'bi-mode')") localPredictorSize = Param.Unsigned(2048, "Size of local predictor") localCtrBits = Param.Unsigned(2, "Bits per counter") localHistoryTableSize = Param.Unsigned(2048, "Size of local history table") |