(meta)
| 17 | out = torch.empty(B, device=x.device, dtype=x.dtype) |
| 18 | |
| 19 | def grid(meta): |
| 20 | return (triton.cdiv(B, meta["BLOCK_SIZE_B"]),) |
| 21 | |
| 22 | tl_gemv_kernel[grid](x, Y, out, M, B) |
| 23 | return out |
nothing calls this directly
no outgoing calls
no test coverage detected