(childFunctionArgument1)
| 7 | function oneLayerDeepFloat(mode) { |
| 8 | const gpu = new GPU({ mode }); |
| 9 | function childFunction(childFunctionArgument1) { |
| 10 | return childFunctionArgument1 + 1; |
| 11 | } |
| 12 | gpu.addFunction(childFunction); |
| 13 | |
| 14 | const kernel = gpu.createKernel(function(kernelArgument1) { |
no outgoing calls
no test coverage detected
searching dependent graphs…