(a, b)
| 5 | |
| 6 | function inGPUInstanceSettings(mode) { |
| 7 | function customAdder(a, b) { |
| 8 | return a + b; |
| 9 | } |
| 10 | const gpu = new GPU({mode, functions: [customAdder] }); |
| 11 | const kernel = gpu.createKernel(function (a, b) { |
| 12 | return customAdder(a[this.thread.x], b[this.thread.x]); |
no outgoing calls
no test coverage detected
searching dependent graphs…