Skip to content

Commit 5969b27

Browse files
committed
ws fixes - pr feedback
Signed-off-by: Howard Pritchard <[email protected]>
1 parent 6cae488 commit 5969b27

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

ompi/communicator/communicator.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -555,15 +555,10 @@ static inline int ompi_comm_get_remote_cid (ompi_communicator_t *comm, int dest,
555555
assert(NULL != remote_cid);
556556

557557
if (OPAL_LIKELY(OMPI_COMM_IS_GLOBAL_INDEX(comm))) {
558-
559558
*remote_cid = comm->c_index;
560-
561559
} else if (0 != comm->c_index_vec[dest]) {
562-
563560
*remote_cid = comm->c_index_vec[dest];
564-
565561
} else {
566-
567562
rc = ompi_comm_get_remote_cid_from_pmix(comm, dest, remote_cid);
568563
}
569564

ompi/mca/pml/ucx/pml_ucx.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,6 @@ int mca_pml_ucx_isend(const void *buf, size_t count, ompi_datatype_t *datatype,
906906
if (OPAL_UNLIKELY(NULL == ep)) {
907907
return OMPI_ERROR;
908908
}
909-
910909
rc = ompi_comm_get_remote_cid(comm, dst, &cid);
911910
if (OPAL_UNLIKELY(OMPI_SUCCESS != rc)) {
912911
return rc;

0 commit comments

Comments
 (0)