(xShape: number[])
| 42 | size = true; |
| 43 | |
| 44 | constructor(xShape: number[]) { |
| 45 | this.outputShape = xShape; |
| 46 | this.dispatchLayout = flatDispatchLayout(this.outputShape); |
| 47 | this.dispatch = computeDispatch( |
| 48 | this.dispatchLayout, this.outputShape, this.workgroupSize); |
| 49 | this.shaderKey = 'lrn'; |
| 50 | } |
| 51 | |
| 52 | getUserCode(): string { |
| 53 | const userCode = ` |
nothing calls this directly
no test coverage detected