From 7fa4c946386e7207ad5859e8ade0bbfc14000d91 Mon Sep 17 00:00:00 2001 From: Pau Cabre Date: Sun, 2 Dec 2018 00:20:13 +0100 Subject: cpu: Fixed typos in parameter/stats descriptions Change-Id: I7b3274a3e37128da35f497da150af08343e97ee6 Signed-off-by: Pau Cabre Reviewed-on: https://gem5-review.googlesource.com/c/14795 Reviewed-by: Jason Lowe-Power Reviewed-by: Ilias Vougioukas Maintainer: Jason Lowe-Power --- src/cpu/pred/BranchPredictor.py | 4 ++-- src/cpu/pred/ltage.cc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cpu') diff --git a/src/cpu/pred/BranchPredictor.py b/src/cpu/pred/BranchPredictor.py index 0c1e9c284..4d7323e49 100644 --- a/src/cpu/pred/BranchPredictor.py +++ b/src/cpu/pred/BranchPredictor.py @@ -95,8 +95,8 @@ class TAGE(BranchPredictor): cxx_header = "cpu/pred/tage.hh" nHistoryTables = Param.Unsigned(7, "Number of history tables") - minHist = Param.Unsigned(5, "Minimum history size of LTAGE") - maxHist = Param.Unsigned(130, "Maximum history size of LTAGE") + minHist = Param.Unsigned(5, "Minimum history size of TAGE") + maxHist = Param.Unsigned(130, "Maximum history size of TAGE") tagTableTagWidths = VectorParam.Unsigned( [0, 9, 9, 10, 10, 11, 11, 12], "Tag size in TAGE tag tables") diff --git a/src/cpu/pred/ltage.cc b/src/cpu/pred/ltage.cc index 8f332b3b5..56e1555cf 100644 --- a/src/cpu/pred/ltage.cc +++ b/src/cpu/pred/ltage.cc @@ -365,7 +365,7 @@ LTAGE::regStats() loopPredictorWrong .name(name() + ".loopPredictorWrong") - .desc("Number of times the loop predictor is the provier and " + .desc("Number of times the loop predictor is the provider and " "the prediction is wrong"); } -- cgit v1.2.3