diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2014-01-04 00:03:32 -0600 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2014-01-04 00:03:32 -0600 |
commit | 9ec59e8b691d0f2e49f0a8ea6e1284b1d9e4e669 (patch) | |
tree | 08b034c02ede3e108df5d552e0214dce9e76ce34 /configs/ruby/Network_test.py | |
parent | 5b1804e3bdb88aea7a198ff25617bb671cd34769 (diff) | |
download | gem5-9ec59e8b691d0f2e49f0a8ea6e1284b1d9e4e669.tar.xz |
ruby: remove cntrl_id from python config scripts.
Diffstat (limited to 'configs/ruby/Network_test.py')
-rw-r--r-- | configs/ruby/Network_test.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/configs/ruby/Network_test.py b/configs/ruby/Network_test.py index 6dfcc0b59..f48f5a792 100644 --- a/configs/ruby/Network_test.py +++ b/configs/ruby/Network_test.py @@ -68,8 +68,6 @@ def create_system(options, system, piobus, dma_ports, ruby_system): # controller constructors are called before the network constructor # - cntrl_count = 0 - for i in xrange(options.num_cpus): # # First create the Ruby objects associated with this cpu @@ -83,7 +81,6 @@ def create_system(options, system, piobus, dma_ports, ruby_system): # Only one unified L1 cache exists. Can cache instructions and data. # l1_cntrl = L1Cache_Controller(version = i, - cntrl_id = cntrl_count, cacheMemory = cache, ruby_system = ruby_system) @@ -101,8 +98,6 @@ def create_system(options, system, piobus, dma_ports, ruby_system): cpu_sequencers.append(cpu_seq) l1_cntrl_nodes.append(l1_cntrl) - cntrl_count += 1 - phys_mem_size = sum(map(lambda r: r.size(), system.mem_ranges)) assert(phys_mem_size % options.num_dirs == 0) mem_module_size = phys_mem_size / options.num_dirs @@ -128,7 +123,6 @@ def create_system(options, system, piobus, dma_ports, ruby_system): dir_size.value = mem_module_size dir_cntrl = Directory_Controller(version = i, - cntrl_id = cntrl_count, directory = \ RubyDirectoryMemory(version = i, size = dir_size), @@ -138,10 +132,6 @@ def create_system(options, system, piobus, dma_ports, ruby_system): exec("ruby_system.dir_cntrl%d = dir_cntrl" % i) dir_cntrl_nodes.append(dir_cntrl) - cntrl_count += 1 - all_cntrls = l1_cntrl_nodes + dir_cntrl_nodes - topology = create_topology(all_cntrls, options) - return (cpu_sequencers, dir_cntrl_nodes, topology) |