<div dir="ltr">This came up recently and I believe it is allowed to wait/test a send request before all partitions are marked as ready. It's not explicitly stated, rather there is no restriction disallowing this usage. It may be good to clarify this semantic (e.g. in Section 4.2.2) for MPI 4.1 since this is a topic that the WG debated at length.<div><br><div><a class="gmail_plusreply" id="plusReplyChip-0" href="mailto:ryan.grant@queensu.ca" tabindex="-1">@Ryan Grant</a> Please fact check.</div></div><div><br></div><div> ~Jim.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Oct 10, 2022 at 7:22 AM Joachim Jenke via mpiwg-persistence <<a href="mailto:mpiwg-persistence@lists.mpi-forum.org">mpiwg-persistence@lists.mpi-forum.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hello wg-persistence,<br>
<br>
Looking at the MPI 4.0 document, it is not clear to us, whether it is <br>
allowed to call a completion call for a partitioned communication <br>
request before all partitions are marked ready. A simple single-threaded <br>
example would be:<br>
<br>
```C<br>
MPI_Psend_init(message, partitions, COUNT, MPI_DOUBLE, dest, tag,<br>
                MPI_COMM_WORLD, MPI_INFO_NULL, &request);<br>
MPI_Start(&request);<br>
for(i = 0; i < partitions-1; ++i)<br>
{<br>
     MPI_Pready(i, request);<br>
}<br>
MPI_Test(&request, &flag, MPI_STATUS_IGNORE); // flag will always be 0<br>
MPI_Pready(partitions-1, request);<br>
MPI_Wait(&request, MPI_STATUS_IGNORE);<br>
MPI_Request_free(&request);<br>
```<br>
<br>
The question becomes more relevant in a multi-threaded context. One <br>
thread could finish the work early and call MPI_Wait to detect when all <br>
partitions were sent.<br>
<br>
 From my understanding, the only requirement is that all partitions must <br>
be marked ready with explicit ready calls before the operation can <br>
complete. Replacing the test in above example with a wait call would <br>
result in deadlock.<br>
<br>
Best<br>
Joachim<br>
<br>
-- <br>
Dr. rer. nat. Joachim Jenke<br>
<br>
IT Center<br>
Group: High Performance Computing<br>
Division: Computational Science and Engineering<br>
RWTH Aachen University<br>
Seffenter Weg 23<br>
D 52074  Aachen (Germany)<br>
Tel: +49 241 80- 24765<br>
Fax: +49 241 80-624765<br>
<a href="mailto:protze@itc.rwth-aachen.de" target="_blank">protze@itc.rwth-aachen.de</a><br>
<a href="http://www.itc.rwth-aachen.de" rel="noreferrer" target="_blank">www.itc.rwth-aachen.de</a><br>
_______________________________________________<br>
mpiwg-persistence mailing list<br>
<a href="mailto:mpiwg-persistence@lists.mpi-forum.org" target="_blank">mpiwg-persistence@lists.mpi-forum.org</a><br>
<a href="https://lists.mpi-forum.org/mailman/listinfo/mpiwg-persistence" rel="noreferrer" target="_blank">https://lists.mpi-forum.org/mailman/listinfo/mpiwg-persistence</a><br>
</blockquote></div>