From 634f34d3f2c68ea26350c81c32440971c98edefb Mon Sep 17 00:00:00 2001 From: Brad Beckmann Date: Fri, 11 Dec 2015 16:07:01 -0500 Subject: regress: updates required for the compute-gpu patches --- tests/configs/rubytest-ruby.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'tests/configs/rubytest-ruby.py') diff --git a/tests/configs/rubytest-ruby.py b/tests/configs/rubytest-ruby.py index 22334efb4..77c7b51a8 100644 --- a/tests/configs/rubytest-ruby.py +++ b/tests/configs/rubytest-ruby.py @@ -97,6 +97,8 @@ system.ruby.clk_domain = SrcClockDomain(clock = '1GHz', assert(options.num_cpus == len(system.ruby._cpu_ports)) +tester.num_cpus = len(system.ruby._cpu_ports) + # # The tester is most effective when randomization is turned on and # artifical delay is randomly inserted on messages @@ -107,10 +109,15 @@ for ruby_port in system.ruby._cpu_ports: # # Tie the ruby tester ports to the ruby cpu read and write ports # - if ruby_port.support_data_reqs: - tester.cpuDataPort = ruby_port.slave - if ruby_port.support_inst_reqs: - tester.cpuInstPort = ruby_port.slave + if ruby_port.support_data_reqs and ruby_port.support_inst_reqs: + tester.cpuInstDataPort = ruby_port.slave + elif ruby_port.support_data_reqs: + tester.cpuDataPort = ruby_port.slave + elif ruby_port.support_inst_reqs: + tester.cpuInstPort = ruby_port.slave + + # Do not automatically retry stalled Ruby requests + ruby_port.no_retry_on_stall = True # # Tell the sequencer this is the ruby tester so that it -- cgit v1.2.3