o3checker.py

来自「M5,一个功能强大的多处理器系统模拟器.很多针对处理器架构,性能的研究都使用它作」· Python 代码 · 共 16 行

PY
16
字号
from m5.params import *from m5 import build_envfrom BaseCPU import BaseCPUclass O3Checker(BaseCPU):    type = 'O3Checker'    exitOnError = Param.Bool(False, "Exit on an error")    updateOnError = Param.Bool(False,        "Update the checker with the main CPU's state on an error")    warnOnlyOnLoadError = Param.Bool(False,        "If a load result is incorrect, only print a warning and do not exit")    function_trace = Param.Bool(False, "Enable function trace")    function_trace_start = Param.Tick(0, "Cycle to start function trace")    if build_env['FULL_SYSTEM']:        profile = Param.Latency('0ns', "trace the kernel stack")

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?