summaryrefslogtreecommitdiff
path: root/configs/common/Caches.py
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2012-10-30 07:44:08 -0400
committerAndreas Hansson <andreas.hansson@arm.com>2012-10-30 07:44:08 -0400
commit9cbe1cb653428a2298644579ddf82c46272683d4 (patch)
treef02848bbbdfbc6c083e134969389cdc6a671e613 /configs/common/Caches.py
parent30f5bf5f23672a5946f12616bb1a592d84e04645 (diff)
downloadgem5-9cbe1cb653428a2298644579ddf82c46272683d4.tar.xz
config: Unify caches used in regressions and adjust L2 MSHRs
This patch unified the L1 and L2 caches used throughout the regressions instead of declaring different, but very similar, configurations in the different scripts. The patch also changes the default L2 configuration to match what it used to be for the fs and se scripts (until the last patch that updated the regressions to also make use of the cache config). The MSHRs and targets per MSHR are now set to a more realistic default of 20 and 12, respectively. As a result of both the aforementioned changes, many of the regression stats are changed. A follow-on patch will bump the stats.
Diffstat (limited to 'configs/common/Caches.py')
-rw-r--r--configs/common/Caches.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/common/Caches.py b/configs/common/Caches.py
index e6cbb1a75..6f1aff443 100644
--- a/configs/common/Caches.py
+++ b/configs/common/Caches.py
@@ -60,8 +60,8 @@ class L2Cache(BaseCache):
block_size = 64
hit_latency = 20
response_latency = 20
- mshrs = 92
- tgts_per_mshr = 16
+ mshrs = 20
+ tgts_per_mshr = 12
write_buffers = 8
class IOCache(BaseCache):