Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

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.

FROM nvcr.io/nvidia/cuda:12.5.1-cudnn-runtime-ubuntu22.04


WORKDIR /pipeline

Expand Down
2 changes: 1 addition & 1 deletion dataflow/gpu-examples/tensorflow-landsat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

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.

FROM nvcr.io/nvidia/cuda:12.5.1-cudnn-runtime-ubuntu22.04


WORKDIR /pipeline

Expand Down
2 changes: 1 addition & 1 deletion dataflow/gpu-examples/tensorflow-minimal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

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.

FROM nvcr.io/nvidia/cuda:12.5.1-cudnn-runtime-ubuntu22.04


WORKDIR /pipeline

Expand Down