se.py
来自「M5,一个功能强大的多处理器系统模拟器.很多针对处理器架构,性能的研究都使用它作」· Python 代码 · 共 117 行
PY
117 行
# Simple test script## "m5 test.py"import m5from m5.objects import *import os, optparse, sysm5.AddToPath('../common')import Simulationfrom Caches import *from cpu2000 import *# Get paths we might need. It's expected this file is in m5/configs/example.config_path = os.path.dirname(os.path.abspath(__file__))config_root = os.path.dirname(config_path)m5_root = os.path.dirname(config_root)parser = optparse.OptionParser()# Benchmark optionsparser.add_option("-c", "--cmd", default=os.path.join(m5_root, "tests/test-progs/hello/bin/alpha/linux/hello"), help="The binary to run in syscall emulation mode.")parser.add_option("-o", "--options", default="", help="The options to pass to the binary, use \" \" around the entire\ string.")parser.add_option("-i", "--input", default="", help="A file of input to give to the binary.")parser.add_option("--bench", action="store", type="string", default=None, help="base names for --take-checkpoint and --checkpoint-restore")parser.add_option("-S", "--simpoint", action="store_true", default=False, help="""Use workload simpoints as an instruction offset for--checkpoint-restore or --take-checkpoint.""")execfile(os.path.join(config_root, "common", "Options.py"))(options, args) = parser.parse_args()if args: print "Error: script doesn't take any positional arguments" sys.exit(1)if options.bench: try: if m5.build_env['TARGET_ISA'] != 'alpha': print >>sys.stderr, "Simpoints code only works for Alpha ISA at this time" sys.exit(1) exec("workload = %s('alpha', 'tru64', 'ref')" % options.bench) process = workload.makeLiveProcess() except: print >>sys.stderr, "Unable to find workload for %s" % options.bench sys.exit(1)else: process = LiveProcess() process.executable = options.cmd process.cmd = [options.cmd] + options.options.split()if options.input != "": process.input = options.inputif options.detailed: #check for SMT workload workloads = options.cmd.split(';') if len(workloads) > 1: process = [] smt_idx = 0 inputs = [] if options.input != "": inputs = options.input.split(';') for wrkld in workloads: smt_process = LiveProcess() smt_process.executable = wrkld smt_process.cmd = wrkld + " " + options.options if inputs and inputs[smt_idx]: smt_process.input = inputs[smt_idx] process += [smt_process, ] smt_idx += 1(CPUClass, test_mem_mode, FutureClass) = Simulation.setCPUClass(options)CPUClass.clock = '2GHz'np = options.num_cpussystem = System(cpu = [CPUClass(cpu_id=i) for i in xrange(np)], physmem = PhysicalMemory(range=AddrRange("512MB")), membus = Bus(), mem_mode = test_mem_mode)system.physmem.port = system.membus.portif options.l2cache: system.l2 = L2Cache(size='2MB') system.tol2bus = Bus() system.l2.cpu_side = system.tol2bus.port system.l2.mem_side = system.membus.portfor i in xrange(np): if options.caches: system.cpu[i].addPrivateSplitL1Caches(L1Cache(size = '32kB'), L1Cache(size = '64kB')) if options.l2cache: system.cpu[i].connectMemPorts(system.tol2bus) else: system.cpu[i].connectMemPorts(system.membus) system.cpu[i].workload = process if options.fastmem: system.cpu[0].physmem_port = system.physmem.portroot = Root(system = system)Simulation.run(options, root, system, FutureClass)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?