| 142 | Tensor input = createTensor(ctx, {N, N}, kf32, makeData<N * N>().data()); |
| 143 | Tensor output = createTensor(ctx, {N, N}, kf32); |
| 144 | struct Params { |
| 145 | uint32_t size = N; |
| 146 | }; |
| 147 | Kernel op = |
| 148 | createKernel(ctx, {kPuzzle4, /*workgroup size*/ {Wx, Wy, 1}}, |
| 149 | Bindings{input, output}, /* totalWorkgroups */ {1, 1, 1}, Params{N}); |
nothing calls this directly
no outgoing calls
no test coverage detected