Skip to content
Snippets Groups Projects
Commit e50c4cf1 authored by Damien Leong's avatar Damien Leong
Browse files

Add check to submission filter for Desktop requesting for more than one node

parent 66a970ff
No related branches found
No related tags found
1 merge request!215Add check to submission filter for Desktop requesting for more than one node
...@@ -24,6 +24,14 @@ if job_desc.account == "default" then ...@@ -24,6 +24,14 @@ if job_desc.account == "default" then
end end
-- Check Desktop requests with more than one node
if ((job_desc.name == "desktop") and (job_desc.min_nodes > 1 )) then
slurm.log_user("The current M3 Desktop applications are unable to utilise more than one node, please select one node instead")
return slurm.ERROR
end
-- Check for gres.gpu requirements in m3c, m3h and m3g, else move job to comp -- Check for gres.gpu requirements in m3c, m3h and m3g, else move job to comp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment