se.py (10300:ed3816dae6d5) se.py (10381:ab8b8601b6ff)
1# Copyright (c) 2012-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 199 unchanged lines hidden (view full) ---

208 system.cpu[i].workload = multiprocesses[0]
209 else:
210 system.cpu[i].workload = multiprocesses[i]
211
212 if options.fastmem:
213 system.cpu[i].fastmem = True
214
215 if options.simpoint_profile:
1# Copyright (c) 2012-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 199 unchanged lines hidden (view full) ---

208 system.cpu[i].workload = multiprocesses[0]
209 else:
210 system.cpu[i].workload = multiprocesses[i]
211
212 if options.fastmem:
213 system.cpu[i].fastmem = True
214
215 if options.simpoint_profile:
216 system.cpu[i].simpoint_profile = True
217 system.cpu[i].simpoint_interval = options.simpoint_interval
216 system.cpu[i].addSimPointProbe(options.simpoint_interval)
218
219 if options.checker:
220 system.cpu[i].addCheckerCpu()
221
222 system.cpu[i].createThreads()
223
224if options.ruby:
225 if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):

--- 40 unchanged lines hidden ---
217
218 if options.checker:
219 system.cpu[i].addCheckerCpu()
220
221 system.cpu[i].createThreads()
222
223if options.ruby:
224 if not (options.cpu_type == "detailed" or options.cpu_type == "timing"):

--- 40 unchanged lines hidden ---