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
5fc75f1f
Commit
5fc75f1f
authored
9 years ago
by
Artem Polyakov
Committed by
David Bigagli
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix inconsistency with OMPI PMIx serverside.
parent
3863823d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/mpi/pmix/pmixp_client.c
+5
-4
5 additions, 4 deletions
src/plugins/mpi/pmix/pmixp_client.c
with
5 additions
and
4 deletions
src/plugins/mpi/pmix/pmixp_client.c
+
5
−
4
View file @
5fc75f1f
...
...
@@ -301,11 +301,15 @@ static void _set_procdatas(List lresp)
xfree
(
p
);
list_append
(
lresp
,
kvp
);
PMIXP_ALLOC_KEY
(
kvp
,
PMIX_NODEID
);
PMIX_VAL_SET
(
&
kvp
->
value
,
uint32_t
,
nsptr
->
node_id
);
list_append
(
lresp
,
kvp
);
/* store information about local processes */
for
(
i
=
0
;
i
<
pmixp_info_tasks
();
i
++
)
{
List
rankinfo
;
ListIterator
it
;
int
count
,
j
,
nodeid
,
local
id
;
int
count
,
j
,
localid
,
node
id
;
char
*
nodename
;
pmix_info_t
*
info
;
...
...
@@ -356,9 +360,6 @@ static void _set_procdatas(List lresp)
PMIX_VAL_SET
(
&
kvp
->
value
,
string
,
nodename
);
list_append
(
rankinfo
,
kvp
);
free
(
nodename
);
PMIXP_ALLOC_KEY
(
kvp
,
PMIX_NODEID
);
PMIX_VAL_SET
(
&
kvp
->
value
,
uint32_t
,
nodeid
);
list_append
(
rankinfo
,
kvp
);
/* merge rankinfo into one PMIX_PROC_DATA key */
count
=
list_count
(
rankinfo
);
...
...
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