diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2012-06-07 08:05:31 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2012-06-07 08:05:31 -0500 |
commit | abb85a68f4f86d82e6c9514d6c60687d0a29ef94 (patch) | |
tree | 1f8cc261b78a3d7583b2bb3fd568d3330a8eed1f /configs/example | |
parent | 51c23e601ef970ece3859ed113e60433795ffb65 (diff) | |
download | gem5-abb85a68f4f86d82e6c9514d6c60687d0a29ef94.tar.xz |
Config: call to setWorkCountOptions() for all ISAs
Diffstat (limited to 'configs/example')
-rw-r--r-- | configs/example/fs.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configs/example/fs.py b/configs/example/fs.py index d505443f0..a6d4869f3 100644 --- a/configs/example/fs.py +++ b/configs/example/fs.py @@ -100,12 +100,10 @@ elif buildEnv['TARGET_ISA'] == "sparc": test_sys = makeSparcSystem(test_mem_mode, bm[0]) elif buildEnv['TARGET_ISA'] == "x86": test_sys = makeLinuxX86System(test_mem_mode, options.num_cpus, bm[0]) - Simulation.setWorkCountOptions(test_sys, options) elif buildEnv['TARGET_ISA'] == "arm": test_sys = makeArmSystem(test_mem_mode, options.machine_type, bm[0], bare_metal=options.bare_metal) - Simulation.setWorkCountOptions(test_sys, options) else: fatal("Incapable of building %s full system!", buildEnv['TARGET_ISA']) @@ -183,4 +181,5 @@ if options.timesync: if options.frame_capture: VncServer.frame_capture = True +Simulation.setWorkCountOptions(test_sys, options) Simulation.run(options, root, test_sys, FutureClass) |