diff options
Diffstat (limited to 'configs/ruby')
-rw-r--r-- | configs/ruby/MOESI_CMP_token.py | 4 | ||||
-rw-r--r-- | configs/ruby/MOESI_hammer.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/configs/ruby/MOESI_CMP_token.py b/configs/ruby/MOESI_CMP_token.py index f2669ef78..3853ebbb4 100644 --- a/configs/ruby/MOESI_CMP_token.py +++ b/configs/ruby/MOESI_CMP_token.py @@ -36,13 +36,13 @@ from m5.defines import buildEnv # Note: the L1 Cache latency is only used by the sequencer on fast path hits # class L1Cache(RubyCache): - latency = 3 + latency = 2 # # Note: the L2 Cache latency is not currently used # class L2Cache(RubyCache): - latency = 15 + latency = 10 def define_options(parser): parser.add_option("--l1-retries", type="int", default=1, diff --git a/configs/ruby/MOESI_hammer.py b/configs/ruby/MOESI_hammer.py index 5cf27206b..818600a5a 100644 --- a/configs/ruby/MOESI_hammer.py +++ b/configs/ruby/MOESI_hammer.py @@ -35,13 +35,13 @@ from m5.defines import buildEnv # Note: the L1 Cache latency is only used by the sequencer on fast path hits # class L1Cache(RubyCache): - latency = 3 + latency = 2 # # Note: the L2 Cache latency is not currently used # class L2Cache(RubyCache): - latency = 15 + latency = 10 def define_options(parser): return |