Minor changes to reflect state used for regression stats.

src/cpu/checker/cpu.hh:
    Don't count checker's instructions towards total instructions committed.
src/python/m5/objects/Root.py:
    Set default clock to 1 THz.

--HG--
extra : convert_revision : 0b5eaa197c860c361a3b00087e45ddc249ff1918
This commit is contained in:
Kevin Lim 2006-07-19 16:09:34 -04:00
parent 4bd025742d
commit 87d4859458
2 changed files with 2 additions and 2 deletions

View file

@ -170,7 +170,7 @@ class CheckerCPU : public BaseCPU
virtual Counter totalInstructions() const
{
return numInst - startNumInst;
return 0;
}
// number of simulated loads

View file

@ -7,7 +7,7 @@ from Debug import Debug
class Root(SimObject):
type = 'Root'
clock = Param.RootClock('200MHz', "tick frequency")
clock = Param.RootClock('1THz', "tick frequency")
max_tick = Param.Tick('0', "maximum simulation ticks (0 = infinite)")
progress_interval = Param.Tick('0',
"print a progress message every n ticks (0 = never)")