File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ This file is used to list changes made in each version of the AWS ParallelCluste
15
15
16
16
** BUG FIXES**
17
17
- Lock the version of `` nvidia-fabricmanager `` package to the installed NVIDIA drivers to prevent updates and misalignments.
18
- - Fix EFA runtime installation on alinux2 when GPUDirect RDMA is enabled, by uninstalling `` rdma-core `` before installing EFA.
19
18
20
19
2.11.1
21
20
-----
Original file line number Diff line number Diff line change 47
47
end
48
48
end
49
49
50
- # Remove certain dependencies before installation to
51
- # work around an issue with the EFA installer.
52
- # Without the removal, runtime re-installation of EFA would fail on alinux2.
53
- package 'uninstall efa deps before installing efa' do
54
- action :remove
55
- package_name %w[ rdma-core ]
56
- only_if { ( !efa_installed || efa_gdr_enabled? ) && node [ 'platform_family' ] == 'amazon' }
57
- end
58
-
59
50
installer_options = "-y"
60
51
# skip efa-kmod installation on not supported platforms
61
52
installer_options += " -k" unless node [ 'conditions' ] [ 'efa_supported' ]
71
62
./efa_installer.sh #{ installer_options }
72
63
rm -rf #{ node [ 'cfncluster' ] [ 'sources_dir' ] } /aws-efa-installer
73
64
EFAINSTALL
74
- only_if { ! efa_installed || efa_gdr_enabled? }
65
+ not_if { efa_installed && ! efa_gdr_enabled? }
75
66
end
76
67
77
68
# EFA installer v1.11.0 removes libibverbs-core, which contains hwloc-devel during install
You can’t perform that action at this time.
0 commit comments