Browse Source

Fix missing stanza in 3P preproc log parser

Ian Goldberg 1 year ago
parent
commit
bf8ddd3dcb
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Docker/parse_logs

+ 4 - 0
Docker/parse_logs

@@ -177,6 +177,10 @@ sub parse_3P_preproc {
     my @preproc_s = ();
     my @preproc_kib = ();
     while(<>) {
+        if (/===== P([012]) output/) {
+            $who = $1;
+            next;
+        }
         last if /===== End/;
         if (/WallClockTime: (\d+\.?\d*)/) {
             $preproc_s[$who] = $1;