Skip to content
Snippets Groups Projects
Commit 2d574a05 authored by Danny Auble's avatar Danny Auble
Browse files

CRAY - Minor fix to allow correct creation of the system_dims variable.

parent ab4cb971
No related branches found
No related tags found
No related merge requests found
...@@ -97,9 +97,10 @@ bitstr_t *avail_node_bitmap = NULL; ...@@ -97,9 +97,10 @@ bitstr_t *avail_node_bitmap = NULL;
/* All current (2011) XT/XE installations have a maximum dimension of 3, /* All current (2011) XT/XE installations have a maximum dimension of 3,
* smaller systems deploy a 2D Torus which has no connectivity in * smaller systems deploy a 2D Torus which has no connectivity in
* X-dimension. Just incase SYSTEM_DIMENSIONS is ever set to 2 * X-dimension. We know the highest system dimensions possible here
* instead of 3 we will initialize them later in the ba_init function. */ * are 3 so we set it to that. Do not use SYSTEM_DIMENSIONS since
static int select_cray_dim_size[SYSTEM_DIMENSIONS] = {-1}; * that could easily be wrong if built on a non Cray system. */
static int select_cray_dim_size[3] = {-1};
/* /*
* These variables are required by the generic plugin interface. If they * These variables are required by the generic plugin interface. If they
......
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