se.py (9129:b57966a6c512) se.py (9197:0281650db548)
1# Copyright (c) 2012 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

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

56
57import Options
58import Ruby
59import Simulation
60import CacheConfig
61from Caches import *
62from cpu2000 import *
63
1# Copyright (c) 2012 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

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

56
57import Options
58import Ruby
59import Simulation
60import CacheConfig
61from Caches import *
62from cpu2000 import *
63
64def get_processes(options):
65 """Interprets provided options and returns a list of processes"""
66
67 multiprocesses = []
68 inputs = []
69 outputs = []
70 errouts = []
71 pargs = []
72
73 workloads = options.cmd.split(';')
74 if options.input != "":
75 inputs = options.input.split(';')
76 if options.output != "":
77 outputs = options.output.split(';')
78 if options.errout != "":
79 errouts = options.errout.split(';')
80 if options.options != "":
81 pargs = options.options.split(';')
82
83 idx = 0
84 for wrkld in workloads:
85 process = LiveProcess()
86 process.executable = wrkld
87
88 if len(pargs) > idx:
89 process.cmd = [wrkld] + [" "] + [pargs[idx]]
90 else:
91 process.cmd = [wrkld]
92
93 if len(inputs) > idx:
94 process.input = inputs[idx]
95 if len(outputs) > idx:
96 process.output = outputs[idx]
97 if len(errouts) > idx:
98 process.errout = errouts[idx]
99
100 multiprocesses.append(process)
101 idx += 1
102
103 if options.smt:
104 assert(options.cpu_type == "detailed" or options.cpu_type == "inorder")
105 return multiprocesses, idx
106 else:
107 return multiprocesses, 1
108
109
64parser = optparse.OptionParser()
65Options.addCommonOptions(parser)
66Options.addSEOptions(parser)
67
68if '--ruby' in sys.argv:
69 Ruby.define_options(parser)
70
71(options, args) = parser.parse_args()
72
73if args:
74 print "Error: script doesn't take any positional arguments"
75 sys.exit(1)
76
77multiprocesses = []
110parser = optparse.OptionParser()
111Options.addCommonOptions(parser)
112Options.addSEOptions(parser)
113
114if '--ruby' in sys.argv:
115 Ruby.define_options(parser)
116
117(options, args) = parser.parse_args()
118
119if args:
120 print "Error: script doesn't take any positional arguments"
121 sys.exit(1)
122
123multiprocesses = []
78apps = []
124numThreads = 1
79
80if options.bench:
81 apps = options.bench.split("-")
82 if len(apps) != options.num_cpus:
83 print "number of benchmarks not equal to set num_cpus!"
84 sys.exit(1)
85
86 for app in apps:
87 try:
88 if buildEnv['TARGET_ISA'] == 'alpha':
89 exec("workload = %s('alpha', 'tru64', 'ref')" % app)
90 else:
91 exec("workload = %s(buildEnv['TARGET_ISA'], 'linux', 'ref')" % app)
92 multiprocesses.append(workload.makeLiveProcess())
93 except:
94 print >>sys.stderr, "Unable to find workload for %s: %s" % (buildEnv['TARGET_ISA'], app)
95 sys.exit(1)
96elif options.cmd:
125
126if options.bench:
127 apps = options.bench.split("-")
128 if len(apps) != options.num_cpus:
129 print "number of benchmarks not equal to set num_cpus!"
130 sys.exit(1)
131
132 for app in apps:
133 try:
134 if buildEnv['TARGET_ISA'] == 'alpha':
135 exec("workload = %s('alpha', 'tru64', 'ref')" % app)
136 else:
137 exec("workload = %s(buildEnv['TARGET_ISA'], 'linux', 'ref')" % app)
138 multiprocesses.append(workload.makeLiveProcess())
139 except:
140 print >>sys.stderr, "Unable to find workload for %s: %s" % (buildEnv['TARGET_ISA'], app)
141 sys.exit(1)
142elif options.cmd:
97 process = LiveProcess()
98 process.executable = options.cmd
99 process.cmd = [options.cmd] + options.options.split()
100 multiprocesses.append(process)
143 multiprocesses, numThreads = get_processes(options)
101else:
102 print >> sys.stderr, "No workload specified. Exiting!\n"
103 sys.exit(1)
104
105
144else:
145 print >> sys.stderr, "No workload specified. Exiting!\n"
146 sys.exit(1)
147
148
106if options.input != "":
107 process.input = options.input
108if options.output != "":
109 process.output = options.output
110if options.errout != "":
111 process.errout = options.errout
112
113
114# By default, set workload to path of user-specified binary
115workloads = options.cmd
116numThreads = 1
117
118if options.cpu_type == "detailed" or options.cpu_type == "inorder":
119 #check for SMT workload
120 workloads = options.cmd.split(';')
121 if len(workloads) > 1:
122 process = []
123 smt_idx = 0
124 inputs = []
125 outputs = []
126 errouts = []
127
128 if options.input != "":
129 inputs = options.input.split(';')
130 if options.output != "":
131 outputs = options.output.split(';')
132 if options.errout != "":
133 errouts = options.errout.split(';')
134
135 for wrkld in workloads:
136 smt_process = LiveProcess()
137 smt_process.executable = wrkld
138 smt_process.cmd = wrkld + " " + options.options
139 if inputs and inputs[smt_idx]:
140 smt_process.input = inputs[smt_idx]
141 if outputs and outputs[smt_idx]:
142 smt_process.output = outputs[smt_idx]
143 if errouts and errouts[smt_idx]:
144 smt_process.errout = errouts[smt_idx]
145 process += [smt_process, ]
146 smt_idx += 1
147 numThreads = len(workloads)
148
149(CPUClass, test_mem_mode, FutureClass) = Simulation.setCPUClass(options)
150CPUClass.clock = options.clock
149(CPUClass, test_mem_mode, FutureClass) = Simulation.setCPUClass(options)
150CPUClass.clock = options.clock
151CPUClass.numThreads = numThreads;
151CPUClass.numThreads = numThreads
152
152
153np = options.num_cpus
153# Check -- do not allow SMT with multiple CPUs
154if options.smt and options.num_cpus > 1:
155 fatal("You cannot use SMT with multiple CPUs!")
154
156
157np = options.num_cpus
155system = System(cpu = [CPUClass(cpu_id=i) for i in xrange(np)],
156 physmem = SimpleMemory(range=AddrRange("512MB")),
157 membus = CoherentBus(), mem_mode = test_mem_mode)
158
159# Sanity check
160if options.fastmem and (options.caches or options.l2cache):
161 fatal("You cannot use fastmem in combination with caches!")
162
163for i in xrange(np):
158system = System(cpu = [CPUClass(cpu_id=i) for i in xrange(np)],
159 physmem = SimpleMemory(range=AddrRange("512MB")),
160 membus = CoherentBus(), mem_mode = test_mem_mode)
161
162# Sanity check
163if options.fastmem and (options.caches or options.l2cache):
164 fatal("You cannot use fastmem in combination with caches!")
165
166for i in xrange(np):
164 if len(multiprocesses) == 1:
167 if options.smt:
168 system.cpu[i].workload = multiprocesses
169 elif len(multiprocesses) == 1:
165 system.cpu[i].workload = multiprocesses[0]
166 else:
167 system.cpu[i].workload = multiprocesses[i]
168
169 if options.fastmem:
170 system.cpu[i].fastmem = True
171
172 if options.checker:

--- 30 unchanged lines hidden ---
170 system.cpu[i].workload = multiprocesses[0]
171 else:
172 system.cpu[i].workload = multiprocesses[i]
173
174 if options.fastmem:
175 system.cpu[i].fastmem = True
176
177 if options.checker:

--- 30 unchanged lines hidden ---