Skip to content
Snippets Groups Projects
Commit ef9ba097 authored by Moe Jette's avatar Moe Jette
Browse files

Fix node selection/scheduling bug with heterogeneous nodes.

parent acdf1446
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ documents those changes that are of interest to users and admins. ...@@ -17,6 +17,7 @@ documents those changes that are of interest to users and admins.
-- Added logic to return scheduled nodes to Maui scheduler (David -- Added logic to return scheduled nodes to Maui scheduler (David
Jackson, Cluster Resources) Jackson, Cluster Resources)
-- Fix bug in handling job request with maximum node count. -- Fix bug in handling job request with maximum node count.
-- Fix node selection scheduling bug with heterogeneous nodes.
* Changes in SLURM 0.6.0-pre4 * Changes in SLURM 0.6.0-pre4
============================= =============================
......
...@@ -929,6 +929,8 @@ static int _build_node_list(struct job_record *job_ptr, ...@@ -929,6 +929,8 @@ static int _build_node_list(struct job_record *job_ptr,
(detail_ptr->min_memory > config_ptr->real_memory) || (detail_ptr->min_memory > config_ptr->real_memory) ||
(detail_ptr->min_tmp_disk > config_ptr->tmp_disk)) (detail_ptr->min_tmp_disk > config_ptr->tmp_disk))
config_filter = 1; config_filter = 1;
else
config_filter = 0;
/* since nodes can register with more resources than defined */ /* since nodes can register with more resources than defined */
/* in the configuration, we want to use those higher values */ /* in the configuration, we want to use those higher values */
......
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