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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
- xdcv: `2024.0.631-1`
- gl: `2024.0.1078-1`
- web_viewer: `2024.0-18131-1`
- Upgrade CUDA Toolkit to version 12.6.3 (from 12.4.1).

**BUG FIXES**
- Fix an issue in the way we get region when manage volumes so that it can correctly handle local zone.
Expand Down
2 changes: 1 addition & 1 deletion THIRD-PARTY-LICENSES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4628,7 +4628,7 @@ laws, restrictions or regulations.

------

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

* Package Cuda Samples's source code may be found at:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@

# Cuda installer from https://developer.nvidia.com/cuda-toolkit-archive
# Cuda installer naming: cuda_11.8.0_520.61.05_linux
cuda_version = '12.4'
cuda_patch = '1'
cuda_version = '12.6'
cuda_patch = '3'
cuda_complete_version = "#{cuda_version}.#{cuda_patch}"
cuda_version_suffix = '550.54.15'
cuda_arch = arm_instance? ? 'linux_sbsa' : 'linux'
cuda_url = "#{node['cluster']['artifacts_s3_url']}/dependencies/cuda/cuda_#{cuda_complete_version}_#{cuda_version_suffix}_#{cuda_arch}.run"
cuda_samples_version = '12.4'
cuda_samples_version = '12.6'
cuda_samples_url = "#{node['cluster']['artifacts_s3_url']}/dependencies/cuda/samples/v#{cuda_samples_version}.tar.gz"
tmp_cuda_run = '/tmp/cuda.run'
tmp_cuda_sample_archive = '/tmp/cuda-sample.tar.gz'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
require 'spec_helper'

describe 'aws-parallelcluster-platform::cuda' do
cached(:cuda_version) { '12.4' }
cached(:cuda_patch) { '1' }
cached(:cuda_version) { '12.6' }
cached(:cuda_patch) { '3' }
cached(:cuda_complete_version) { "#{cuda_version}.#{cuda_patch}" }
cached(:cuda_version_suffix) { '550.54.15' }

Expand All @@ -20,7 +20,7 @@
context 'when on arm' do
cached(:cuda_arch) { 'linux_sbsa' }
cached(:cuda_url) { "#{node['cluster']['artifacts_s3_url']}/dependencies/cuda/cuda_#{cuda_complete_version}_#{cuda_version_suffix}_#{cuda_arch}.run" }
cached(:cuda_samples_version) { '12.4' }
cached(:cuda_samples_version) { '12.6' }
cached(:cuda_samples_url) { "#{node['cluster']['artifacts_s3_url']}/dependencies/cuda/samples/v#{cuda_samples_version}.tar.gz" }

cached(:chef_run) do
Expand Down
Loading