-
Notifications
You must be signed in to change notification settings - Fork 2k
Update dependencies #9818
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Update dependencies #9818
Changes from all commits
6d7c72b
c825b6e
b1869de
b85dfb7
36dc36d
f04b584
941ae8a
ae91628
1f51d88
4d4def4
f00d478
eb21621
df9ebbe
e0da075
7c43508
e11d5ba
57bea6a
9a13d33
b342ed7
ec526fc
66f380f
9c83a3c
e696736
8a2e383
d936323
42d08f2
6f3e085
98d8458
e127987
9fbe4c6
c7537d6
3248684
bfe1e20
aabca98
cb0057a
fc1e128
894b1bd
bff85f4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ set -ex | |
| # Use latest stable version from https://pypi.org/project/torch/#history | ||
| # and closest to the version specified in | ||
| # https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes/rel-25-10.html#rel-25-10 | ||
| TORCH_VERSION="2.9.0" | ||
| TORCH_VERSION="2.9.1" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: Short answer: Yes — PyTorch 2.9.1 is published to PyPI (release files uploaded Nov 12, 2025). Official prebuilt CUDA wheels for 2.9.1 on download.pytorch.org are provided for CUDA 13.0 (cu130) — CUDA 13.1 / cu131 is not listed as an official wheel. [1][2][3] Sources:
Address CUDA 13.1 compatibility gap for PyTorch 2.9.1. PyTorch 2.9.1 is available on PyPI but official prebuilt wheels are only provided for CUDA 13.0 (cu130). CUDA 13.1 (cu131) is not officially supported. If this script targets CUDA 13.1, either use the cu130 wheel (with caution), downgrade to a version with CUDA 13.1 support, or add a note documenting this limitation. 🤖 Prompt for AI Agents |
||
| SYSTEM_ID=$(grep -oP '(?<=^ID=).+' /etc/os-release | tr -d '"') | ||
|
|
||
| prepare_environment() { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
CUDA 13.1.0 driver 590.44.01 NVIDIA availability compatibility💡 Result:
Short answer: Yes — NVIDIA driver 590.44.01 (beta, released Dec 2, 2025) is a newer driver branch than the R580 baseline required for CUDA 13.x, so it should be compatible with CUDA 13.1.0. (docs.nvidia.com)
Notes:
If you want, I can: (a) check the exact CUDA 13.1 toolkit release notes for any additional driver-minimums, or (b) verify whether a specific GPU model you have is listed as supported with the 590.44.01 driver.
Citations:
CUDA 13.1.0 and driver 590.44.01 are compatible and available.
Both versions exist and are legitimate NVIDIA releases. CUDA 13.x requires driver >= R580 series, and driver 590.44.01 is backward-compatible. However, note that 590.44.01 is a beta driver (released Dec 2, 2025) with hardware compatibility changes for older Maxwell/Pascal GPUs—test thoroughly before upgrading on systems using legacy GPU models.
🤖 Prompt for AI Agents