Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

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: 3 additions & 1 deletion infra/ansible/config/apt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ apt:
signing_keys:
- url: https://apt.llvm.org/llvm-snapshot.gpg.key
keyring: /usr/share/keyrings/llvm.pgp
- url: "https://developer.download.nvidia.com/compute/cuda/repos/{{ cuda_repo }}/x86_64/3bf863cc.pub"
# Get the recent key version from
# https://docs.nvidia.com/cuda/cuda-installation-guide-linux/#network-repo-installation-for-debian.
- url: "https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub"
keyring: /usr/share/keyrings/cuda.pgp

repos:
Expand Down
6 changes: 3 additions & 3 deletions infra/ansible/config/cuda_deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ cuda_deps:
# List all libcudnn8 versions with `apt list -a libcudnn8`
libcudnn:
"12.0": libcudnn8=8.8.0.121-1+cuda12.0
"11.8": libcudnn8=8.8.0.121-1+cuda11.8
"11.8": libcudnn8=8.7.0.84-1+cuda11.8
"11.7": libcudnn8=8.5.0.96-1+cuda11.7
"11.2": libcudnn8=8.1.1.33-1+cuda11.2
libcudnn-dev:
"12.0": libcudnn8-dev=8.8.0.121-1+cuda12.0
"11.8": libcudnn8-dev=8.8.0.121-1+cuda11.8
"12.0": libcudnn8-dev=8.8.0.121-1+cuda12.0
"11.8": libcudnn8-dev=8.7.0.84-1+cuda11.8
"11.7": libcudnn8-dev=8.5.0.96-1+cuda11.7
"11.2": libcudnn8-dev=8.1.1.33-1+cuda11.2
2 changes: 1 addition & 1 deletion infra/ansible/config/vars.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Used for fetching cuda from the right repo, see apt.yaml.
cuda_repo: ubuntu1804
cuda_repo: debian11
cuda_version: "11.8"
# Used for fetching clang from the right repo, see apt.yaml.
llvm_debian_repo: buster
Expand Down