Skip to content

Commit 57326d8

Browse files
committed
trunk: Fixed bug in computation of wall clock time in summarize_logs.pl
1 parent 84cf70e commit 57326d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

egs/wsj/s5/utils/summarize_logs.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ sub parse_accounting_entry {
107107
$total_cpu_time += $time * $threads;
108108
$total_threads += $threads;
109109
if ( $time > $total_clock_time ) {
110-
$total_clock_time += $time;
110+
$total_clock_time = $time;
111111
}
112112
}
113113
}

0 commit comments

Comments
 (0)