(x)
| 86 | const med = times[Math.floor(times.length / 2)] || 0; |
| 87 | const min = times[0] || 0, max = times[times.length - 1] || 0; |
| 88 | const r = (x) => (base.progMs ? (x / base.progMs).toFixed(2) : 'n/a'); |
| 89 | console.log(`\nSUMMARY`); |
| 90 | console.log(` pass: ${good.length}/${SOAK} (program ran parallel_task ok + all 3 results)`); |
| 91 | console.log(` crashes/errors/hangs: ${rows.filter((x) => x.throw || x.errorSeen).length}`); |