Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Rob Latham
MPICH-BlueGene
Commits
0ff102e3
Commit
0ff102e3
authored
Nov 29, 2012
by
Pavan Balaji
Browse files
[svn-r10688] MPI_Comm_split_type is a part of MPI-3. We don't need to protect it
in non-strict MPI or MPICH-specific tests. No reviewer.
parent
00e5cefb
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/mpi/comm/cmsplit_type.c
View file @
0ff102e3
...
...
@@ -24,11 +24,7 @@ int main(int argc, char *argv[])
verbose
=
1
;
MPI_Comm_rank
(
MPI_COMM_WORLD
,
&
wrank
);
#if !defined(USE_STRICT_MPI) && defined(MPICH)
MPI_Comm_split_type
(
MPI_COMM_WORLD
,
MPI_COMM_TYPE_SHARED
,
0
,
MPI_INFO_NULL
,
&
comm
);
#else
MPI_Comm_split
(
MPI_COMM_WORLD
,
0
,
0
,
&
comm
);
#endif
/* USE_STRICT_MPI */
MPI_Comm_rank
(
comm
,
&
rank
);
MPI_Comm_size
(
comm
,
&
size
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment