memory / cpu ressources fix

This commit is contained in:
2021-06-25 12:19:00 +02:00
parent a61d08d118
commit 7e767c3716
2 changed files with 9 additions and 2 deletions

View File

@@ -67,6 +67,8 @@
- slurm.conf
- cgroup.conf
vars:
slurm_exec_node_cores: 3
slurm_exec_node_mem: 5000 # RealMemory=5964
slurm_alloc_nodes_default:
- name: "{{slurm_prefix+'-submit1'}}"
alloc_nodes: "{{ slurm_alloc_nodes_default + extra_nodes | default([])}}"

View File

@@ -163,10 +163,15 @@ SlurmSchedLogFile={{slurm_log_path_sched}}
#
#
# COMPUTE NODES
NodeName=slurm-exec[1-{{num_nodes}}] CPUs=2 CoresPerSocket=2 State=UNKNOWN
NodeName=slurm-exec[1-{{ num_nodes }}] CPUs={{ slurm_exec_node_cores }} {{''
}} RealMemory={{ slurm_exec_node_mem }} {{''
}} CoresPerSocket={{ slurm_exec_node_cores }} State=UNKNOWN
# RealMemory=5964
{% for i in alloc_nodes -%}
NodeName={{i.name}}
{%- if i.hostname is defined %} NodeHostname={{i.hostname}} {% endif %}
State=UNKNOWN
{% endfor %}
PartitionName=debug Nodes=slurm-exec[1-{{num_nodes}}] AllocNodes={{alloc_nodes |map(attribute='name') | join(',')}} Default=YES MaxTime=INFINITE State=UP
PartitionName=debug Nodes=slurm-exec[1-{{num_nodes}}] {{ ''
}} AllocNodes={{alloc_nodes |map(attribute='name') | join(',')}} {{ ''
}} Default=YES MaxTime=INFINITE State=UP