changeset f48e72961850 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=f48e72961850
description:
        configs: network test: remove redundant physical memory

diffstat:

 configs/example/ruby_network_test.py |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r 3a925f9856b1 -r f48e72961850 configs/example/ruby_network_test.py
--- a/configs/example/ruby_network_test.py      Sat Jul 18 15:07:35 2015 -0500
+++ b/configs/example/ruby_network_test.py      Tue Jul 21 10:08:25 2015 -0500
@@ -103,8 +103,7 @@
          for i in xrange(options.num_cpus) ]
 
 # create the desired simulated system
-system = System(cpu = cpus, physmem = SimpleMemory(),
-                mem_ranges = [AddrRange(options.mem_size)])
+system = System(cpu = cpus, mem_ranges = [AddrRange(options.mem_size)])
 
 
 # Create a top-level voltage domain and clock domain
@@ -131,7 +130,7 @@
 # run simulation
 # -----------------------
 
-root = Root( full_system = False, system = system )
+root = Root(full_system = False, system = system)
 root.system.mem_mode = 'timing'
 
 # Not much point in this being higher than the L1 latency
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to