We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e739be3 commit 9b738d1Copy full SHA for 9b738d1
ansible/roles/cuda/defaults/main.yml
@@ -1,8 +1,9 @@
1
cuda_distro: "rhel{{ ansible_distribution_major_version }}"
2
cuda_repo: "https://developer.download.nvidia.com/compute/cuda/repos/{{ cuda_distro }}/x86_64/cuda-{{ cuda_distro }}.repo"
3
cuda_driver_stream: default
4
+cuda_package_version: '12.5.1-1' # or 'latest'. Workaround https://forums.developer.nvidia.com/t/issues-with-cuda-12-6-0-1-x86-64-from-rhel8-repo/
5
cuda_packages:
- - cuda
6
+ - "cuda{{ ('-' + cuda_package_version) if cuda_package_version != 'latest' else '' }}"
7
- nvidia-gds
8
# _cuda_version_tuple: # discovered from installed package e.g. ('12', '1', '0')
9
cuda_version_short: "{{ _cuda_version_tuple[0] }}.{{ _cuda_version_tuple[1] }}"
0 commit comments