| 127 | Tensor input = createTensor(ctx, {N, N}, kf32, makeData<N * N>().data()); |
| 128 | Tensor output = createTensor(ctx, {N, N}, kf32); |
| 129 | struct Params { |
| 130 | uint32_t size = N; |
| 131 | }; |
| 132 | Kernel op = |
| 133 | createKernel(ctx, {kPuzzle4, /*workgroup size*/ {Wx, Wy, 1}}, |
| 134 | Bindings{input, output}, /* nWorkgroups */ {1, 1, 1}, Params{N}); |
nothing calls this directly
no outgoing calls
no test coverage detected