Initial project scaffold

This commit is contained in:
wjh
2026-04-10 13:15:06 +00:00
commit a4a6b1f1c8
94 changed files with 3964 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# Environment Checklist
- PyTorch imports successfully
- `torch.cuda.is_available()` is `True`
- At least one CUDA device is visible
- The GPU name matches the machine you expect to be using
- Device capability is printed and recorded
- Triton imports successfully, or you know why it does not
- `torch.version.cuda` is visible when using CUDA-enabled PyTorch
- `nvcc --version` works if you plan to build the CUDA extension
- `nvidia-smi` works if the driver stack is installed
If any line above fails, fix that before working on later tasks.