Skip to content

Commit 91645b9

Browse files
Himani Deshpandehanwen-pcluste
authored andcommitted
Upgrade CUDA to 12.4.1
Signed-off-by: Hanwen <[email protected]>
1 parent 155581a commit 91645b9

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

cookbooks/aws-parallelcluster-platform/recipes/install/cuda.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919

2020
# Cuda installer from https://developer.nvidia.com/cuda-toolkit-archive
2121
# Cuda installer naming: cuda_11.8.0_520.61.05_linux
22-
cuda_version = '12.2'
23-
cuda_patch = '2'
22+
cuda_version = '12.4'
23+
cuda_patch = '1'
2424
cuda_complete_version = "#{cuda_version}.#{cuda_patch}"
25-
cuda_version_suffix = '535.104.05'
25+
cuda_version_suffix = '550.54.15'
2626
cuda_arch = arm_instance? ? 'linux_sbsa' : 'linux'
2727
cuda_url = "#{node['cluster']['artifacts_s3_url']}/dependencies/cuda/cuda_#{cuda_complete_version}_#{cuda_version_suffix}_#{cuda_arch}.run"
28-
cuda_samples_version = '12.2'
28+
cuda_samples_version = '12.4'
2929
cuda_samples_url = "#{node['cluster']['artifacts_s3_url']}/dependencies/cuda/samples/v#{cuda_samples_version}.tar.gz"
3030
tmp_cuda_run = '/tmp/cuda.run'
3131
tmp_cuda_sample_archive = '/tmp/cuda-sample.tar.gz'

cookbooks/aws-parallelcluster-platform/spec/unit/recipes/cuda_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
require 'spec_helper'
22

33
describe 'aws-parallelcluster-platform::cuda' do
4-
cached(:cuda_version) { '12.2' }
5-
cached(:cuda_patch) { '2' }
4+
cached(:cuda_version) { '12.4' }
5+
cached(:cuda_patch) { '1' }
66
cached(:cuda_complete_version) { "#{cuda_version}.#{cuda_patch}" }
7-
cached(:cuda_version_suffix) { '535.104.05' }
7+
cached(:cuda_version_suffix) { '550.54.15' }
88

99
context 'when nvidia not enabled' do
1010
cached(:chef_run) do
@@ -20,7 +20,7 @@
2020
context 'when on arm' do
2121
cached(:cuda_arch) { 'linux_sbsa' }
2222
cached(:cuda_url) { "#{node['cluster']['artifacts_s3_url']}/dependencies/cuda/cuda_#{cuda_complete_version}_#{cuda_version_suffix}_#{cuda_arch}.run" }
23-
cached(:cuda_samples_version) { '12.2' }
23+
cached(:cuda_samples_version) { '12.4' }
2424
cached(:cuda_samples_url) { "#{node['cluster']['artifacts_s3_url']}/dependencies/cuda/samples/v#{cuda_samples_version}.tar.gz" }
2525

2626
cached(:chef_run) do

0 commit comments

Comments
 (0)