(value1, value2)
| 121 | function handleCastingFloat(mode) { |
| 122 | const gpu = new GPU({ mode }); |
| 123 | function add(value1, value2) { |
| 124 | return value1 + value2; |
| 125 | } |
| 126 | gpu.addFunction(add, { |
| 127 | argumentTypes: ['Float', 'Float'], |
| 128 | returnType: 'Float' |
no outgoing calls
no test coverage detected