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

get resource selection working in topology optimized fashion with select/cray

parent d25c4908
No related branches found
No related tags found
No related merge requests found
...@@ -112,6 +112,7 @@ static slurm_select_ops_t *_other_select_get_ops(slurm_select_context_t *c) ...@@ -112,6 +112,7 @@ static slurm_select_ops_t *_other_select_get_ops(slurm_select_context_t *c)
"select_p_update_node_state", "select_p_update_node_state",
"select_p_alter_node_cnt", "select_p_alter_node_cnt",
"select_p_reconfigure", "select_p_reconfigure",
"select_p_resv_test",
}; };
int n_syms = sizeof(syms) / sizeof(char *); int n_syms = sizeof(syms) / sizeof(char *);
...@@ -730,3 +731,22 @@ extern int other_reconfigure (void) ...@@ -730,3 +731,22 @@ extern int other_reconfigure (void)
return (*(other_select_context->ops.reconfigure))(); return (*(other_select_context->ops.reconfigure))();
} }
/*
* other_resv_test - Identify the nodes which "best" satisfy a reservation
* request. "best" is defined as either single set of consecutive nodes
* satisfying the request and leaving the minimum number of unused nodes
* OR the fewest number of consecutive node sets
* IN avail_bitmap - nodes available for the reservation
* IN node_cnt - count of required nodes
* RET - nodes selected for use by the reservation
*/
extern bitstr_t * other_resv_test(bitstr_t *avail_bitmap, uint32_t node_cnt)
{
if (other_select_init() < 0)
return SLURM_ERROR;
return (*(other_select_context->ops.select_resv_test)) (avail_bitmap,
node_cnt);
}
...@@ -326,4 +326,15 @@ extern int other_pack_select_info(time_t last_query_time, uint16_t show_flags, ...@@ -326,4 +326,15 @@ extern int other_pack_select_info(time_t last_query_time, uint16_t show_flags,
/* Note reconfiguration or change in partition configuration */ /* Note reconfiguration or change in partition configuration */
extern int other_reconfigure(void); extern int other_reconfigure(void);
/*
* other_resv_test - Identify the nodes which "best" satisfy a reservation
* request. "best" is defined as either single set of consecutive nodes
* satisfying the request and leaving the minimum number of unused nodes
* OR the fewest number of consecutive node sets
* IN avail_bitmap - nodes available for the reservation
* IN node_cnt - count of required nodes
* RET - nodes selected for use by the reservation
*/
extern bitstr_t * other_resv_test(bitstr_t *avail_bitmap, uint32_t node_cnt);
#endif /* _CRAY_OTHER_SELECT_H */ #endif /* _CRAY_OTHER_SELECT_H */
...@@ -656,3 +656,17 @@ extern int select_p_reconfigure(void) ...@@ -656,3 +656,17 @@ extern int select_p_reconfigure(void)
{ {
return other_reconfigure(); return other_reconfigure();
} }
/*
* select_p_resv_test - Identify the nodes which "best" satisfy a reservation
* request. "best" is defined as either single set of consecutive nodes
* satisfying the request and leaving the minimum number of unused nodes
* OR the fewest number of consecutive node sets
* IN avail_bitmap - nodes available for the reservation
* IN node_cnt - count of required nodes
* RET - nodes selected for use by the reservation
*/
extern bitstr_t * select_p_resv_test(bitstr_t *avail_bitmap, uint32_t node_cnt)
{
return other_resv_test(avail_bitmap, node_cnt);
}
...@@ -2888,6 +2888,7 @@ extern bitstr_t * select_p_resv_test(bitstr_t *avail_bitmap, uint32_t node_cnt) ...@@ -2888,6 +2888,7 @@ extern bitstr_t * select_p_resv_test(bitstr_t *avail_bitmap, uint32_t node_cnt)
} }
return bit_pick_cnt(avail_bitmap, node_cnt); return bit_pick_cnt(avail_bitmap, node_cnt);
} }
/* /*
* _resv_test_topo - A topology aware node selection function * _resv_test_topo - A topology aware node selection function
* NOTE: The logic here is almost identical to that of _job_test_topo() * NOTE: The logic here is almost identical to that of _job_test_topo()
......
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