add MPI_Group_free() support to STUBS
This commit is contained in:
@ -424,6 +424,16 @@ int MPI_Group_incl(MPI_Group group, int n, int *ranks, MPI_Group *newgroup)
|
||||
*newgroup = group;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
int MPI_Group_free(MPI_Group *group)
|
||||
{
|
||||
if (group)
|
||||
*group = MPI_GROUP_NULL;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
int MPI_Cart_create(MPI_Comm comm_old, int ndims, int *dims, int *periods, int reorder,
|
||||
|
||||
Reference in New Issue
Block a user