-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[release-3.6] Replace nvidia-persistenced service with parallelcluster_nvidia service to avoid conflicts with DLAMI #2341
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,14 +35,23 @@ | |
group 'root' | ||
mode '0644' | ||
end | ||
# Install nvidia_persistenced. See https://download.nvidia.com/XFree86/Linux-x86_64/396.51/README/nvidia-persistenced.html | ||
bash 'Install nvidia_persistenced' do | ||
cwd '/usr/share/doc/NVIDIA_GLX-1.0/samples' | ||
user 'root' | ||
|
||
# Install ParallelCluster nvidia service. | ||
# The service ensures the creation of the block devices /dev/nvidia0 after reboot and it is needed by the slurmd service | ||
# cookbooks/aws-parallelcluster-slurm/templates/default/slurm/compute/slurmd_nvidia_persistenced.conf.erb | ||
# | ||
# The service starts the nvidia-persistenced or run nvidia-smi to avoid race condition with other services | ||
template '/etc/systemd/system/parallelcluster_nvidia.service' do | ||
source 'nvidia/parallelcluster_nvidia_service.erb' | ||
owner 'root' | ||
group 'root' | ||
code <<-NVIDIA | ||
tar -xf nvidia-persistenced-init.tar.bz2 | ||
./nvidia-persistenced-init/install.sh | ||
NVIDIA | ||
mode '0644' | ||
action :create | ||
variables(is_nvidia_persistenced_running: is_process_running('nvidia-persistenced')) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What happens if nvidia-persistenced is run but parallelcluster_nvidia.service is already running? |
||
end | ||
|
||
service "parallelcluster_nvidia" do | ||
supports restart: false | ||
action %i(enable start) | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# This systemd service file, designed to trigger the creation device block file /dev/nvidia0 | ||
# The service start nvidia-persistenced if it is not already started or execute the command nvidia-smi. | ||
|
||
[Unit] | ||
Description=ParallelCluster NVIDIA Daemon | ||
Wants=syslog.target | ||
|
||
[Service] | ||
<% if @is_nvidia_persistenced_running -%> | ||
Type=simple | ||
ExecStart=/usr/bin/nvidia-smi | ||
RemainAfterExit=yes | ||
<% else %> | ||
Type=forking | ||
ExecStart=/usr/bin/nvidia-persistenced --user root | ||
ExecStopPost=/bin/rm -rf /var/run/nvidia-persistenced | ||
<% end %> | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[Unit] | ||
After=nvidia-persistenced.service | ||
Wants=nvidia-persistenced.service | ||
After=parallelcluster_nvidia.service | ||
Wants=parallelcluster_nvidia.service |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,6 +129,16 @@ def ignore_failure(lookup) | |
end | ||
end | ||
|
||
# | ||
# Check if a process is running | ||
# | ||
def is_process_running(process_name) | ||
ps = Mixlib::ShellOut.new("ps aux | grep '#{process_name}' | egrep -v \"grep .*#{process_name}\"") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. minor: we could have used pgrep to match processes by name instead of grepping twice on ps. |
||
ps.run_command | ||
|
||
!ps.stdout.strip.empty? | ||
end | ||
|
||
# | ||
# Check if the instance has a GPU | ||
# | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happens if nvidia-persistenced is run but parallelcluster_nvidia.service is already running?