(diff)
| 15 | } |
| 16 | |
| 17 | function getTime(diff) { |
| 18 | const time = Math.ceil(diff[0] + diff[1] / 1e9); |
| 19 | const hours = pad(Math.floor(time / 3600), 2, '0'); |
| 20 | const minutes = pad(Math.floor((time % 3600) / 60), 2, '0'); |
| 21 | const seconds = pad((time % 3600) % 60, 2, '0'); |
| 22 | return `${hours}:${minutes}:${seconds}`; |
| 23 | } |
| 24 | |
| 25 | // A run is an item in the job queue: { binary, filename, iter } |
| 26 | // A config is an item in the subqueue: { binary, filename, iter, configs } |
no test coverage detected
searching dependent graphs…