diff options
Diffstat (limited to 'configs/splash2/cluster.py')
-rw-r--r-- | configs/splash2/cluster.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/splash2/cluster.py b/configs/splash2/cluster.py index 9fafcb70c..5991e7428 100644 --- a/configs/splash2/cluster.py +++ b/configs/splash2/cluster.py @@ -137,7 +137,7 @@ class Water_spatial(LiveProcess): # Base L1 Cache Definition # ==================== -class L1(BaseCache): +class L1(Cache): latency = options.l1latency mshrs = 12 tgts_per_mshr = 8 @@ -146,7 +146,7 @@ class L1(BaseCache): # Base L2 Cache Definition # ---------------------- -class L2(BaseCache): +class L2(Cache): latency = options.l2latency mshrs = 92 tgts_per_mshr = 16 |