summaryrefslogtreecommitdiff
path: root/util/stats
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2005-11-02 14:55:05 -0500
committerAli Saidi <saidi@eecs.umich.edu>2005-11-02 14:55:05 -0500
commit0523736b96b2779f8a33c2315c94be55d0a4d9c7 (patch)
tree800a1a5c2f00d4984bd5fc1804e80630474f53e4 /util/stats
parent4b6540c2644a3369f4ef42c921dc8efbd6ef59c5 (diff)
downloadgem5-0523736b96b2779f8a33c2315c94be55d0a4d9c7.tar.xz
Change the output of stability info a little bit
--HG-- extra : convert_revision : bc467a40593234a1e3b694a741b4a7c2154a95ea
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 af9ae5575..3f6d162bc 100755
--- a/util/stats/stats.py
+++ b/util/stats/stats.py
@@ -181,7 +181,7 @@ def commands(options, command, args):
info.source.get = "sum"
def disp(*args):
- print "%-20s %12s %12s %4s %5s %5s %5s %10s" % args
+ print "%-35s %12s %12s %4s %5s %5s %5s %10s" % args
# temporary variable containing a bunch of dashes
d = '-' * 100
@@ -191,7 +191,7 @@ def commands(options, command, args):
print "%s:" % stat.name
disp("run name", "average", "stdev", ">10%", ">1SDV", ">2SDV",
"SAMP", "CV")
- disp(d[:20], d[:12], d[:12], d[:4], d[:5], d[:5], d[:5], d[:10])
+ disp(d[:35], d[:12], d[:12], d[:4], d[:5], d[:5], d[:5], d[:10])
#loop through all the selected runs
for run in runs: