summaryrefslogtreecommitdiff
path: root/configs/common/Caches.py
diff options
context:
space:
mode:
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