diff --git a/ompi/communicator/comm.c b/ompi/communicator/comm.c index 3b66d416cea..84e89a65fe8 100644 --- a/ompi/communicator/comm.c +++ b/ompi/communicator/comm.c @@ -1618,7 +1618,7 @@ int ompi_comm_create_from_group (ompi_group_t *group, const char *tag, opal_info /* * setup predefined keyvals - see MPI Standard for predefined keyvals cached on - * communicators created via MPI_Comm_from_group or MPI_Intercomm_create_from_groups + * communicators created via MPI_Comm_create_from_group or MPI_Intercomm_create_from_groups */ ompi_attr_hash_init(&newcomp->c_keyhash); ompi_attr_set_int(COMM_ATTR, diff --git a/ompi/communicator/comm_cid.c b/ompi/communicator/comm_cid.c index b5e7838d151..be022b8f470 100644 --- a/ompi/communicator/comm_cid.c +++ b/ompi/communicator/comm_cid.c @@ -367,7 +367,7 @@ static int ompi_comm_ext_cid_new_block (ompi_communicator_t *newcomm, ompi_commu opal_show_help("help-comm.txt", "MPI function not supported", true, - "MPI_Comm_from_group/MPI_Intercomm_from_groups", + "MPI_Comm_create_from_group/MPI_Intercomm_create_from_groups", msg_string); ret = MPI_ERR_UNSUPPORTED_OPERATION; break; @@ -490,7 +490,7 @@ int ompi_comm_nextcid_nb (ompi_communicator_t *newcomm, ompi_communicator_t *com /* old CID algorighm */ - /* if we got here and comm is NULL then that means the app is invoking MPI-4 Sessions or later + /* if we got here and comm is NULL then that means the app is invoking MPI-4 Sessions or later functions but the pml does not support these functions so return not supported */ if (NULL == comm) { char msg_string[1024]; @@ -499,7 +499,7 @@ int ompi_comm_nextcid_nb (ompi_communicator_t *newcomm, ompi_communicator_t *com opal_show_help("help-comm.txt", "MPI function not supported", true, - "MPI_Comm_from_group/MPI_Intercomm_from_groups", + "MPI_Comm_create_from_group/MPI_Intercomm_create_from_groups", msg_string); return MPI_ERR_UNSUPPORTED_OPERATION;