parallel: Changed layout in --joblog so the runtime . remains in the same column.

This commit is contained in:
Ole Tange 2014-02-07 13:27:28 +01:00
parent 8ff224f3e3
commit 2c07fa5c17

View file

@ -989,7 +989,7 @@ sub open_joblog {
::wait_and_exit(255); ::wait_and_exit(255);
} }
print $Global::joblog print $Global::joblog
join("\t", "Seq", "Host", "Starttime", "Runtime", join("\t", "Seq", "Host", "Starttime", "JobRuntime",
"Send", "Receive", "Exitval", "Signal", "Command" "Send", "Receive", "Exitval", "Signal", "Command"
). "\n"; ). "\n";
} }
@ -1990,7 +1990,7 @@ sub filter_hosts {
# seq host time spent sent received exit signal command # seq host time spent sent received exit signal command
# 2 : 1372607672.654 0.675 0 0 0 0 eval true\ m\;ssh\ m\ parallel\ --number-of-cores # 2 : 1372607672.654 0.675 0 0 0 0 eval true\ m\;ssh\ m\ parallel\ --number-of-cores
if($col[0] eq "Seq" and $col[1] eq "Host" and if($col[0] eq "Seq" and $col[1] eq "Host" and
$col[2] eq "Starttime" and $col[3] eq "Runtime") { $col[2] eq "Starttime") {
# Header => skip # Header => skip
next; next;
} }
@ -5015,7 +5015,7 @@ sub print_joblog {
} }
print $Global::joblog print $Global::joblog
join("\t", $self->seq(), $self->sshlogin()->string(), join("\t", $self->seq(), $self->sshlogin()->string(),
$self->starttime(), $self->runtime(), $self->starttime(), sprintf("%10.3f",$self->runtime()),
$self->transfersize(), $self->returnsize(), $self->transfersize(), $self->returnsize(),
$self->exitstatus(), $self->exitsignal(), $cmd $self->exitstatus(), $self->exitsignal(), $cmd
). "\n"; ). "\n";