Skip to content

Commit f2887f5

Browse files
Bump CUDA_SAMPLES_VERSION to 13.0
Signed-off-by: Carlos Eduardo Arango Gutierrez <[email protected]>
1 parent 3876566 commit f2887f5

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

deployments/container/Dockerfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,18 @@ ARG DEBIAN_FRONTEND=noninteractive
1818
RUN apt-get update && apt-get install -y --no-install-recommends \
1919
build-essential \
2020
cmake \
21-
cuda-nvcc-12-9 \
21+
cuda-nvcc-13-0 \
2222
g++ \
2323
curl \
2424
&& \
2525
rm -rf /var/lib/apt/lists/*
2626

27-
# TODO: The cuda-nvvcc-12-9 package should either depend on the CUDA version or
28-
# the sample version. IFF we match the sample version, we need to also ensure
29-
# that the right alternative is used here.
30-
RUN update-alternatives --set cuda /usr/local/cuda-12.9
31-
3227
WORKDIR /build
3328

3429
ARG SAMPLE_NAME
3530
ENV SAMPLE_NAME=${SAMPLE_NAME}
3631

37-
ARG CUDA_SAMPLES_VERSION=v12.9
32+
ARG CUDA_SAMPLES_VERSION=v13.0
3833
RUN curl -L https://codeload.github.com/NVIDIA/cuda-samples/tar.gz/refs/tags/${CUDA_SAMPLES_VERSION} | \
3934
tar -xzvf - --strip-components=1 --wildcards */${SAMPLE_NAME}/* --wildcards */Common/* && \
4035
cd $(find /build/Samples -iname "${SAMPLE_NAME}") && \

versions.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ VERSION ?= cuda$(shell grep -Eo "FROM.*cuda:[0-9\.]+" deployments/container/Doc
1717

1818
# Specify the tag for the https://github.com/NVIDIA/cuda-samples repository.
1919
# This need not match the CUDA_VERSION above.
20-
CUDA_SAMPLES_VERSION := v12.9
20+
CUDA_SAMPLES_VERSION := v13.0
2121

2222
ifeq ($(IMAGE_NAME),)
2323
REGISTRY ?= nvcr.io/nvidia/k8s

0 commit comments

Comments
 (0)