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
cfc1be19
Commit
cfc1be19
authored
13 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
BLUEGENE - make sure we only set the jobinfo_select start_loc on a job
when we are on a small block, not a regular one.
parent
ea399a4c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+2
-0
2 additions, 0 deletions
NEWS
src/plugins/select/bluegene/bg_job_info.c
+5
-5
5 additions, 5 deletions
src/plugins/select/bluegene/bg_job_info.c
with
7 additions
and
5 deletions
NEWS
+
2
−
0
View file @
cfc1be19
...
...
@@ -3,6 +3,8 @@ documents those changes that are of interest to users and admins.
* Changes in SLURM 2.3.0
============================
-- BLUEGENE - make sure we only set the jobinfo_select start_loc on a job
when we are on a small block, not a regular one.
* Changes in SLURM 2.3.0.rc2
============================
...
...
This diff is collapsed.
Click to expand it.
src/plugins/select/bluegene/bg_job_info.c
+
5
−
5
View file @
cfc1be19
...
...
@@ -187,17 +187,17 @@ extern int set_select_jobinfo(select_jobinfo_t *jobinfo,
if
(
tmp_char
)
{
#ifdef HAVE_BGQ
jobinfo
->
dim_cnt
=
5
;
for
(
i
=
0
;
i
<
jobinfo
->
dim_cnt
;
i
++
)
{
jobinfo
->
start_loc
[
i
]
=
select_char2coord
(
tmp_char
[
i
]);
}
#else
jobinfo
->
dim_cnt
=
SYSTEM_DIMENSIONS
;
#endif
jobinfo
->
ionode_str
=
xstrdup
(
tmp_char
);
}
else
jobinfo
->
dim_cnt
=
SYSTEM_DIMENSIONS
;
jobinfo
->
ionode_str
=
xstrdup
(
tmp_char
);
for
(
i
=
0
;
i
<
jobinfo
->
dim_cnt
;
i
++
)
{
jobinfo
->
start_loc
[
i
]
=
select_char2coord
(
jobinfo
->
ionode_str
[
i
]);
}
break
;
case
SELECT_JOBDATA_NODE_CNT
:
jobinfo
->
cnode_cnt
=
*
uint32
;
...
...
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