File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -18,23 +18,18 @@ ARG DEBIAN_FRONTEND=noninteractive
1818RUN 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-
3227WORKDIR /build
3328
3429ARG SAMPLE_NAME
3530ENV SAMPLE_NAME=${SAMPLE_NAME}
3631
37- ARG CUDA_SAMPLES_VERSION=v12.9
32+ ARG CUDA_SAMPLES_VERSION=v13.0
3833RUN 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}" ) && \
Original file line number Diff line number Diff 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
2222ifeq ($(IMAGE_NAME ) ,)
2323REGISTRY ?= nvcr.io/nvidia/k8s
You can’t perform that action at this time.
0 commit comments