Skip to content

Commit

Permalink
TEMP: always do rndv for big messages
Browse files Browse the repository at this point in the history
Temporary turn this on for testing purpose.
  • Loading branch information
hzhou committed Nov 1, 2024
1 parent 91fb1d7 commit 6490589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mpid/ch4/netmod/ofi/ofi_send.h
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ MPL_STATIC_INLINE_PREFIX int MPIDI_OFI_send(const void *buf, MPI_Aint count, MPI

*request = MPIR_Request_create_complete(MPIR_REQUEST_KIND__SEND);
MPIR_ERR_CHECK(mpi_errno);
} else if (syncflag && data_sz > MPIR_CVAR_CH4_OFI_EAGER_THRESHOLD) {
} else if (!is_am && data_sz > MPIR_CVAR_CH4_OFI_EAGER_THRESHOLD) {
/* RNDV path - TODO: always do RNDV if (!is_am && data_sz > EAGER_THRESHOLD) */
MPIR_Request *sreq = MPIDIG_request_create(MPIR_REQUEST_KIND__SEND, 2,
vci_src /* local */ , vci_dst /* remote */);
Expand Down

0 comments on commit 6490589

Please sign in to comment.