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
1357316e
Commit
1357316e
authored
11 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
CRAY - make mention of how to make a select/cray configuration if not
already using select/cray
parent
a1f27c61
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/common/node_select.c
+15
-0
15 additions, 0 deletions
src/common/node_select.c
with
15 additions
and
0 deletions
src/common/node_select.c
+
15
−
0
View file @
1357316e
...
@@ -251,6 +251,21 @@ extern int slurm_select_init(bool only_default)
...
@@ -251,6 +251,21 @@ extern int slurm_select_init(bool only_default)
"system use --enable-alps-cray-emulation."
);
"system use --enable-alps-cray-emulation."
);
}
}
#endif
#endif
#ifdef HAVE_NATIVE_CRAY
if
(
strcasecmp
(
type
,
"select/cray"
))
{
error
(
"%s is incompatible with a native Cray system."
,
type
);
fatal
(
"Use SelectType=select/cray"
);
}
#else
if
(
!
strcasecmp
(
type
,
"select/cray"
))
{
fatal
(
"Requested SelectType=select/cray "
"in slurm.conf, but not running on a native Cray "
"system. If looking to run on a Cray "
"system natively use --enable-native-cray."
);
}
#endif
}
}
select_context_cnt
=
0
;
select_context_cnt
=
0
;
...
...
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