diff options
-rw-r--r-- | configs/ruby/MESI_Two_Level.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/configs/ruby/MESI_Two_Level.py b/configs/ruby/MESI_Two_Level.py index 65d711e5e..44118be2d 100644 --- a/configs/ruby/MESI_Two_Level.py +++ b/configs/ruby/MESI_Two_Level.py @@ -37,8 +37,13 @@ from Ruby import send_evicts # # Declare caches used by the protocol # -class L1Cache(RubyCache): pass -class L2Cache(RubyCache): pass +class L1Cache(RubyCache): + tagAccessLatency = 1 + dataAccessLatency = 1 + +class L2Cache(RubyCache): + tagAccessLatency = 8 + dataAccessLatency = 8 def define_options(parser): return |