(outShape: [number, number, number, number])
| 29 | size = true; |
| 30 | |
| 31 | constructor(outShape: [number, number, number, number]) { |
| 32 | this.outputShape = outShape; |
| 33 | this.dispatchLayout = flatDispatchLayout(this.outputShape); |
| 34 | this.dispatch = computeDispatch( |
| 35 | this.dispatchLayout, this.outputShape, this.workgroupSize); |
| 36 | this.shaderKey = 'transform'; |
| 37 | } |
| 38 | |
| 39 | getUserCode(): string { |
| 40 | const userCode = ` |
nothing calls this directly
no test coverage detected