diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2012-10-30 07:44:08 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2012-10-30 07:44:08 -0400 |
commit | 9cbe1cb653428a2298644579ddf82c46272683d4 (patch) | |
tree | f02848bbbdfbc6c083e134969389cdc6a671e613 /configs/common/Caches.py | |
parent | 30f5bf5f23672a5946f12616bb1a592d84e04645 (diff) | |
download | gem5-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.py | 4 |
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): |