summaryrefslogtreecommitdiff
path: root/configs/ruby/Network_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'configs/ruby/Network_test.py')
-rw-r--r--configs/ruby/Network_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/ruby/Network_test.py b/configs/ruby/Network_test.py
index 7a968a253..eb31b3804 100644
--- a/configs/ruby/Network_test.py
+++ b/configs/ruby/Network_test.py
@@ -36,7 +36,7 @@ from Ruby import create_topology
#
# Declare caches used by the protocol
#
-class Cache(RubyCache): pass
+class L1Cache(RubyCache): pass
def define_options(parser):
return
@@ -72,8 +72,8 @@ def create_system(options, full_system, system, dma_ports, ruby_system):
# Only one cache exists for this protocol, so by default use the L1D
# config parameters.
#
- cache = Cache(size = options.l1d_size,
- assoc = options.l1d_assoc)
+ cache = L1Cache(size = options.l1d_size,
+ assoc = options.l1d_assoc)
#
# Only one unified L1 cache exists. Can cache instructions and data.