diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2012-01-28 07:24:50 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2012-01-28 07:24:50 -0800 |
commit | d7f71bf424f2ccb87366b4f464e657a185abe414 (patch) | |
tree | 907723904c9f73f1ba29cc0ad4c38a450a16d4ae /configs/common | |
parent | 57e07ac2d2daaa7469241372510395e43ebe14c0 (diff) | |
download | gem5-d7f71bf424f2ccb87366b4f464e657a185abe414.tar.xz |
SE/FS: Get rid of FULL_SYSTEM in the configs directory
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/Simulation.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/configs/common/Simulation.py b/configs/common/Simulation.py index 193f8d487..0ae287e77 100644 --- a/configs/common/Simulation.py +++ b/configs/common/Simulation.py @@ -124,8 +124,7 @@ def run(options, root, testsys, cpu_class): if options.fast_forward: testsys.cpu[i].max_insts_any_thread = int(options.fast_forward) switch_cpus[i].system = testsys - if not buildEnv['FULL_SYSTEM']: - switch_cpus[i].workload = testsys.cpu[i].workload + switch_cpus[i].workload = testsys.cpu[i].workload switch_cpus[i].clock = testsys.cpu[0].clock # simulation period if options.maxinsts: @@ -148,9 +147,8 @@ def run(options, root, testsys, cpu_class): for i in xrange(np): switch_cpus[i].system = testsys switch_cpus_1[i].system = testsys - if not buildEnv['FULL_SYSTEM']: - switch_cpus[i].workload = testsys.cpu[i].workload - switch_cpus_1[i].workload = testsys.cpu[i].workload + 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 |