Initial project scaffold

This commit is contained in:
2026-04-10 13:22:19 +00:00
commit 7fa69b1354
94 changed files with 3964 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
"""Workbook-local Triton notes for online softmax."""
def notes() -> str:
return """
TODO(student):
1. Keep running_max and running_sum for one row.
2. Process the row in blocks.
3. Update the recurrence after each block.
4. Normalize once the full row has been seen.
"""
if __name__ == "__main__":
print(notes())