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

Report MESH as lower case (was TORUS), per Danny.

parent e0178830
No related branches found
No related tags found
No related merge requests found
...@@ -144,7 +144,7 @@ void get_part(void) ...@@ -144,7 +144,7 @@ void get_part(void)
if (block_ptr) { if (block_ptr) {
block_ptr->printed = true; block_ptr->printed = true;
if (block_ptr->bgl_conn_type == if (block_ptr->bgl_conn_type ==
SELECT_TORUS) SELECT_MESH)
lower = true; lower = true;
} }
part.total_nodes = set_grid_bgl(startx, part.total_nodes = set_grid_bgl(startx,
...@@ -455,8 +455,8 @@ static int _print_rest(void *object, void *arg) ...@@ -455,8 +455,8 @@ static int _print_rest(void *object, void *arg)
if (block_ptr->printed) if (block_ptr->printed)
return SLURM_SUCCESS; return SLURM_SUCCESS;
/* lower case letters for TORUS connect */ /* lower case letters for MESH connect */
if (block_ptr->bgl_conn_type == SELECT_TORUS) if (block_ptr->bgl_conn_type == SELECT_MESH)
lower = true; lower = true;
else else
lower = false; lower = false;
......
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