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

Update Docker files to CUDA 12.5 and UCX 1.17 #1081

Draft
wants to merge 2 commits into
base: branch-0.41
Choose a base branch
from
Draft
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
8 changes: 4 additions & 4 deletions docker/UCXPy-rdma-core.dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
ARG CUDA_VERSION=11.5.2
ARG DISTRIBUTION_VERSION=ubuntu20.04
ARG CUDA_VERSION=12.5.1
ARG DISTRIBUTION_VERSION=ubuntu22.04
FROM nvidia/cuda:${CUDA_VERSION}-devel-${DISTRIBUTION_VERSION}

# Tag to checkout from UCX repository
ARG UCX_VERSION_TAG=v1.13.0
ARG UCX_VERSION_TAG=v1.17.0
# Where to install conda, and what to name the created environment
ARG CONDA_HOME=/opt/conda
ARG CONDA_ENV=ucx
# Name of conda spec file in the current working directory that
# will be used to build the conda environment.
ARG CONDA_ENV_SPEC=ucx-py-cuda11.5.yml
ARG CONDA_ENV_SPEC=ucx-py-cuda12.5.yml

ENV CONDA_ENV="${CONDA_ENV}"
ENV CONDA_HOME="${CONDA_HOME}"
Expand Down
2 changes: 1 addition & 1 deletion docker/ucx-py-cuda11.5.yml → docker/ucx-py-cuda12.5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:

dependencies:
- python=3.10
- cudatoolkit=11.5
- cuda-version=12.5
- setuptools
- cython>=3.0.0
- pytest
Expand Down
Loading