config: correct example ruby scripts
authorNilay Vaish <nilay@cs.wisc.edu>
Wed, 9 Oct 2013 22:28:14 +0000 (17:28 -0500)
committerNilay Vaish <nilay@cs.wisc.edu>
Wed, 9 Oct 2013 22:28:14 +0000 (17:28 -0500)
A couple of recent changesets added/deleted/edited some variables
that are needed for running the example ruby scripts. This changeset
edits these scripts to bring them to a working state.

configs/common/Options.py
configs/example/ruby_direct_test.py
configs/example/ruby_mem_test.py
configs/example/ruby_network_test.py
configs/example/ruby_random_test.py

index 6431d460f02914ecf07b5e35da4fdc6567bd424f..cb9fc49881d3ed2acd9af21dc7d62b320623afd7 100644 (file)
@@ -115,7 +115,7 @@ def addCommonOptions(parser):
     parser.add_option("--ruby", action="store_true")
 
     # Run duration options
-    parser.add_option("-m", "--abs-max-tick", type="int", default=None,
+    parser.add_option("-m", "--abs-max-tick", type="int", default=m5.MaxTick,
                       metavar="TICKS", help="Run to absolute simulated tick " \
                       "specified including ticks from a restored checkpoint")
     parser.add_option("--rel-max-tick", type="int", default=None,
index fe96bdc2ddb68b950ef03c14fae20716526750a2..f511b0139808ca1779c05efe2d067e86fff27c1b 100644 (file)
@@ -92,7 +92,8 @@ else:
 # actually used by the rubytester, but is included to support the
 # M5 memory size == Ruby memory size checks
 #
-system = System(physmem = SimpleMemory())
+system = System(physmem = SimpleMemory(),
+                mem_ranges = [AddrRange(options.mem_size)])
 
 
 # Create a top-level voltage domain and clock domain
@@ -136,6 +137,6 @@ m5.ticks.setGlobalFrequency('1ns')
 m5.instantiate()
 
 # simulate until program terminates
-exit_event = m5.simulate(options.maxtick)
+exit_event = m5.simulate(options.abs_max_tick)
 
 print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause()
index b164447f8da509d66a67605ebd65782c81115e27..7848a867294cf0340e58e3325a1d0c6b2eecbc71 100644 (file)
@@ -108,7 +108,8 @@ system = System(cpu = cpus,
                 funcmem = SimpleMemory(in_addr_map = False),
                 funcbus = NoncoherentBus(),
                 physmem = SimpleMemory(),
-                clk_domain = SrcClockDomain(clock = options.sys_clock))
+                clk_domain = SrcClockDomain(clock = options.sys_clock),
+                mem_ranges = [AddrRange(options.mem_size)])
 
 if options.num_dmas > 0:
     dmas = [ MemTest(atomic = False,
@@ -129,8 +130,13 @@ for (i, dma) in enumerate(dmas):
     dma_ports.append(dma.test)
 Ruby.create_system(options, system, dma_ports = dma_ports)
 
+# Create a top-level voltage domain and clock domain
+system.voltage_domain = VoltageDomain(voltage = options.sys_voltage)
+system.clk_domain = SrcClockDomain(clock = options.sys_clock,
+                                   voltage_domain = system.voltage_domain)
 # Create a seperate clock domain for Ruby
-system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock)
+system.ruby.clk_domain = SrcClockDomain(clock = options.ruby_clock,
+                                        voltage_domain = system.voltage_domain)
 
 #
 # The tester is most effective when randomization is turned on and
@@ -183,6 +189,6 @@ m5.ticks.setGlobalFrequency('1ns')
 m5.instantiate()
 
 # simulate until program terminates
-exit_event = m5.simulate(options.maxtick)
+exit_event = m5.simulate(options.abs_max_tick)
 
 print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause()
index 5a9764d5aa6e900a16fd5e5e7279cac212e1e42a..e1ec325bb3d8a52ef6f43686bb15a80848513e4f 100644 (file)
@@ -103,8 +103,8 @@ cpus = [ NetworkTest(fixed_pkts=options.fixed_pkts,
          for i in xrange(options.num_cpus) ]
 
 # create the desired simulated system
-system = System(cpu = cpus,
-                physmem = SimpleMemory())
+system = System(cpu = cpus, physmem = SimpleMemory(),
+                mem_ranges = [AddrRange(options.mem_size)])
 
 
 # Create a top-level voltage domain and clock domain
@@ -143,6 +143,6 @@ m5.ticks.setGlobalFrequency('1ns')
 m5.instantiate()
 
 # simulate until program terminates
-exit_event = m5.simulate(options.maxtick)
+exit_event = m5.simulate(options.abs_max_tick)
 
 print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause()
index 203a4b142c41fe2d7a004c8dce2fbc1eca552f6f..7a8af8b5e8ab8f6e0fc236ed73b23d72cdf7055c 100644 (file)
@@ -97,7 +97,8 @@ tester = RubyTester(check_flush = check_flush,
 # actually used by the rubytester, but is included to support the
 # M5 memory size == Ruby memory size checks
 #
-system = System(tester = tester, physmem = SimpleMemory())
+system = System(tester = tester, physmem = SimpleMemory(),
+                mem_ranges = [AddrRange(options.mem_size)])
 
 # Create a top-level voltage domain and clock domain
 system.voltage_domain = VoltageDomain(voltage = options.sys_voltage)
@@ -156,6 +157,6 @@ m5.ticks.setGlobalFrequency('1ns')
 m5.instantiate()
 
 # simulate until program terminates
-exit_event = m5.simulate(options.maxtick)
+exit_event = m5.simulate(options.abs_max_tick)
 
 print 'Exiting @ tick', m5.curTick(), 'because', exit_event.getCause()