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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
fb604c7e
Commit
fb604c7e
authored
Jan 15, 2016
by
Brian Christiansen
Browse files
Options
Downloads
Patches
Plain Diff
Fix nodes from being overallocated when allocation straddles multiple nodes.
Bug 2343
parent
c17396d7
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+1
-0
1 addition, 0 deletions
NEWS
src/slurmctld/step_mgr.c
+4
-2
4 additions, 2 deletions
src/slurmctld/step_mgr.c
with
5 additions
and
2 deletions
NEWS
+
1
−
0
View file @
fb604c7e
...
...
@@ -67,6 +67,7 @@ documents those changes that are of interest to users and administrators.
limit, rather than reserve resources for it when the next job ends, don't
reserve any resources for it.
-- Avoid slurmstepd abort if malloc fails during accounting gather operation.
-- Fix nodes from being overallocated when allocation straddles multiple nodes.
* Changes in Slurm 15.08.6
==========================
...
...
...
...
This diff is collapsed.
Click to expand it.
src/slurmctld/step_mgr.c
+
4
−
2
View file @
fb604c7e
...
...
@@ -2629,8 +2629,10 @@ extern slurm_step_layout_t *step_layout_create(struct step_record *step_ptr,
if
((
job_resrcs_ptr
->
whole_node
!=
1
)
&&
(
slurmctld_conf
.
select_type_param
&
(
CR_CORE
|
CR_SOCKET
))
&&
((
job_ptr
->
details
->
cpu_bind_type
!=
(
uint16_t
)
NO_VAL
)
&&
(
job_ptr
->
details
->
cpu_bind_type
&
CPU_BIND_ONE_THREAD_PER_CORE
))
{
&
CPU_BIND_ONE_THREAD_PER_CORE
))
)
{
uint16_t
threads
;
if
(
slurmctld_conf
.
fast_schedule
)
threads
=
node_ptr
->
config_ptr
->
threads
;
...
...
...
...
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
sign in
to comment