(meta)
| 120 | grid_size = {"v": None} |
| 121 | |
| 122 | def grid(meta): |
| 123 | grid_size_v = triton.cdiv(V, meta["BLOCK_SIZE_V"]) |
| 124 | grid_size["v"] = grid_size_v |
| 125 | return ( |
| 126 | grid_size_v, |
| 127 | triton.cdiv(H, meta["BLOCK_SIZE_H"]), |
| 128 | ) |
| 129 | |
| 130 | fused_mm_topk_kernel[grid]( |
| 131 | weights_ptr=weights, |
nothing calls this directly
no outgoing calls
no test coverage detected