-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ch4/mpidig: cleanup and fix anysrc receive
We should call MPIDI_anysrc_try_cancel_partner upon matching, and call MPIDI_anysrc_free_partner upon completion. * In MPIDIG_do_irecv, we only called MPIDI_anysrc_try_cancel_partner upon matching unexpected request but only for has_request branch. We should do that for both branches. * MPIDI_anysrc_free_partner need copy the status when the partner request is the user visible request. Thus we only should free partner when rreq completes. Unfortunately, we have multiple completion branches. 1. Eager unexpected path 2. recv_target_cmpl_cb 3. MPIDIG_tag_recv_complete
- Loading branch information
Showing
3 changed files
with
28 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters