diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-11-17 23:16:19 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-11-17 23:16:19 -0500 |
commit | 4876e0c92b7ea5d2b9a06ec652dff5a0277e12ab (patch) | |
tree | 4377ba5be1ecb3a14262b726d84963d48fd7976c /configs/common | |
parent | 0e41d4e5ea5325d39c7fb459a702753670dfb1b7 (diff) | |
download | gem5-4876e0c92b7ea5d2b9a06ec652dff5a0277e12ab.tar.xz |
Config: Change misleading "cycle" message to say "tick".
Most of the messages in the config scripts that report a time value already
print "@ tick" followed by the current tick value, but a few were printing
"@ cycle". Since this is a distinction that's frequently confusing to new
users, this changes those message to the more accurate and consistent "@ tick".
Diffstat (limited to 'configs/common')
-rw-r--r-- | configs/common/Simulation.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/common/Simulation.py b/configs/common/Simulation.py index fd6f82c00..6d5b188db 100644 --- a/configs/common/Simulation.py +++ b/configs/common/Simulation.py @@ -246,7 +246,7 @@ def run(options, root, testsys, cpu_class): else: print "Switch at curTick count:%s" % str(10000) exit_event = m5.simulate(10000) - print "Switched CPUS @ cycle = %s" % (m5.curTick()) + print "Switched CPUS @ tick %s" % (m5.curTick()) # when you change to Timing (or Atomic), you halt the system # given as argument. When you are finished with the system @@ -267,7 +267,7 @@ def run(options, root, testsys, cpu_class): exit_event = m5.simulate() else: exit_event = m5.simulate(options.warmup) - print "Switching CPUS @ cycle = %s" % (m5.curTick()) + print "Switching CPUS @ tick %s" % (m5.curTick()) print "Simulation ends instruction count:%d" % \ (testsys.switch_cpus_1[0].max_insts_any_thread) m5.drain(testsys) @@ -367,7 +367,7 @@ def run(options, root, testsys, cpu_class): if exit_cause == '': exit_cause = exit_event.getCause() - print 'Exiting @ cycle %i because %s' % (m5.curTick(), exit_cause) + print 'Exiting @ tick %i because %s' % (m5.curTick(), exit_cause) if options.checkpoint_at_end: m5.checkpoint(joinpath(cptdir, "cpt.%d")) |