File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed
cookbooks/aws-parallelcluster-platform Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1717# NVidia
1818default [ 'cluster' ] [ 'nvidia' ] [ 'enabled' ] = 'no'
1919default [ 'cluster' ] [ 'nvidia' ] [ 'driver_version' ] = '570.86.15'
20- default [ 'cluster' ] [ 'nvidia' ] [ 'dcgm_version' ] = '3.3.9'
20+ default [ 'cluster' ] [ 'nvidia' ] [ 'dcgm_version' ] = '3.3.6'
21+ if platform? ( 'amazon' ) && node [ 'platform_version' ] == "2"
22+ default [ 'cluster' ] [ 'nvidia' ] [ 'driver_version' ] = '550.127.08'
23+ end
2124
2225# DCV
2326default [ 'cluster' ] [ 'dcv' ] [ 'authenticator' ] [ 'user' ] = "dcvextauth"
Original file line number Diff line number Diff line change 2323cuda_patch = '0'
2424cuda_complete_version = "#{ cuda_version } .#{ cuda_patch } "
2525cuda_version_suffix = '570.86.10'
26- cuda_arch = arm_instance? ? 'linux_sbsa' : 'linux'
27- cuda_url = "https://developer.download.nvidia.com/compute/cuda/12.8.0/local_installers/cuda_#{ cuda_complete_version } _#{ cuda_version_suffix } _#{ cuda_arch } .run"
2826cuda_samples_version = '12.8'
27+ if platform? ( 'amazon' ) && node [ 'platform_version' ] == "2"
28+ cuda_version = '12.4'
29+ cuda_patch = '1'
30+ cuda_complete_version = "#{ cuda_version } .#{ cuda_patch } "
31+ cuda_version_suffix = '550.54.15'
32+ cuda_samples_version = '12.4'
33+ end
34+ cuda_arch = arm_instance? ? 'linux_sbsa' : 'linux'
35+ cuda_url = "https://developer.download.nvidia.com/compute/cuda/#{ cuda_complete_version } /local_installers/cuda_#{ cuda_complete_version } _#{ cuda_version_suffix } _#{ cuda_arch } .run"
2936cuda_samples_url = "https://github.com/NVIDIA/cuda-samples/archive/refs/tags/v#{ cuda_samples_version } .tar.gz"
3037tmp_cuda_run = '/tmp/cuda.run'
3138tmp_cuda_sample_archive = '/tmp/cuda-sample.tar.gz'
You can’t perform that action at this time.
0 commit comments