base: Fix gpu-compute output stream creation
[gem5.git] / src / cpu / o3 / O3Checker.py
index d53e5e5277dc77c997dfc3b5601cb519be19f11f..f21a038c42dd174381dc4b342c28b03890f7ee27 100644 (file)
 # Authors: Nathan Binkert
 
 from m5.params import *
-from BaseCPU import BaseCPU
+from CheckerCPU import CheckerCPU
 
-class O3Checker(BaseCPU):
+class O3Checker(CheckerCPU):
     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(True,
-        "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")
+    cxx_header = 'cpu/o3/checker.hh'