From ae6ab7c03ca719b7ab000ee62538fc71dd0cf8df Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Mon, 23 Jul 2012 09:32:22 -0400 Subject: Config: Use clock option in se/fs script and pass to switch_cpus This patch changes the se and fs script to use the clock option and not simply set the CPUs clock to 2 GHz. It also makes a minor change to the assignment of the switch_cpus clock to allow different clocks. --- configs/common/Simulation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'configs/common') diff --git a/configs/common/Simulation.py b/configs/common/Simulation.py index 58da9e968..2ba691ed0 100644 --- a/configs/common/Simulation.py +++ b/configs/common/Simulation.py @@ -140,7 +140,7 @@ def run(options, root, testsys, cpu_class): testsys.cpu[i].max_insts_any_thread = int(options.fast_forward) switch_cpus[i].system = testsys switch_cpus[i].workload = testsys.cpu[i].workload - switch_cpus[i].clock = testsys.cpu[0].clock + switch_cpus[i].clock = testsys.cpu[i].clock # simulation period if options.maxinsts: switch_cpus[i].max_insts_any_thread = options.maxinsts @@ -167,8 +167,8 @@ def run(options, root, testsys, cpu_class): switch_cpus_1[i].system = testsys switch_cpus[i].workload = testsys.cpu[i].workload switch_cpus_1[i].workload = testsys.cpu[i].workload - switch_cpus[i].clock = testsys.cpu[0].clock - switch_cpus_1[i].clock = testsys.cpu[0].clock + switch_cpus[i].clock = testsys.cpu[i].clock + switch_cpus_1[i].clock = testsys.cpu[i].clock # if restoring, make atomic cpu simulate only a few instructions if options.checkpoint_restore != None: -- cgit v1.2.3