diff options
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/Caches.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configs/common/Caches.py b/configs/common/Caches.py index 867d0cb2e..e6cbb1a75 100644 --- a/configs/common/Caches.py +++ b/configs/common/Caches.py @@ -46,7 +46,7 @@ from m5.objects import * # starting point, and specific parameters can be overridden in the # specific instantiations. -class L1(BaseCache): +class L1Cache(BaseCache): assoc = 2 hit_latency = 2 response_latency = 2 @@ -55,7 +55,7 @@ class L1(BaseCache): tgts_per_mshr = 20 is_top_level = True -class L2(BaseCache): +class L2Cache(BaseCache): assoc = 8 block_size = 64 hit_latency = 20 @@ -84,4 +84,3 @@ class PageTableWalkerCache(BaseCache): size = '1kB' tgts_per_mshr = 12 is_top_level = True - |