Skip to content

Commit

Permalink
ws fixes - pr feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Howard Pritchard <[email protected]>
  • Loading branch information
hppritcha committed Oct 9, 2024
1 parent 6cae488 commit 5969b27
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions ompi/communicator/communicator.h
Original file line number Diff line number Diff line change
Expand Up @@ -555,15 +555,10 @@ static inline int ompi_comm_get_remote_cid (ompi_communicator_t *comm, int dest,
assert(NULL != remote_cid);

if (OPAL_LIKELY(OMPI_COMM_IS_GLOBAL_INDEX(comm))) {

*remote_cid = comm->c_index;

} else if (0 != comm->c_index_vec[dest]) {

*remote_cid = comm->c_index_vec[dest];

} else {

rc = ompi_comm_get_remote_cid_from_pmix(comm, dest, remote_cid);
}

Expand Down
1 change: 0 additions & 1 deletion ompi/mca/pml/ucx/pml_ucx.c
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,6 @@ int mca_pml_ucx_isend(const void *buf, size_t count, ompi_datatype_t *datatype,
if (OPAL_UNLIKELY(NULL == ep)) {
return OMPI_ERROR;
}

rc = ompi_comm_get_remote_cid(comm, dst, &cid);
if (OPAL_UNLIKELY(OMPI_SUCCESS != rc)) {
return rc;
Expand Down

0 comments on commit 5969b27

Please sign in to comment.