diff options
Diffstat (limited to 'util')
-rwxr-xr-x | util/pbs/send.py | 2 | ||||
-rwxr-xr-x | util/stats/stats.py | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/util/pbs/send.py b/util/pbs/send.py index 3ac34ff8e..54bba931d 100755 --- a/util/pbs/send.py +++ b/util/pbs/send.py @@ -79,6 +79,8 @@ usage = """\ Usage: %(progname)s [-c] [-e] [-f] [-j <jobfile>] [-q queue] [-v] <regexp> -c clean directory if job can be run + -C submit the checkpointing runs + -d Make jobs be dependent on the completion of the checkpoint runs -e only echo pbs command info, don't actually send the job -f force the job to run regardless of state -q <queue> submit job to the named queue diff --git a/util/stats/stats.py b/util/stats/stats.py index e481a794c..61f54dede 100755 --- a/util/stats/stats.py +++ b/util/stats/stats.py @@ -179,7 +179,7 @@ def commands(options, command, args): source.method = '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 @@ -189,7 +189,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: |