summaryrefslogtreecommitdiff
path: root/util/stats
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2004-11-17 00:03:59 -0500
committerNathan Binkert <binkertn@umich.edu>2004-11-17 00:03:59 -0500
commitee962a6b0bf71b9ca8ce0b3cadc17938266fa162 (patch)
treedeff5f7f3f73ba32eb224cddaacb3ac8708d9c11 /util/stats
parentf4274457536c2759b78519b170671d59ce14c491 (diff)
downloadgem5-ee962a6b0bf71b9ca8ce0b3cadc17938266fa162.tar.xz
Fix some commands.
util/stats/stats.py: we only need the system if we're issuing one of the commands that uses a stored formula. --HG-- extra : convert_revision : d129a00eeba46a03f7d600922d679aa0f43636be
Diffstat (limited to 'util/stats')
-rwxr-xr-xutil/stats/stats.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/stats/stats.py b/util/stats/stats.py
index 233eab521..8ec889f09 100755
--- a/util/stats/stats.py
+++ b/util/stats/stats.py
@@ -132,8 +132,6 @@ def commands(options, command, args):
info.source.connect()
info.source.update_dict(globals())
- system = info.source.__dict__[options.system]
-
if type(options.get) is str:
info.source.get = options.get
@@ -232,6 +230,8 @@ def commands(options, command, args):
if len(args):
raise CommandException
+ system = info.source.__dict__[options.system]
+
if command == 'usertime':
import copy
kernel = copy.copy(system.full_cpu.numCycles)