Skip to content
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

feat: Update CUDA 12.4 builds to 12.4.1 with cuDNN #37

Merged
merged 2 commits into from
Apr 25, 2024
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu-20.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ jobs:
folder: .
dockerfile: Dockerfile.ubuntu20
base-image: nvidia/cuda
base-tag: 12.4.0-devel-ubuntu20.04
cuda-version-minor: "12.4.0"
base-tag: 12.4.1-cudnn-devel-ubuntu20.04
cuda-version-minor: "12.4.1"
cuda-version-major: "12.4"
nccl-version: 2.21.5-1
cuda-samples-version: "12.4"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu-22.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
folder: .
dockerfile: Dockerfile.ubuntu22
base-image: nvidia/cuda
base-tag: 12.4.0-devel-ubuntu22.04
cuda-version-minor: "12.4.0"
base-tag: 12.4.1-cudnn-devel-ubuntu22.04
cuda-version-minor: "12.4.1"
cuda-version-major: "12.4"
nccl-version: 2.21.5-1
cuda-samples-version: "12.4"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ubuntu20
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG CUDA_VERSION_MINOR=11.7.1
ARG BASE_IMAGE=nvidia/cuda:${CUDA_VERSION_MINOR}-cudnn8-devel-ubuntu20.04
FROM ${BASE_IMAGE}
FROM ${BASE_IMAGE} as base

ARG CUDA_VERSION_MAJOR=11.7
ARG TARGET_NCCL_VERSION=2.14.3-1
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,14 @@ built from these Dockerfiles that can be used as base for your own images.

| **Image Tag** | **Ubuntu** | **CUDA** | **NCCL** | **HPC-X** |
|-----------------------------------------------------------------------------------|------------|----------|----------|-----------|
| ghcr.io/coreweave/nccl-tests:12.4.1-cudnn-devel-ubuntu20.04-nccl2.21.5-1-027b52a | 20.04 | 12.4.1 | 2.21.5 | 2.18.0 |
| ghcr.io/coreweave/nccl-tests:12.3.2-cudnn9-devel-ubuntu20.04-nccl2.20.3-1-868dc3d | 20.04 | 12.3.2 | 2.20.3 | 2.18.0 |
| ghcr.io/coreweave/nccl-tests:12.2.2-cudnn8-devel-ubuntu20.04-nccl2.20.3-1-868dc3d | 20.04 | 12.2.2 | 2.20.3 | 2.18.0 |
| ghcr.io/coreweave/nccl-tests:12.2.2-cudnn8-devel-ubuntu20.04-nccl2.21.5-1-027b52a | 20.04 | 12.2.2 | 2.21.5 | 2.18.0 |
| ghcr.io/coreweave/nccl-tests:12.1.1-cudnn8-devel-ubuntu20.04-nccl2.18.3-1-868dc3d | 20.04 | 12.1.1 | 2.18.3 | 2.18.0 |
| ghcr.io/coreweave/nccl-tests:12.0.1-cudnn8-devel-ubuntu20.04-nccl2.19.3-1-868dc3d | 20.04 | 12.0.1 | 2.19.3 | 2.18.0 |
| ghcr.io/coreweave/nccl-tests:11.8.0-cudnn8-devel-ubuntu20.04-nccl2.16.5-1-868dc3d | 20.04 | 11.8.0 | 2.16.5 | 2.14.0 |
| ghcr.io/coreweave/nccl-tests:11.7.1-cudnn8-devel-ubuntu20.04-nccl2.14.3-1-a6a61ab | 20.04 | 11.7.1 | 2.14.3 | 2.14.0 |
| ghcr.io/coreweave/nccl-tests:12.4.1-cudnn-devel-ubuntu22.04-nccl2.21.5-1-027b52a | 22.04 | 12.4.1 | 2.21.5 | 2.18.0 |
| ghcr.io/coreweave/nccl-tests:12.3.2-cudnn9-devel-ubuntu22.04-nccl2.20.3-1-868dc3d | 22.04 | 12.3.2 | 2.20.3 | 2.18.0 |
| ghcr.io/coreweave/nccl-tests:12.2.2-cudnn8-devel-ubuntu22.04-nccl2.19.3-1-868dc3d | 22.04 | 12.2.2 | 2.19.3 | 2.18.0 |
| ghcr.io/coreweave/nccl-tests:12.1.1-cudnn8-devel-ubuntu22.04-nccl2.18.3-1-868dc3d | 22.04 | 12.1.1 | 2.18.3 | 2.18.0 |
Expand Down
Loading