(gpu, output)
| 33 | |
| 34 | |
| 35 | function createKernel(gpu, output) { |
| 36 | return gpu.createKernel(function (a) { |
| 37 | return a[this.thread.x]; |
| 38 | }).setOutput(output); |
| 39 | } |
| 40 | |
| 41 | function createKernelMapObject1Dimension1Length(mode) { |
| 42 | const gpu = new GPU({ mode }); |
no test coverage detected
searching dependent graphs…