(a,b)
| 7 | const gpu = new GPU({ mode }); |
| 8 | const f = gpu.createKernel(function(a, b) { |
| 9 | function custom_adder(a,b) { |
| 10 | return a+b; |
| 11 | } |
| 12 | |
| 13 | return custom_adder(a[this.thread.x], b[this.thread.x]); |
| 14 | }, { |
no outgoing calls
no test coverage detected
searching dependent graphs…