docs(phase-00/01): note Python 3.14 lacks PyTorch CUDA wheels (#192)#235
docs(phase-00/01): note Python 3.14 lacks PyTorch CUDA wheels (#192)#235Elimartain wants to merge 2 commits into
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✅ Files skipped from review due to trivial changes (1)
📝 WalkthroughWalkthroughAdds a GPU setup note explaining that the ChangesGPU Setup Documentation
Estimated code review effort: 🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@phases/00-setup-and-tooling/01-dev-environment/docs/en.md`:
- Around line 126-127: Update the note that currently reads "On Python 3.14?
PyTorch doesn't ship CUDA wheels for the newest Python release right away, so
the command above can't find a matching GPU build and you fall back to CPU-only
torch. Use Python 3.11–3.13 for GPU support until the CUDA wheels catch up to
3.14." to reflect that PyTorch currently supports CUDA-enabled wheels for Python
3.10–3.14; change the wording to say Python 3.10–3.14 are supported for CUDA
builds and add a short parenthetical pointing to the official guide
(https://pytorch.org/get-started/locally/) for up-to-date platform/version
compatibility, preserving the original "On Python 3.14?" header to locate the
paragraph.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
Run ID: 7587f086-0656-4c42-8cab-36536f263512
📒 Files selected for processing (1)
phases/00-setup-and-tooling/01-dev-environment/docs/en.md
|
Thanks, good catch. I checked the wheel indexes directly:
So 3.14 CUDA wheels exist, just not on the |
Adds a short note in the GPU setup step pointing out that PyTorch doesn't publish CUDA wheels for the newest Python right away, so on Python 3.14 the install falls back to CPU-only torch. Suggests using Python 3.11–3.13 for GPU until 3.14 wheels are available.
This matches the setup doc, which already recommends Python 3.11+.
Fixes #192.