diff options
author | Andreas Hansson <andreas.hansson> | 2013-07-18 08:31:19 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson> | 2013-07-18 08:31:19 -0400 |
commit | c20105c2ff2b8300fa18a5c3f1afb806d6ae9458 (patch) | |
tree | c417dc17fae5bf5a9862536870101c58db9aa87b /configs/splash2 | |
parent | d4273cc9a6f3c00566e97ebcd71509ed14477b37 (diff) | |
download | gem5-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/splash2')
-rw-r--r-- | configs/splash2/cluster.py | 2 | ||||
-rw-r--r-- | configs/splash2/run.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/configs/splash2/cluster.py b/configs/splash2/cluster.py index 1b9397d6d..1ae9a6dd5 100644 --- a/configs/splash2/cluster.py +++ b/configs/splash2/cluster.py @@ -139,7 +139,6 @@ class Water_spatial(LiveProcess): class L1(BaseCache): latency = options.l1latency - block_size = 64 mshrs = 12 tgts_per_mshr = 8 @@ -148,7 +147,6 @@ class L1(BaseCache): # ---------------------- class L2(BaseCache): - block_size = 64 latency = options.l2latency mshrs = 92 tgts_per_mshr = 16 diff --git a/configs/splash2/run.py b/configs/splash2/run.py index 6880f8db5..10c9a7f61 100644 --- a/configs/splash2/run.py +++ b/configs/splash2/run.py @@ -160,7 +160,6 @@ class Water_spatial(LiveProcess): class L1(BaseCache): latency = options.l1latency - block_size = 64 mshrs = 12 tgts_per_mshr = 8 @@ -169,7 +168,6 @@ class L1(BaseCache): # ---------------------- class L2(BaseCache): - block_size = 64 latency = options.l2latency mshrs = 92 tgts_per_mshr = 16 |