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
8a74f649
Commit
8a74f649
authored
14 years ago
by
Moe Jette
Browse files
Options
Downloads
Plain Diff
svn merge -r22021:22027
https://eris.llnl.gov/svn/slurm/branches/slurm-2.2
parents
037f4a21
443ff5fa
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
+2
-0
2 additions, 0 deletions
NEWS
src/slurmctld/gang.c
+1
-1
1 addition, 1 deletion
src/slurmctld/gang.c
src/slurmctld/power_save.c
+4
-0
4 additions, 0 deletions
src/slurmctld/power_save.c
with
7 additions
and
1 deletion
NEWS
+
2
−
0
View file @
8a74f649
...
...
@@ -22,6 +22,8 @@ documents those changes that are of interest to users and admins.
specific reservation.
-- Treat reservation with no nodes like one that starts later (let jobs of any
size get queued).
-- Fix bug in gang scheduling logic that would temporarily resume to many jobs
after a job completed.
* Changes in SLURM 2.2.0
========================
...
...
This diff is collapsed.
Click to expand it.
src/slurmctld/gang.c
+
1
−
1
View file @
8a74f649
...
...
@@ -687,7 +687,7 @@ static int _sort_partitions(void *part1, void *part2)
{
int
prio1
=
((
struct
gs_part
*
)
part1
)
->
priority
;
int
prio2
=
((
struct
gs_part
*
)
part2
)
->
priority
;
return
prio
1
-
prio
2
;
return
prio
2
-
prio
1
;
}
/* Scan the partition list. Add the given job as a "shadow" to every
...
...
This diff is collapsed.
Click to expand it.
src/slurmctld/power_save.c
+
4
−
0
View file @
8a74f649
...
...
@@ -46,6 +46,10 @@
# include "config.h"
#endif
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#include
<signal.h>
#include
<stdlib.h>
#include
<string.h>
...
...
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