diff options
Diffstat (limited to 'configs/ruby')
-rw-r--r-- | configs/ruby/MOESI_CMP_directory.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/configs/ruby/MOESI_CMP_directory.py b/configs/ruby/MOESI_CMP_directory.py index e3385fa77..18e9ef6c8 100644 --- a/configs/ruby/MOESI_CMP_directory.py +++ b/configs/ruby/MOESI_CMP_directory.py @@ -49,8 +49,13 @@ from Ruby import send_evicts # # Declare caches used by the protocol # -class L1Cache(RubyCache): pass -class L2Cache(RubyCache): pass +class L1Cache(RubyCache): + dataAccessLatency = 1 + tagAccessLatency = 1 + +class L2Cache(RubyCache): + dataAccessLatency = 20 + tagAccessLatency = 20 def define_options(parser): return |