(meta)
| 170 | # This enables processing many N blocks for the same M block, |
| 171 | # allowing A matrix (small M dimension) to be reused from L2 cache. |
| 172 | def grid(meta): |
| 173 | return ( |
| 174 | triton.cdiv(N, meta["BLOCK_SIZE_N"]), |
| 175 | triton.cdiv(M, meta["BLOCK_SIZE_M"]), |
| 176 | ) |
| 177 | |
| 178 | matmul_kernel[grid]( |
| 179 | a, |
nothing calls this directly
no outgoing calls
no test coverage detected