You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The wrong split type was being passed to the
`ompi_comm_split_type_get_part` function. It was passing the
"original" (`MPI_COMM_TYPE_HW_GUIDED`) split type and not the
"converted" (e.g., `MPI_COMM_TYPE_SHARED`) split type. This resulted
in an error indicating that the split type was invalid.
Signed-off-by: Joshua Hursey <jhursey@us.ibm.com>
@@ -902,8 +902,10 @@ int ompi_comm_split_type (ompi_communicator_t *comm, int split_type, int key,
902
902
* If not the same at all ranks, throw an error.
903
903
*/
904
904
flag=0;
905
-
for (inti=0; ompi_comm_split_type_hw_guided_support[i].info_value; ++i) {
906
-
if (0==strncasecmp(value->string, ompi_comm_split_type_hw_guided_support[i].info_value, strlen(ompi_comm_split_type_hw_guided_support[i].info_value))) {
905
+
for (inti=0; NULL!=ompi_comm_split_type_hw_guided_support[i].info_value; ++i) {
0 commit comments