Files
kernel-lab/tasks/03_tiled_matmul/triton_skeleton.py
2026-04-10 13:15:06 +00:00

17 lines
377 B
Python

"""Workbook-local Triton notes for tiled matmul."""
def notes() -> str:
return """
TODO(student):
1. Map one program instance to one output tile.
2. Build row/col offsets for the tile.
3. Loop over K in block_k chunks.
4. Load A and B tiles, accumulate partial products.
5. Store the output tile with masking on edges.
"""
if __name__ == "__main__":
print(notes())