Skip to content

Commit d97449c

Browse files
committed
cpu-o3: disable abtb using s3 pred update to fix perf issue
Change-Id: Id5f8b676fb97abf35990389db1a1dfd1ccd0049a
1 parent f84a311 commit d97449c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpu/pred/BranchPredictor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,7 @@ class AheadBTB(TimedBaseBTBPredictor):
10001000
entryHalfAligned = Param.Bool(False, "Whether the entries are half-aligned")
10011001
blockSize = 64
10021002
numDelay = 0
1003-
usingS3Pred = Param.Bool(True, "Whether using S3 predictor to update AheadBTB")
1003+
usingS3Pred = Param.Bool(False, "Whether using S3 predictor to update AheadBTB")
10041004

10051005
class UBTB(TimedBaseBTBPredictor):
10061006
type = 'UBTB'

0 commit comments

Comments
 (0)