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
04f7188f
Commit
04f7188f
authored
11 years ago
by
Danny Auble
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/slurm-2.6'
parents
712584de
51acd3a5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
NEWS
+1
-0
1 addition, 0 deletions
NEWS
doc/man/man5/slurm.conf.5
+6
-2
6 additions, 2 deletions
doc/man/man5/slurm.conf.5
src/common/slurm_resource_info.c
+2
-0
2 additions, 0 deletions
src/common/slurm_resource_info.c
with
9 additions
and
2 deletions
NEWS
+
1
−
0
View file @
04f7188f
...
...
@@ -305,6 +305,7 @@ documents those changes that are of interest to users and admins.
this would cause pmd's to hang.
-- NRT - Change xmalloc's to malloc just to be safe.
-- NRT - Sanity check to make sure a jobinfo is there before packing.
-- Add missing options to the print of TaskPluginParam.
* Changes in Slurm 2.6.6
========================
...
...
This diff is collapsed.
Click to expand it.
doc/man/man5/slurm.conf.5
+
6
−
2
View file @
04f7188f
...
...
@@ -2552,11 +2552,11 @@ The default value is "task/none".
\fBTaskPluginParam\fR
Optional parameters for the task plugin.
Multiple options should be comma separated
If \fBNone\fR, \fBSockets\fR, \fBCores\fR, \fBThreads\fR,
If \fBNone\fR,
\fBBoards\fR,
\fBSockets\fR, \fBCores\fR, \fBThreads\fR,
and/or \fBVerbose\fR are specified, they will override
the \fB\-\-cpu_bind\fR option specified by the user
in the \fBsrun\fR command.
\fBNone\fR, \fBSockets\fR, \fBCores\fR and \fBThreads\fR are mutually
\fBNone\fR,
\fBBoards\fR,
\fBSockets\fR, \fBCores\fR and \fBThreads\fR are mutually
exclusive and since they decrease scheduling flexibility are not generally
recommended (select no more than one of them).
\fBCpusets\fR and \fBSched\fR
...
...
@@ -2564,6 +2564,10 @@ are mutually exclusive (select only one of them).
.RS
.TP 10
\fBBoards\fR
Always bind to boards.
Overrides user options or automatic binding.
.TP
\fBCores\fR
Always bind to cores.
Overrides user options or automatic binding.
...
...
This diff is collapsed.
Click to expand it.
src/common/slurm_resource_info.c
+
2
−
0
View file @
04f7188f
...
...
@@ -139,6 +139,8 @@ void slurm_sprint_cpu_bind_type(char *str, cpu_bind_type_t cpu_bind_type)
strcat
(
str
,
"map_ldom,"
);
if
(
cpu_bind_type
&
CPU_BIND_LDMASK
)
strcat
(
str
,
"mask_ldom,"
);
if
(
cpu_bind_type
&
CPU_BIND_CPUSETS
)
strcat
(
str
,
"cpusets,"
);
if
(
*
str
)
{
str
[
strlen
(
str
)
-
1
]
=
'\0'
;
/* remove trailing ',' */
...
...
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