<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div style="color: rgb(33, 33, 33); background-color: rgb(255, 255, 255);" dir="auto">
Gregor,</div>
<div style="color: rgb(33, 33, 33); background-color: rgb(255, 255, 255);" dir="auto">
<br>
</div>
<div style="color: rgb(33, 33, 33); background-color: rgb(255, 255, 255);" dir="auto">
I see your issue now. Thanks for reporting. We'll fix it.</div>
<div id="ms-outlook-mobile-signature" dir="auto">
<div><br>
</div>
-- <br>
Hui Zhou</div>
<div id="id-3ddc3c33-b6be-43a0-9f30-7ac3abb6418f" class="ms-outlook-mobile-reference-message" dir="auto">
<div style="font-family: sans-serif; font-size: 13.2pt; color: rgb(0, 0, 0);"><br>
</div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg"><strong>From:</strong> Gregor Corbin <g.corbin@fz-juelich.de><br>
<strong>Sent:</strong> Friday, January 14, 2022, 6:27 AM<br>
<strong>To:</strong> Zhou, Hui; discuss@mpich.org; Raffenetti, Ken<br>
<strong>Subject:</strong> Re: [mpich-discuss] Fortran 08 tests with 'use mpi'<br>
</div>
<br>
<p>Dear Hui, <br>
</p>
<p>I suspect that the issue I reported is a different one. To confirm this, I compiled MPICH (from 4.0rc3 tarball) once with GCC and once with Intel and then compiled the attached test programs each with both MPICHs.</p>
<p>The Intel-MPICH does not have the gcc-bug from issue 4170, but the indices returned by MPI_Testsome are still wrong.
<br>
</p>
<p>Gregor<br>
</p>
<div class="moz-cite-prefix">On 13.01.22 15:39, Zhou, Hui wrote:<br>
</div>
<blockquote type="cite">
<meta name="Generator" content="Microsoft Word 15 (filtered
        medium)">
<style>
<!--
@font-face
        {font-family:"Cambria Math"}
@font-face
        {font-family:Calibri}
@font-face
        {font-family:Consolas}
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        font-size:11.0pt;
        font-family:"Calibri",sans-serif}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline}
pre
        {margin:0in;
        font-size:10.0pt;
        font-family:"Courier New"}
span.HTMLPreformattedChar
        {font-family:"Consolas",serif}
span.EmailStyle21
        {font-family:"Calibri",sans-serif;
        color:windowtext}
.MsoChpDefault
        {font-size:10.0pt}
div.WordSection1
        {}
-->
</style>
<div class="WordSection1">
<p class="MsoNormal">Hi Gregor,</p>
<p class="MsoNormal"> </p>
<p class="MsoNormal">This issue was reported before. You can track the issue here:
<a href="https://github.com/pmodels/mpich/issues/4170">https://github.com/pmodels/mpich/issues/4170</a></p>
<p class="MsoNormal"> </p>
<div>
<div>
<div>
<p class="MsoNormal">-- <br>
Hui Zhou</p>
</div>
</div>
</div>
<p class="MsoNormal"> </p>
<p class="MsoNormal"> </p>
<div style="border:none; border-top:solid #B5C4DF
          1.0pt; padding:3.0pt 0in 0in 0in">
<p class="MsoNormal" style="margin-right:0in; margin-bottom:12.0pt; margin-left:.5in">
<b><span style="font-size:12.0pt; color:black">From: </span></b><span style="font-size:12.0pt; color:black">Gregor Corbin via discuss
<a class="moz-txt-link-rfc2396E" href="mailto:discuss@mpich.org"><discuss@mpich.org></a><br>
<b>Date: </b>Wednesday, January 12, 2022 at 5:19 AM<br>
<b>To: </b>Raffenetti, Ken <a class="moz-txt-link-rfc2396E" href="mailto:raffenet@anl.gov">
<raffenet@anl.gov></a>, <a class="moz-txt-link-abbreviated" href="mailto:discuss@mpich.org">
discuss@mpich.org</a> <a class="moz-txt-link-rfc2396E" href="mailto:discuss@mpich.org">
<discuss@mpich.org></a><br>
<b>Cc: </b>Gregor Corbin <a class="moz-txt-link-rfc2396E" href="mailto:g.corbin@fz-juelich.de">
<g.corbin@fz-juelich.de></a><br>
<b>Subject: </b>Re: [mpich-discuss] Fortran 08 tests with 'use mpi'</span></p>
</div>
<p style="margin-left:.5in">Ken, </p>
<p style="margin-left:.5in">while updating the F08 tests with this bugfix, I may have found another bug inside the 'use mpi_f08' wrappers.</p>
<p style="margin-left:.5in">The fix removes (superficially) the error in irsendf08, but I still get the same error in pssendf08. This has to do with the array of indices returned by MPI_Testsome: With the 'use mpi_f08' wrappers, the indices in this array are
 0-indexed although they should start from 1 according to the Standard (they do start from 1 with the 'use mpi' and 'mpif.h' functions). I have attached a minimal working example to confirm this.</p>
<p style="margin-left:.5in">Indeed, the function mpi_testsome_ (in src/binding/fortran/mpif_h/fortran_binding.c) converts the indices:</p>
<blockquote style="margin-top:5.0pt; margin-bottom:5.0pt">
<p style="margin-left:.5in">    for (int i = 0; i < (*outcount); i++) {<br>
        array_of_indices[i] += 1;<br>
    }</p>
</blockquote>
<p style="margin-left:.5in">The subroutine MPI_Testsome_f08 (in src/binding/fortran/use_mpi_f08/wrappers_f/f08ts.f90) does no such conversion.
</p>
<p style="margin-left:.5in">The bug is also in MPI_Testany (and potentially other functions I did not test yet).</p>
<p style="margin-left:.5in">However, without detailed knowledge about internals of MPICH I might not be the best person to fix the issue.</p>
<p style="margin-left:.5in">Greetings,</p>
<p style="margin-left:.5in">Gregor</p>
<blockquote style="margin-top:5.0pt; margin-bottom:5.0pt">
<p style="margin-left:.5in"> </p>
</blockquote>
<div>
<p class="MsoNormal" style="margin-left:.5in">On 11.01.22 22:52, Raffenetti, Ken wrote:</p>
</div>
<blockquote style="margin-top:5.0pt; margin-bottom:5.0pt">
<pre style="margin-left:.5in">Gregor,</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">I believe these are test bugs. A fix for the f77 versions was added previously in <a href="https://github.com/pmodels/mpich/pull/3962/commits/69b02eaabcdb0008f3879372629cfe92f98e8d56">https://github.com/pmodels/mpich/pull/3962/commits/69b02eaabcdb0008f3879372629cfe92f98e8d56</a>, though it does not cover the prsendf test. Perhaps you could add a commit to your branch to fix these tests in a similar way.</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">Ken</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">On 1/11/22, 2:30 AM, "Gregor Corbin" <a href="mailto:g.corbin@fz-juelich.de"><g.corbin@fz-juelich.de></a> wrote:</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">        Updating the F08 tests to 'use mpi_f08' was mostly</pre>
<pre style="margin-left:.5in">          straightforward. However, i ran into problems with three of the</pre>
<pre style="margin-left:.5in">          tests: irsendf08.f90, pssendf08.f90 and prsendf08.f90.</pre>
<pre style="margin-left:.5in">        With my modified irsendf08 (attached) for example, the test</pre>
<pre style="margin-left:.5in">          produces these error messages:  </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">           Nonnull request in irsend and irecv</pre>
<pre style="margin-left:.5in">             [           0 ] Unexpected source:           0  in irsend and</pre>
<pre style="margin-left:.5in">            irecv</pre>
<pre style="margin-left:.5in">             [           0 ] Unexpected tag:           0  in irsend and</pre>
<pre style="margin-left:.5in">            irecv</pre>
<pre style="margin-left:.5in">             [           0 ] Unexpected count:           0  in irsend and</pre>
<pre style="margin-left:.5in">            irecv</pre>
<pre style="margin-left:.5in">            Invalid data   0.0 at    1 of  666 in irsend and irecv</pre>
<pre style="margin-left:.5in">            Invalid data   0.0 at    2 of  666 in irsend and irecv</pre>
<pre style="margin-left:.5in">            ...</pre>
<pre style="margin-left:.5in">          Invalid data   0.0 at  666 of  666 in irsend and irecv</pre>
<pre style="margin-left:.5in">            Found          669  errors</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">        That is, the last message from process 1 to 0 is not received</pre>
<pre style="margin-left:.5in">        correctly. When I replace the call to MPI_Waitany with Waitall or</pre>
<pre style="margin-left:.5in">        Wait there are not errors.</pre>
<pre style="margin-left:.5in">        Is there maybe a problem with Waitany or did I just do something</pre>
<pre style="margin-left:.5in">          wrong?</pre>
<pre style="margin-left:.5in">        Gregor</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">        On 07.01.22 17:59, Raffenetti, Ken</pre>
<pre style="margin-left:.5in">          wrote:</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">          We would consider a patch, yes. First, you would need to sign and return the contributors agreement. <a href="https://www.mpich.org/documentation/contributor-docs/">https://www.mpich.org/documentation/contributor-docs/</a></pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">    As for whether or not automatic conversion is practical, I think if we structured the tests such that the types needing conversion were easily identifiable, then it could be done. It would require some churn of the existing tests. It may also complicate the addition of new, as the author would need to adhere to guidelines that may not be obvious without prior knowledge.</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">    I gave myself a task to support automatic conversion of the tests the `use mpi_f08`, but it is not very high priority at the moment.</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">    Ken</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">    On 1/7/22, 3:10 AM, "Gregor Corbin via discuss" <a href="mailto:discuss@mpich.org"><discuss@mpich.org></a> <a href="mailto:discuss@mpich.org"><mailto:discuss@mpich.org></a> wrote:</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">        Hi MPICH,</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">        I noticed that some of the tests in test/mpi/f08 still work with 'use </pre>
<pre style="margin-left:.5in">        mpi' instead of  'use mpi_f08', mostly in the pt2pt folder. These seem </pre>
<pre style="margin-left:.5in">        to be copies of the tests in f90 which in turn have been generated by </pre>
<pre style="margin-left:.5in">        f77tof90.</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">        Shouldn't these tests be converted to 'use mpi_f08'? If so, would you be </pre>
<pre style="margin-left:.5in">        interested in a PR that fixes this? I would need to do this anyway.</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">        Kind regards,</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">        Gregor Corbin</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in">        PS.: The interfaces for 'use mpi' and 'use mpi_f08' are probably too </pre>
<pre style="margin-left:.5in">        different for an automatic conversion to be practical (how to change all </pre>
<pre style="margin-left:.5in">        the integers to type(mpi_xxx) for example?).</pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
<pre style="margin-left:.5in"> </pre>
</blockquote>
</div>
</blockquote>
<br>
</div>
</body>
</html>