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
a4155bbd
Commit
a4155bbd
authored
8 years ago
by
Adam Moody
Committed by
Morris Jette
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[PATCH 1/2] define PMIX_Ring behavior in singleton mode
parent
fbac3e4b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contribs/pmi2/pmi2_api.c
+10
-0
10 additions, 0 deletions
contribs/pmi2/pmi2_api.c
contribs/pmi2/slurm/pmi2.h
+10
-2
10 additions, 2 deletions
contribs/pmi2/slurm/pmi2.h
with
20 additions
and
2 deletions
contribs/pmi2/pmi2_api.c
+
10
−
0
View file @
a4155bbd
...
...
@@ -656,6 +656,15 @@ int PMIX_Ring(const char value[], int *rank, int *ranks, char left[], char right
PMI2U_printf
(
"[BEGIN PMI2_Ring]"
);
/* for singleton mode, set rank and ranks, copy input to output buffers */
if
(
PMI2_initialized
==
SINGLETON_INIT_BUT_NO_PM
)
{
*
rank
=
0
;
*
ranks
=
1
;
MPIU_Strncpy
(
left
,
value
,
maxvalue
);
MPIU_Strncpy
(
right
,
value
,
maxvalue
);
goto
fn_exit_singleton
;
}
/* send message: cmd=ring_in, count=1, left=value, right=value */
pmi2_errno
=
PMIi_WriteSimpleCommandStr
(
PMI2_fd
,
&
cmd
,
RING_CMD
,
RING_COUNT_KEY
,
"1"
,
...
...
@@ -689,6 +698,7 @@ int PMIX_Ring(const char value[], int *rank, int *ranks, char left[], char right
fn_exit:
free
(
cmd
.
command
);
freepairs
(
cmd
.
pairs
,
cmd
.
nPairs
);
fn_exit_singleton:
PMI2U_printf
(
"[END PMI2_Ring]"
);
return
pmi2_errno
;
fn_fail:
...
...
This diff is collapsed.
Click to expand it.
contribs/pmi2/slurm/pmi2.h
+
10
−
2
View file @
a4155bbd
...
...
@@ -426,8 +426,8 @@ int PMI2_Job_Disconnect(const char jobid[]);
Output Parameters:
+ rank - returns caller's rank within ring
-
ranks - returns number of procs within ring
-
left - buffer to receive value provided by (rank - 1) % ranks
.
ranks - returns number of procs within ring
.
left - buffer to receive value provided by (rank - 1) % ranks
- right - buffer to receive value provided by (rank + 1) % ranks
Return values:
...
...
@@ -440,6 +440,14 @@ int PMI2_Job_Disconnect(const char jobid[]);
function, but a process may return before all processes have called
the function.
The rank of a process within the ring may not be the same as its
rank returned by PMI2_Init.
For a process group consisting of a single process, this function
returns rank=0, ranks=1, and the input string in the value buffer
shall be copied to the left and right output buffers. This same
behavior holds when the function is called in singleton mode.
@*/
#define HAVE_PMIX_RING 1
/* so one can conditionally compile with this funciton */
int
PMIX_Ring
(
const
char
value
[],
int
*
rank
,
int
*
ranks
,
char
left
[],
char
right
[],
int
maxvalue
);
...
...
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