Skip to content

Commit 7237c22

Browse files
committed
[Dependencies] Upgrade CUDA Toolkit to version 12.6.3 (from 12.4.1).
Signed-off-by: Giacomo Marciani <[email protected]>
1 parent de6eacd commit 7237c22

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
1313
- xdcv: `2024.0.631-1`
1414
- gl: `2024.0.1078-1`
1515
- web_viewer: `2024.0-18131-1`
16+
- Upgrade CUDA Toolkit to version 12.6.3 (from 12.4.1).
1617

1718
**BUG FIXES**
1819
- Fix an issue in the way we get region when manage volumes so that it can correctly handle local zone.

THIRD-PARTY-LICENSES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4628,7 +4628,7 @@ laws, restrictions or regulations.
46284628

46294629
------
46304630

4631-
** Cuda Samples; version 12.4 -- https://github.com/NVIDIA/cuda-samples/
4631+
** Cuda Samples; version 12.6 -- https://github.com/NVIDIA/cuda-samples/
46324632
Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
46334633

46344634
* Package Cuda Samples's source code may be found at:

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

Lines changed: 3 additions & 3 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.4'
23-
cuda_patch = '1'
22+
cuda_version = '12.6'
23+
cuda_patch = '3'
2424
cuda_complete_version = "#{cuda_version}.#{cuda_patch}"
2525
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.4'
28+
cuda_samples_version = '12.6'
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
require 'spec_helper'
22

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

@@ -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.4' }
23+
cached(:cuda_samples_version) { '12.6' }
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)