Skip to content

Commit f545f9d

Browse files
committed
2.1.3
1 parent d67b20f commit f545f9d

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,9 @@ RUN wget -O /tmp/miniconda3.sh \
7070
\. /root/miniconda3/bin/activate && \
7171
conda upgrade libstdcxx-ng -c conda-forge -y && \
7272
pip3 install nvitop && \
73+
TORCH_CU_VER=$(echo $CUDA_VERSION | cut -d'.' -f1,2 | tr -d '.') && \
7374
pip3 install torch==${TORCH_VERSION} torchvision torchaudio \
74-
--index-url https://download.pytorch.org/whl/cu126 \
75+
--index-url "https://download.pytorch.org/whl/cu${TORCH_CU_VER}" \
7576
--no-cache-dir
7677

7778
# Some final steps

scripts/.image-configs.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
IMAGE_VERSION=2.1.2
2-
TORCH_VERSION=2.7.0
3-
CUDA_VERSION=12.6.0
1+
IMAGE_VERSION=2.1.3
2+
TORCH_VERSION=2.7.1
3+
CUDA_VERSION=12.8.0
44
UBUNTU_VERSION=24.04
55
LLVM_VERSION=21
66
IMAGE_TAG=v${IMAGE_VERSION}-torch${TORCH_VERSION}-cuda${CUDA_VERSION}-ubuntu${UBUNTU_VERSION}

0 commit comments

Comments
 (0)