summaryrefslogtreecommitdiff
path: root/configs/common/Caches.py
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson>2013-07-18 08:31:19 -0400
committerAndreas Hansson <andreas.hansson>2013-07-18 08:31:19 -0400
commitc20105c2ff2b8300fa18a5c3f1afb806d6ae9458 (patch)
treec417dc17fae5bf5a9862536870101c58db9aa87b /configs/common/Caches.py
parentd4273cc9a6f3c00566e97ebcd71509ed14477b37 (diff)
downloadgem5-c20105c2ff2b8300fa18a5c3f1afb806d6ae9458.tar.xz
config: Update script to set cache line size on system
This patch changes the config scripts such that they do not set the cache line size per cache instance, but rather for the system as a whole.
Diffstat (limited to 'configs/common/Caches.py')
-rw-r--r--configs/common/Caches.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/configs/common/Caches.py b/configs/common/Caches.py
index 6f1aff443..9f7ac7a85 100644
--- a/configs/common/Caches.py
+++ b/configs/common/Caches.py
@@ -50,14 +50,12 @@ class L1Cache(BaseCache):
assoc = 2
hit_latency = 2
response_latency = 2
- block_size = 64
mshrs = 4
tgts_per_mshr = 20
is_top_level = True
class L2Cache(BaseCache):
assoc = 8
- block_size = 64
hit_latency = 20
response_latency = 20
mshrs = 20
@@ -66,7 +64,6 @@ class L2Cache(BaseCache):
class IOCache(BaseCache):
assoc = 8
- block_size = 64
hit_latency = 50
response_latency = 50
mshrs = 20
@@ -77,7 +74,6 @@ class IOCache(BaseCache):
class PageTableWalkerCache(BaseCache):
assoc = 2
- block_size = 64
hit_latency = 2
response_latency = 2
mshrs = 10