Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

[v.1x] Attempt to fix v1.x cd by installing new cuda compt package #19959

Merged
merged 7 commits into from
Feb 26, 2021
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: 4 additions & 0 deletions ci/docker/Dockerfile.build.ubuntu_gpu_cu102
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ ENV CUDNN_VERSION=8.0.4.30
COPY install/ubuntu_cudnn.sh /work/
RUN /work/ubuntu_cudnn.sh

# update the cuda compatibity package because cd host uses nvidia driver 460
RUN apt-get update && apt-get install -y cuda-compat-11-2
RUN ln -sfn /usr/local/cuda-11.2 /usr/local/cuda

# Always last
ARG USER_ID=0
ARG GROUP_ID=0
Expand Down
4 changes: 4 additions & 0 deletions ci/docker/Dockerfile.build.ubuntu_gpu_cu110
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ COPY install/ubuntu_python.sh /work/
COPY install/requirements /work/
RUN /work/ubuntu_python.sh

# update the cuda compatibity package because cd host uses nvidia driver 460
RUN apt-get update && apt-get install -y cuda-compat-11-2
RUN ln -sfn /usr/local/cuda-11.2 /usr/local/cuda

# Always last
ARG USER_ID=0
ARG GROUP_ID=0
Expand Down