add MPI_Group_free() support to STUBS

This commit is contained in:
Axel Kohlmeyer
2022-03-22 21:54:36 -04:00
parent 0bd8500da3
commit c18236216b
2 changed files with 12 additions and 0 deletions

View File

@ -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,