-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Update nvcr.io/nvidia/cuda Docker tag to v13 #14431
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?
Changes from all commits
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 |
|---|---|---|
|
|
@@ -15,7 +15,7 @@ | |
| # NVIDIA CUDA container: https://catalog.ngc.nvidia.com/orgs/nvidia/containers/cuda | ||
| # Supported NVIDIA images: https://gitlab.com/nvidia/container-images/cuda/blob/master/doc/supported-tags.md | ||
| # TensorFlow/CUDA compatibility: https://www.tensorflow.org/install/source#gpu | ||
| FROM nvcr.io/nvidia/cuda:12.5.1-cudnn-runtime-ubuntu22.04 | ||
| FROM nvcr.io/nvidia/cuda:13.3.0-cudnn-runtime-ubuntu22.04 | ||
|
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. Upgrading to CUDA 13.3.0 is incompatible with TensorFlow 2.21.0 (specified in |
||
|
|
||
| WORKDIR /pipeline | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,7 +15,7 @@ | |
| # NVIDIA CUDA container: https://catalog.ngc.nvidia.com/orgs/nvidia/containers/cuda | ||
| # Supported NVIDIA images: https://gitlab.com/nvidia/container-images/cuda/blob/master/doc/supported-tags.md | ||
| # TensorFlow/CUDA compatibility: https://www.tensorflow.org/install/source#gpu | ||
| FROM nvcr.io/nvidia/cuda:12.5.1-cudnn-runtime-ubuntu22.04 | ||
| FROM nvcr.io/nvidia/cuda:13.3.0-cudnn-runtime-ubuntu22.04 | ||
|
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. Upgrading to CUDA 13.3.0 is incompatible with TensorFlow 2.21.0 (specified in |
||
|
|
||
| WORKDIR /pipeline | ||
|
|
||
|
|
||
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.
Upgrading to CUDA 13.3.0 is incompatible with TensorFlow 2.21.0 (specified in
requirements.txt). TensorFlow 2.21.0 is built against CUDA 12.x. Upgrading to CUDA 13 will prevent TensorFlow from detecting or utilizing the GPU, causing the pipeline's GPU check to fail at runtime. Keep the CUDA version at 12.x to maintain compatibility.