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:11.8.0-cudnn8-runtime-ubuntu22.04
FROM nvcr.io/nvidia/cuda:12.2.2-cudnn8-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

This update to CUDA 12.2.2 is incompatible with the TensorFlow version (2.12.0) used in this example's requirements.txt. According to the official TensorFlow documentation, TensorFlow 2.12.0 requires CUDA 11.8. This mismatch will likely cause runtime errors and prevent GPU utilization.

To resolve this, please revert to a CUDA version compatible with TensorFlow 2.12.0.

Reference: TensorFlow build configurations

FROM nvcr.io/nvidia/cuda:11.8.0-cudnn8-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:11.8.0-cudnn8-runtime-ubuntu22.04
FROM nvcr.io/nvidia/cuda:12.2.2-cudnn8-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

This update to CUDA 12.2.2 is incompatible with the TensorFlow version (2.12.0) used in this example's requirements.txt. According to the official TensorFlow documentation, TensorFlow 2.12.0 requires CUDA 11.8. This mismatch will likely cause runtime errors and prevent GPU utilization.

To resolve this, please revert to a CUDA version compatible with TensorFlow 2.12.0.

Reference: TensorFlow build configurations

FROM nvcr.io/nvidia/cuda:11.8.0-cudnn8-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:11.8.0-cudnn8-runtime-ubuntu22.04
FROM nvcr.io/nvidia/cuda:12.2.2-cudnn8-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

This update to CUDA 12.2.2 is incompatible with the TensorFlow version (2.12.0) used in this example's requirements.txt. According to the official TensorFlow documentation, TensorFlow 2.12.0 requires CUDA 11.8. This mismatch will likely cause runtime errors and prevent GPU utilization.

To resolve this, please revert to a CUDA version compatible with TensorFlow 2.12.0.

Reference: TensorFlow build configurations

FROM nvcr.io/nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04


WORKDIR /pipeline

Expand Down