summaryrefslogtreecommitdiff
path: root/configs/ruby
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2014-04-19 09:00:30 -0500
committerNilay Vaish <nilay@cs.wisc.edu>2014-04-19 09:00:30 -0500
commit097aadc2cddafdd6433aa8f57b141f0e01222e45 (patch)
tree62d3a6cd07c578e6363bcd00472986a308f6697d /configs/ruby
parent5ab6bdc1ec760cf5b92a8ea1060c426638dc704f (diff)
downloadgem5-097aadc2cddafdd6433aa8f57b141f0e01222e45.tar.xz
config: ruby: remove memory controller from network test
It is not in use and not required as such.
Diffstat (limited to 'configs/ruby')
-rw-r--r--configs/ruby/Network_test.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/configs/ruby/Network_test.py b/configs/ruby/Network_test.py
index d331163b3..553927bb7 100644
--- a/configs/ruby/Network_test.py
+++ b/configs/ruby/Network_test.py
@@ -101,23 +101,7 @@ def create_system(options, system, dma_ports, ruby_system):
assert(phys_mem_size % options.num_dirs == 0)
mem_module_size = phys_mem_size / options.num_dirs
- # Run each of the ruby memory controllers at a ratio of the frequency of
- # the ruby system.
- # clk_divider value is a fix to pass regression.
- ruby_system.memctrl_clk_domain = DerivedClockDomain(
- clk_domain=ruby_system.clk_domain,
- clk_divider=3)
-
for i in xrange(options.num_dirs):
- #
- # Create the Ruby objects associated with the directory controller
- #
-
- mem_cntrl = RubyMemoryControl(
- clk_domain = ruby_system.memctrl_clk_domain,
- version = i,
- ruby_system = ruby_system)
-
dir_size = MemorySize('0B')
dir_size.value = mem_module_size
@@ -125,7 +109,6 @@ def create_system(options, system, dma_ports, ruby_system):
directory = \
RubyDirectoryMemory(version = i,
size = dir_size),
- memBuffer = mem_cntrl,
ruby_system = ruby_system)
exec("ruby_system.dir_cntrl%d = dir_cntrl" % i)