From: Nilay Vaish Date: Thu, 7 Jun 2012 13:05:31 +0000 (-0500) Subject: Config: call to setWorkCountOptions() for all ISAs X-Git-Tag: stable_2012_06_28~12 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=abb85a68f4f86d82e6c9514d6c60687d0a29ef94;p=gem5.git Config: call to setWorkCountOptions() for all ISAs --- 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)