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 354041b commit a3a39d5Copy full SHA for a3a39d5
cookbooks/aws-parallelcluster-platform/resources/fabric_manager/fabric_manager_ubuntu20+.rb
@@ -20,7 +20,7 @@
20
use 'partial/_fabric_manager_install_debian.rb'
21
22
def fabric_manager_package
23
- 'nvidia-fabricmanager-550'
+ 'nvidia-fabricmanager-570'
24
end
25
26
def fabric_manager_version
cookbooks/aws-parallelcluster-platform/spec/unit/recipes/cuda_spec.rb
@@ -1,8 +1,8 @@
1
require 'spec_helper'
2
3
describe 'aws-parallelcluster-platform::cuda' do
4
- cached(:cuda_version) { '12.4' }
5
- cached(:cuda_patch) { '1' }
+ cached(:cuda_version) { os_properties.alinux2? ? '12.4' : '12.8' }
+ cached(:cuda_patch) { os_properties.alinux2? ? '12.1' : '12.0' }
6
cached(:cuda_complete_version) { "#{cuda_version}.#{cuda_patch}" }
7
cached(:cuda_version_suffix) { '550.54.15' }
8
0 commit comments