Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
2d574a05
Commit
2d574a05
authored
13 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
CRAY - Minor fix to allow correct creation of the system_dims variable.
parent
ab4cb971
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/select/cray/select_cray.c
+4
-3
4 additions, 3 deletions
src/plugins/select/cray/select_cray.c
with
4 additions
and
3 deletions
src/plugins/select/cray/select_cray.c
+
4
−
3
View file @
2d574a05
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment