Skip to content

Commit 5c341dc

Browse files
authored
Merge branch 'develop' into wip/3.14.0-changelog
2 parents 7fa27fd + 76f2ed1 commit 5c341dc

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

cookbooks/aws-parallelcluster-platform/libraries/nvidia.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ def get_device_ids
3030
# A100 (P4), H100(P5), B200(P6) and GB200()p6e) systems have NVSwitches
3131
# NVSwitch device id is 10de:1af1 for P4 instance
3232
# NVSwitch device id is 10de:22a3 for P5 instance
33-
# NVSwitch device id is 10de:2901 for P6 instance
3433
# NVSwitch device id is 10de:2941 for P6e instance
35-
{ 'a100' => '10de:1af1', 'h100' => '10de:22a3', 'b200' => '10de:2901', 'gb200' => '10de:2941' }
34+
{ 'a100' => '10de:1af1', 'h100' => '10de:22a3', 'gb200' => '10de:2941' }
3635
end
3736

3837
def is_gb200_node?

cookbooks/aws-parallelcluster-slurm/test/controls/slurm_config_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
end
4747

4848
describe 'check cgroup memory resource controller is enabled' do
49-
subject { bash("grep memory /proc/cgroups | awk '{print $4}'") }
49+
subject { bash("sleep 5 && grep memory /proc/cgroups | awk '{print $4}'") }
5050
its('exit_status') { should eq 0 }
5151
its('stdout.strip') { should cmp 1 }
5252
end

0 commit comments

Comments
 (0)