(files)
| 48 | } |
| 49 | |
| 50 | async function getDataForFiles(files) { |
| 51 | return Promise.all(files.map( |
| 52 | d => |
| 53 | fetch( |
| 54 | `https://storage.googleapis.com/learnjs-data/webgpu_benchmark_logs/${ |
| 55 | d}.json`) |
| 56 | .then(d => d.json()) |
| 57 | .catch(err => console.log(err)))); |
| 58 | } |
| 59 | |
| 60 | function templateTimeSelection(start, end) { |
| 61 | startDateEl.innerHTML = start.format(MOMENT_DISPLAY_FORMAT); |
no test coverage detected
searching dependent graphs…